diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5357970..3b03c6f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,18 +13,18 @@ include: pipeline_enable_sonarqube: "false" lint_yamllint_enable: "false" -security:filesystem:scan 🛡️: - rules: - - when: always +# security:filesystem:scan 🛡️: + # rules: + # - when: always -check_container-image_scanning: - stage: security - image: alpine:latest - script: - - CRITICAL_COUNT=$(grep -o '' scanning-report.html | wc -l || echo 0) - - echo "Number of critical vulnerabilities:${CRITICAL_COUNT}" - - if [ "$CRITICAL_COUNT" -gt 0 ]; then echo "Critical vulnerabilities detected"; exit 1; fi - needs: - - job: security:filesystem:scan 🛡️ - artifacts: true - allow_failure: false +# check_container-image_scanning: + # stage: security + # image: alpine:latest + # script: + # - CRITICAL_COUNT=$(grep -o '' scanning-report.html | wc -l || echo 0) + # - echo "Number of critical vulnerabilities:${CRITICAL_COUNT}" + # - if [ "$CRITICAL_COUNT" -gt 0 ]; then echo "Critical vulnerabilities detected"; exit 1; fi + # needs: + # - job: security:filesystem:scan 🛡️ + # artifacts: true + # allow_failure: false diff --git a/README.md b/README.md index fe7d339..0696599 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ Vocabularies and format changes are managed on [Argo Vocabs Task Team - AVTT Git **With each release (from 2.9.2) you will find :** - **file_checker_exec-[version].jar** which consolidates both application's compiled code and all its dependencies into a single executable file. +- file_checker_spec folder containing all specifications and reference tables. - source code ## Run Argo NetCDF file format checker @@ -114,7 +115,7 @@ output files will be generated in `./demo/outputs`. ### Run File checker using Python and an API -In folder /file-checker-python you will find a python wrapper and an API to facilitate the use of Argo FileChecker. See python.README for more informations. +In folder /file-checker-python you will find a python wrapper and an API to facilitate the use of Argo FileChecker. See [python.README](./python.README.md) for more informations. ### Test data diff --git a/file_checker_exec/.gitignore b/file_checker_exec/.gitignore index c4e99bb..dcc4978 100644 --- a/file_checker_exec/.gitignore +++ b/file_checker_exec/.gitignore @@ -1,3 +1,4 @@ /bin/ /target/ -ValidateSubmit_LOG \ No newline at end of file +ValidateSubmit_LOG +*.log \ No newline at end of file diff --git a/file_checker_exec/.settings/org.eclipse.core.resources.prefs b/file_checker_exec/.settings/org.eclipse.core.resources.prefs index 29abf99..fdb8e81 100644 --- a/file_checker_exec/.settings/org.eclipse.core.resources.prefs +++ b/file_checker_exec/.settings/org.eclipse.core.resources.prefs @@ -1,6 +1,7 @@ eclipse.preferences.version=1 encoding//src/main/java=UTF-8 encoding//src/main/resources=UTF-8 +encoding//src/main/resources/file_checker_spec=UTF-8 encoding//src/test/java=UTF-8 encoding//src/test/resources=UTF-8 encoding/=UTF-8 diff --git a/file_checker_exec/pom.xml b/file_checker_exec/pom.xml index 4a33159..b122763 100644 --- a/file_checker_exec/pom.xml +++ b/file_checker_exec/pom.xml @@ -4,7 +4,7 @@ 4.0.0 fr.ifremer file_checker_exec - 2.9.5 + 3.0.0 Argo NetCDF file format checker @@ -13,6 +13,9 @@ 5.11.4 1.8 1.8 + + 0.15.4 + 2.18.3 @@ -81,6 +84,17 @@ + + com.io-informatics.oss + jackson-jsonld + 0.1.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + ${com.fasterxml.jackson.version} + + @@ -118,14 +132,25 @@ src/main/java src/test/java + + true src/main/resources **/*.java **/log4j2* + file_checker_spec/** + + + + src/main/resources/file_checker_spec + false + file_checker_spec + + diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/config/Options.java b/file_checker_exec/src/main/java/fr/coriolis/checker/config/Options.java index b8691a0..2fa8783 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/config/Options.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/config/Options.java @@ -32,7 +32,6 @@ *
  • -format-only-pre3.1: Perform format-only checks for versions * pre-3.1.
  • *
  • -data-check-all: Perform data checks for all files.
  • - *
  • -battery-check: Enable battery variable checks.
  • *
  • -psal-stats: Compute PSAL statistics for index files.
  • *
  • -list-file <file>: Specify a file containing a list of input * files.
  • @@ -54,7 +53,6 @@ public class Options { private static Options instance; - private final boolean doBatteryChecks; // ..check metadate battery vars - default: no private final boolean doNameCheck; // ..check file name - default: yes private final boolean doNulls; // ..check for nulls in strings - default: no private final boolean doFormatOnly; // ..true: format-only; false: format and data checks @@ -71,18 +69,22 @@ public class Options { private final String outDirName; private final String inDirName; + private final boolean useOnlineNVS; // to read NVS tables from internet instead of the ones providing in the spec + // dir (internal or external) + private final boolean useInternalSpecs; // to use specs file now included in the .jar file instead of specifying an + // external file_chec_spec dir + // ..standard i/o shortcuts static PrintStream stdout = new PrintStream(System.out); static PrintStream stderr = new PrintStream(System.err); private static final Logger log = LogManager.getLogger("Options"); // ====== CONSTRUCTOR ====== - private Options(boolean doBatteryChecks, boolean doNameCheck, boolean doNulls, boolean doFormatOnly, - boolean doFormatOnlyPre31, boolean doPsalStats, boolean version, boolean help, boolean doXml, - String listFile, List inFileList, String dacName, String specDirName, String outDirName, - String inDirName) { + private Options(boolean doNameCheck, boolean doNulls, boolean doFormatOnly, boolean doFormatOnlyPre31, + boolean doPsalStats, boolean version, boolean help, boolean doXml, String listFile, List inFileList, + String dacName, String specDirName, String outDirName, String inDirName, boolean useOnlineNVS, + boolean useInternalSpecs) { super(); - this.doBatteryChecks = doBatteryChecks; this.doNameCheck = doNameCheck; this.doNulls = doNulls; this.doFormatOnly = doFormatOnly; @@ -98,7 +100,9 @@ private Options(boolean doBatteryChecks, boolean doNameCheck, boolean doNulls, b this.outDirName = outDirName; this.inDirName = inDirName; - log.debug("doBatteryChecks = {}", doBatteryChecks); + this.useOnlineNVS = useOnlineNVS; + this.useInternalSpecs = useInternalSpecs; + log.debug("doFormatOnly = {}", doFormatOnly); log.debug("doFormatOnlyPre31 = {}", doFormatOnlyPre31); log.debug("doNameCheck = {}", doNameCheck); @@ -110,24 +114,37 @@ private Options(boolean doBatteryChecks, boolean doNameCheck, boolean doNulls, b log.debug("outDirName = '{}'", outDirName); log.debug("inDirName = '{}'", inDirName); log.debug("number of inFileList = " + (inFileList == null ? "null" : inFileList.size())); + log.debug("useOnlineNVS = {}", useOnlineNVS); + log.debug("useInternalSpecs = {}", useInternalSpecs); } /** - * Retrieves the singleton instance of {@code Options}, parsing command-line - * arguments with {@code extractOptionsFromArgs} if instance is null . * - * @param args : The command-line arguments passed to the application. * @return The singleton instance of {@code Options}. */ - public static synchronized Options getInstance(String args[]) throws IllegalArgumentException { + public static synchronized Options getInstance() throws IllegalArgumentException { if (instance == null) { - instance = extractOptionsFromArgs(args); + throw new IllegalStateException("Options not initialized"); } return instance; } + /** + * initiate the singleton of {@code Options}, parsing command-line arguments + * with {@code extractOptionsFromArgs} if instance is null . + * + * @param args : The command-line arguments passed to the application. + */ + public static void init(String args[]) { + if (instance != null) { + return; + } else { + instance = extractOptionsFromArgs(args); + } + } + /** * Parse command-line arguments. Exit application if bad arguments are provided. * @@ -139,7 +156,6 @@ private static Options extractOptionsFromArgs(String[] args) throws IllegalArgum // Default values : String listFile = null; List inFileList = null; // ..list of input files//..list file name - boolean doBatteryChecks = false; // ..check metadate battery vars - default: no boolean doNameCheck = true; // ..check file name - default: yes boolean doNulls = false; // ..check for nulls in strings - default: no boolean doFormatOnly = false; // ..true: format-only; false: format and data checks @@ -150,6 +166,9 @@ private static Options extractOptionsFromArgs(String[] args) throws IllegalArgum boolean help = false; boolean doXml = true; + boolean useOnlineNVS = false; + boolean useInternalSpecs = false; + // loop trough the arguments provided and differentiate the option (start with // "-") and the positional parameters. int next = 0; @@ -183,12 +202,15 @@ private static Options extractOptionsFromArgs(String[] args) throws IllegalArgum case "-data-check-all": doFormatOnlyPre31 = false; break; - case "-battery-check": - doBatteryChecks = true; - break; case "-psal-stats": doPsalStats = true; break; + case "-online-nvs": + useOnlineNVS = true; + break; + case "-internal-specs": + useInternalSpecs = true; + break; case "-list-file": if (++next < args.length) { listFile = args[next]; @@ -197,6 +219,7 @@ private static Options extractOptionsFromArgs(String[] args) throws IllegalArgum throw new IllegalArgumentException("Error: Missing argument after '-list-file'."); } break; + // ..obsolete arguments -- left in for backwards compatibility case "-no-fresh": log.error("Obsolete argument '-no-fresh' given. IGNORED"); @@ -212,22 +235,25 @@ private static Options extractOptionsFromArgs(String[] args) throws IllegalArgum } // .....parse the positional parameters..... - validateNumberOfPositionalArguments(args, next); // exit system if too few arguments + validateNumberOfPositionalArguments(args, next, useInternalSpecs); // exit system if too few arguments String dacName = args[next++]; - String specDirName = args[next++]; + String specDirName = ""; + + if (!useInternalSpecs) { + specDirName = args[next++]; + } String outDirName = args[next++]; String inDirName = args[next++]; if (next < args.length) { inFileList = new ArrayList(args.length - next); for (; next < args.length; next++) { inFileList.add(args[next]); - } } - return new Options(doBatteryChecks, doNameCheck, doNulls, doFormatOnly, doFormatOnlyPre31, doPsalStats, version, - help, doXml, listFile, inFileList, dacName, specDirName, outDirName, inDirName); + return new Options(doNameCheck, doNulls, doFormatOnly, doFormatOnlyPre31, doPsalStats, version, help, doXml, + listFile, inFileList, dacName, specDirName, outDirName, inDirName, useOnlineNVS, useInternalSpecs); } @@ -238,8 +264,10 @@ private static Options extractOptionsFromArgs(String[] args) throws IllegalArgum * @param args list of arguments * @param next indice of the next argument */ - private static void validateNumberOfPositionalArguments(String[] args, int next) throws IllegalArgumentException { - if (args.length < (4 + next)) { + private static void validateNumberOfPositionalArguments(String[] args, int next, boolean useInternalSpecs) + throws IllegalArgumentException { + int minArgs = (useInternalSpecs ? 3 : 4) + next; + if (args.length < minArgs) { log.error("too few arguments: " + args.length); throw new IllegalArgumentException("Too few arguments provided."); } @@ -253,8 +281,8 @@ private static void validateNumberOfPositionalArguments(String[] args, int next) */ public void validateMandatoryArguments() { checkDacName(dacName); - checkDirectory(inDirName); - checkDirectory(specDirName); + checkDirectory(inDirName, false); + checkDirectory(specDirName, useInternalSpecs); } /** @@ -282,19 +310,15 @@ protected static void checkDacName(String dacName) { * * @param directoryName */ - protected static void checkDirectory(String directoryName) { + protected static void checkDirectory(String directoryName, boolean useOnlineTables) { File dir = new File(directoryName); - if (!dir.isDirectory()) { + if (!useOnlineTables && !dir.isDirectory()) { throw new IllegalArgumentException("ERROR: " + directoryName + " directory is not a directory"); } } // ===== GETTERS ===== - public boolean isDoBatteryChecks() { - return doBatteryChecks; - } - public boolean isDoNameCheck() { return doNameCheck; } @@ -351,4 +375,12 @@ public String getInDirName() { return inDirName; } + public boolean isUseOnlineNVS() { + return useOnlineNVS; + } + + public boolean isUseInternalSpecs() { + return useInternalSpecs; + } + } diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/core/ArgoDataFile.java b/file_checker_exec/src/main/java/fr/coriolis/checker/core/ArgoDataFile.java index d4540ce..b437384 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/core/ArgoDataFile.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/core/ArgoDataFile.java @@ -13,6 +13,8 @@ import fr.coriolis.checker.specs.ArgoFileSpecification; import fr.coriolis.checker.specs.ArgoReferenceTable; +import fr.coriolis.checker.tables.ArgoNVSReferenceTable; +import fr.coriolis.checker.tables.SkosConcept; import ucar.ma2.ArrayChar; import ucar.ma2.ArrayDouble; import ucar.ma2.ArrayFloat; @@ -392,31 +394,49 @@ public static ArgoDataFile open(String inFile, boolean overrideBadTYPE, String.. if (dacName.length > 0) { dac = dacName[0]; } - - if (dt.equals("Argo meta-data")) { - ft = FileType.METADATA; - - } else if (dt.equals("Argo profile")) { - ft = FileType.PROFILE; - - } else if (dt.equals("Argo trajectory")) { - ft = FileType.TRAJECTORY; - - } else if (dt.equals("Argo technical data")) { - ft = FileType.TECHNICAL; - - } else if (dt.equals("B-Argo profile")) { - ft = FileType.BIO_PROFILE; - - } else if (dt.equals("B-Argo trajectory")) { - ft = FileType.BIO_TRAJECTORY; - + SkosConcept dataTypeTableEntry = ArgoNVSReferenceTable.DATA_TYPE_TABLE.getConceptMembersByPrefLabelMap() + .get(dt); + // ======= + // CK_0293 + // ======= + if (dataTypeTableEntry != null) { + if (dataTypeTableEntry.isDeprecated()) { + log.warn("TEMP WARNING: {}: {}: {}", dac, inFile, + "deprecated DATA_TYPE (temporarily allowed): '" + dt + "'"); + } /* * .................................................... ....these are exceptions * currently being allowed.... * .................................................... */ + // ======= + // CK_0294 + // ======= + if (dataTypeTableEntry.getAltLabel().equals("META")) { + ft = FileType.METADATA; + } else if (dataTypeTableEntry.getAltLabel().equals("PROF")) { + ft = FileType.PROFILE; + + } else if (dataTypeTableEntry.getAltLabel().equals("TRAJ")) { + ft = FileType.TRAJECTORY; + + } else if (dataTypeTableEntry.getAltLabel().equals("TECH")) { + ft = FileType.TECHNICAL; + } else if (dataTypeTableEntry.getAltLabel().equals("BPROF")) { + ft = FileType.BIO_PROFILE; + + } else if (dataTypeTableEntry.getAltLabel().equals("BTRAJ")) { + ft = FileType.BIO_TRAJECTORY; + } else { + log.info("Invalid DATA_TYPE: '" + dt + "'"); + ft = FileType.UNKNOWN; + stderr.println( + "\n\n******\n" + "****** PROGRAM ERROR: Unexpected file type. TERMINATING.\n" + "******"); + System.exit(1); + // ValidationResult.lastMessage = new String("Invalid DATA_TYPE: '" + dt + "'"); + return null; + } } else if (dt.equals("ARGO profile")) { // ################# TEMPORARY WARNING ################ /* @@ -466,9 +486,7 @@ public static ArgoDataFile open(String inFile, boolean overrideBadTYPE, String.. } else { log.info("Invalid DATA_TYPE: '" + dt + "'"); ft = FileType.UNKNOWN; - stderr.println("\n\n******\n" + "****** PROGRAM ERROR: Unexpected file type. TERMINATING.\n" + "******"); - System.exit(1); - // ValidationResult.lastMessage = new String("Invalid DATA_TYPE: '" + dt + "'"); + ValidationResult.lastMessage = new String("Invalid DATA_TYPE: '" + dt + "'"); return null; } @@ -559,7 +577,7 @@ public static ArgoDataFile open(String inFile, String specDir, boolean fullSpec, // ..create the specification try { - arFile.spec = openSpecification(fullSpec, specDir, arFile.fileType, arFile.format_version); + arFile.spec = openSpecification(fullSpec, arFile.fileType, arFile.format_version); } catch (IOException e) { if (e.getMessage().matches("cdlFileName.*does not exist")) { ValidationResult.lastMessage = "File type / version not valid in the FileChecker: " + arFile.fileType @@ -607,17 +625,16 @@ public void close() throws IOException { * False if the specification could not be opened * @throws IOException If an I/O error occurs */ - public static ArgoFileSpecification openSpecification(boolean fullSpec, String specDir, FileType ft, String version) + public static ArgoFileSpecification openSpecification(boolean fullSpec, FileType ft, String version) throws IOException { log.debug("fullSpec = {}", fullSpec); - log.debug("specDir = '{}'", specDir); log.debug("file type = {}", ft.specType); log.debug("version = '{}'", version); // ..could handle specialized "specs" by replacing "pure" with something else // .. for example, when we were doing "merged" files, it was set to "merge" - String specType = specDir + ";" + ft.specType + ";" + version.trim() + ";" + "pure"; + String specType = ft.specType + ";" + version.trim() + ";" + "pure"; // ..full-specs are cached (so they can be reused) // ..full-spec will work as a template spec too @@ -642,7 +659,7 @@ public static ArgoFileSpecification openSpecification(boolean fullSpec, String s // ..build a specification for this file ArgoFileSpecification s = null; try { - s = new ArgoFileSpecification(fullSpec, specDir, ft, version); + s = new ArgoFileSpecification(fullSpec, ft, version); } catch (IOException e) { ValidationResult.lastMessage = "Failed in ArgoFileSpecification"; diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/core/ValidateSubmit.java b/file_checker_exec/src/main/java/fr/coriolis/checker/core/ValidateSubmit.java index 526f519..b5d3f07 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/core/ValidateSubmit.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/core/ValidateSubmit.java @@ -2,7 +2,6 @@ import java.io.BufferedReader; import java.io.File; -import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; @@ -23,6 +22,8 @@ import fr.coriolis.checker.exceptions.ValidateFileDataFailedException; import fr.coriolis.checker.exceptions.VerifyFileFormatFailedException; import fr.coriolis.checker.output.ResultsFile; +import fr.coriolis.checker.specs.SpecIO; +import fr.coriolis.checker.tables.ArgoNVSReferenceTable; import fr.coriolis.checker.validators.ArgoFileValidator; import fr.coriolis.checker.validators.ArgoMetadataFileValidator; import fr.coriolis.checker.validators.ArgoProfileFileValidator; @@ -52,6 +53,7 @@ public class ValidateSubmit { private static boolean doXml = true; private static final String UNKNOWN_VERSION = "unknown"; + private static final String NVS_DEFAULT_BASE_URL = "https://vocab.nerc.ac.uk/collection/"; private static String fcVersion; private static String spVersion; @@ -92,7 +94,8 @@ public static void main(String args[]) throws IOException { log.info("{}: START", ClassName); // .....extract the options from command-line arguments.... try { - Options options = Options.getInstance(args); + Options.init(args); + Options options = Options.getInstance(); doXml = options.isDoXml(); String dacName = options.getDacName(); @@ -107,8 +110,11 @@ public static void main(String args[]) throws IOException { // validate Mandatory arguments : options.validateMandatoryArguments(); // System exit with error if no validated + // initiate SpecIO + SpecIO.init(options.isUseInternalSpecs(), options.getSpecDirName()); + // .............load the spec version information.............. - loadSpecVersionInfo(options.getSpecDirName()); + loadSpecVersionInfo(); // ....................get list of input files................. List filesToProcess = getFilesToProcessList(options.getListFile(), options.getInFileList(), inDir); @@ -199,6 +205,9 @@ private static ArgoDataFile openArgoFile(String inFileName, String specDirName, * @param filesToProcess */ private static void validateFiles(Options options, String dacName, List filesToProcess) { + // initialize NVS tables : + initializeNVSTables(options); + // Loop through files list for (String file : filesToProcess) { // .... get file informations from options : @@ -212,6 +221,7 @@ private static void validateFiles(Options options, String dacName, List // ......open and process the input file..... try { + // ..............open Argo file .................... argo = openArgoFile(inFileName, options.getSpecDirName(), dacName); @@ -234,7 +244,7 @@ private static void validateFiles(Options options, String dacName, List if (doDataCheck) { // Full data check needs to be done phase = "DATA-VALIDATION"; - checkArgoFileData(dacName, options.isDoNulls(), options.isDoBatteryChecks()); + checkArgoFileData(dacName, options.isDoNulls()); } // ..................check file Name................... @@ -271,6 +281,16 @@ private static void validateFiles(Options options, String dacName, List } } + private static void initializeNVSTables(Options options) { + if (options.isUseOnlineNVS()) { + String nvsBaseUrl = System.getenv().getOrDefault("NVS_BASE_URL", + codeProp.getProperty("nvs.baseurl.default", NVS_DEFAULT_BASE_URL)); + ArgoNVSReferenceTable.initializeFromInternet(nvsBaseUrl); + } else { + ArgoNVSReferenceTable.initialize(); + } + } + private static boolean[] checkArgoFileFormat(String dacName) throws VerifyFileFormatFailedException { boolean[] results = new boolean[2]; @@ -371,7 +391,7 @@ private static boolean rudimentaryDateCheck(Options options, boolean formatPasse * @throws IOException * @throws ValidateFileDataFailedException */ - private static void checkArgoFileData(String dacName, boolean doNulls, boolean doBatteryChecks) + private static void checkArgoFileData(String dacName, boolean doNulls) throws IOException, ValidateFileDataFailedException { // argoFileValidator must be in the right specialized validation class: @@ -381,7 +401,7 @@ private static void checkArgoFileData(String dacName, boolean doNulls, boolean d // Do metadata file validate data boolean isValidateArgoMetadaFileDataCompleted = ((ArgoMetadataFileValidator) argoFileValidator) - .validateData(doNulls, doBatteryChecks); + .validateData(doNulls); if (!isValidateArgoMetadaFileDataCompleted) { // ..the validate process failed (not errors within the data) log.error("ArgoMetadataFile.validate failed: " + ValidationResult.getMessage()); @@ -452,7 +472,6 @@ private static boolean isCheckDataToBeDone(boolean formatPassed, boolean isDoFor boolean doDataCheck = false; if (formatPassed && !rudimentaryDateCheckDone) { doDataCheck = true; - if (isDoFormatOnly) { doDataCheck = false; log.debug("data check SKIPPED (-format-only)"); @@ -667,9 +686,8 @@ private static void loadProperties() { * * @param specDirName : specifications directory path */ - private static void loadSpecVersionInfo(String specDirName) { - try { - InputStream in = new FileInputStream(specDirName + File.separator + specPropFileName); + private static void loadSpecVersionInfo() { + try (InputStream in = SpecIO.getInstance().open(specPropFileName)) { specProp = new Properties(); specProp.load(in); @@ -687,7 +705,7 @@ private static void loadSpecVersionInfo(String specDirName) { public static void Help() { stdout.println("\n" + "Purpose: Validates the files in a directory\n" + "\n" + "Usage: java " + ClassName - + " [options] dac-name spec-dir output-dir input-dir [file-names]\n" + "Options:\n" + + " [options] dac-name [spec-dir] output-dir input-dir [file-names]\n" + "Options:\n" + " -help | -H | -U Help -- this message\n" + " -no-name-check Do not check the file name\n" + " -null-warn Perform 'nulls-in-string' check (warning)\n" + " default: do NOT check for nulls\n" @@ -703,8 +721,11 @@ public static void Help() { + " default: don't compute this information\n" + "\n" + " -format-only-pre3.1 (default) Only perform format checks on files format pre-3.1\n" + " ***deprecated - now the default - retained for backwards compatibility***\n" + "\n" + + " -internal-specs Use specs files wich are included in the JAR archive.\n" + + " With this option, spec-dir argument should not be provided.\n " + + " -online-nvs Use directly up-to-date NVS from internet. NVS forlder in spec dir will therefore be ignored.\n" + "Arguments:\n" + " dac-name Name of DAC that owns the input files\n" - + " spec-dir Directory path of specification files\n" + + " spec-dir Directory path of specification files. Do not specify if -internal-specs is used\n" + " output-dir Directory path where results files will be placed\n" + " input-dir Directory path where input files reside\n" + " file-names (Optional) List of files names to process (see below)\n" + "\n" + "Input Files:\n" diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/exceptions/R03ParameterException.java b/file_checker_exec/src/main/java/fr/coriolis/checker/exceptions/R03ParameterException.java new file mode 100644 index 0000000..19a48b6 --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/exceptions/R03ParameterException.java @@ -0,0 +1,9 @@ +package fr.coriolis.checker.exceptions; + +public class R03ParameterException extends Exception { + + public R03ParameterException(String message) { + super(message); + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoConfigTechParam.java b/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoConfigTechParam.java index 2fec52c..e203546 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoConfigTechParam.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoConfigTechParam.java @@ -1,9 +1,11 @@ package fr.coriolis.checker.specs; import java.io.BufferedReader; -import java.io.File; -import java.io.FileReader; +import java.io.FileNotFoundException; import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; @@ -21,6 +23,10 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; +import fr.coriolis.checker.tables.ArgoNVSReferenceTable; +import fr.coriolis.checker.tables.SkosConcept; +import fr.coriolis.checker.utils.NvsDefinitionParser; + /** * Implements features to check the Meta-data CONFIG_PARAMETER_NAME (including * LAUNCH_...) and TECHNICAL_PARAMETER_NAME. This includes the units @@ -69,9 +75,8 @@ public String toString() { static final String defaultTemplateReplacement; static final Map templateReplacement; - static final String[] knownTemplates; - static final Map> possibleValuesByKey; - + static final Set knownTemplates; + static final Set knownTemplatesWithMatchListToCheck; static { defaultTemplateReplacement = "(?\\w+)"; @@ -85,7 +90,7 @@ public String toString() { temp.put("param", "(?[A-Z][a-z]+(?:[A-Z][a-z]+)??)"); temp.put("PARAM", "(?[A-Z]+?)"); temp.put("S", "(?\\d+?)"); - temp.put("SubS", "(?\\d+?)"); + temp.put("SubS", "(?\\d+?)"); temp.put("short_sensor_name", "(?[A-Z][a-z]+?|CTD)"); // ..tech templates (alphabetical order) temp.put("digit", "(?\\d)"); @@ -94,17 +99,12 @@ public String toString() { temp.put("Z", "(?\\d+?)"); templateReplacement = Collections.unmodifiableMap(temp); - knownTemplates = new String[] { "D", "horizontalphasename", "I", "N", "N1", "param", "PARAM", "S", "SubS", - "shortsensorname", "verticalphasename", "digit", "int", "Z" }; + knownTemplates = new HashSet<>(Arrays.asList("D", "horizontalphasename", "I", "N", "N1", "param", "PARAM", "S", + "SubS", "shortsensorname", "verticalphasename", "cyclephasename", "digit", "int", "Z")); + knownTemplatesWithMatchListToCheck = new HashSet<>(Arrays.asList("horizontalphasename", "N", "N1", "digit", + "param", "PARAM", "shortsensorname", "verticalphasename", "cyclephasename")); - Map> temp2 = new HashMap<>(); - temp2.put("short_sensor_name", ArgoReferenceTable.GENERIC_TEMPLATE_short_sensor_name); - temp2.put("Z", new HashSet<>(Arrays.asList("1", "2", "3", "4", "5"))); - temp2.put("cycle_phase_name", ArgoReferenceTable.GENERIC_TEMPLATE_cycle_phase_name); - temp2.put("param", ArgoReferenceTable.GENERIC_TEMPLATE_param); - possibleValuesByKey = Collections.unmodifiableMap(temp2); } - // ......define and initialize the pattern matcher objects...... static Pattern pBlankOrComment; // ..match a blank line or a comment line static Pattern pComment; // ..comment @@ -120,9 +120,6 @@ public String toString() { // .....object variables...... - private String bioCfgParmFileName; - private String coreCfgParmFileName; - private String tecParmFileName; private String unitFileName; private String version; @@ -178,16 +175,12 @@ public String toString() { * @throws IOException File I/O errors */ - public ArgoConfigTechParam(String specDir, String version, boolean initConfig, boolean initTech) - throws IOException { + public ArgoConfigTechParam(String version, boolean initConfig, boolean initTech) throws IOException { log.debug("...ArgoConfigTechParam: start..."); this.version = version.trim(); + String prefix = "argo-"; - String prefix = specDir.trim() + "/argo-"; - coreCfgParmFileName = prefix + "core_config_names-spec-v" + this.version; - bioCfgParmFileName = prefix + "bio_config_names-spec-v" + this.version; - tecParmFileName = prefix + "tech_names-spec-v" + this.version; unitFileName = prefix + "tech_units-spec-v" + this.version; if (initConfig) { @@ -557,224 +550,109 @@ public boolean isDeprecatedConfigTechUnit(String name) { public void parseConfigParamFiles() throws IOException { log.debug(".....parseConfigParamFiles: start....."); - String[] fileNames = { coreCfgParmFileName, bioCfgParmFileName, coreCfgParmFileName + ".deprecated", - bioCfgParmFileName + ".deprecated" }; - LinkedHashSet paramList = null; - LinkedHashMap>> paramRegex = null; - - // ....loop over the active and deprecated files..... - - for (int nFile = 0; nFile < fileNames.length; nFile++) { - String fileName = fileNames[nFile]; - - log.debug("parsing '{}'", fileName); - - // .......parse the config param name file....... - // ..open the file - File f = new File(fileName); - if (!f.isFile()) { - - if (nFile <= 1) { - // ..both primary files MUST exist - log.error("Config-Param-file '{}' does not exist", fileName); - throw new IOException("Config-Parm-File '" + fileName + "' does not exist"); - } else { - // ..deprecated file MAY NOT exist - log.debug("Deprecated-Config-Param-file '{}' does not exist (optional)", fileName); - continue; - } - - } else if (!f.canRead()) { - // ..file exists but cannot be read --> error - log.error("Config-Param-File '{}' cannot be read", fileName); - throw new IOException("Config-Parm-File '" + fileName + "' cannot be read"); - } + // ..pattern to recognize/replace templates + Pattern pTemplate = Pattern.compile("<([^>]+?)>"); + log.debug("template regex: '{}'", pTemplate); - // ..create list variables - // ..open file + configParamList = new LinkedHashSet(250); + configParamRegex = new LinkedHashMap>>(250); - if (nFile == 0) { - configParamList = new LinkedHashSet(250); - configParamRegex = new LinkedHashMap>>(250); + configParamList_DEP = new LinkedHashSet(250); + configParamRegex_DEP = new LinkedHashMap>>(250); - paramList = configParamList; - paramRegex = configParamRegex; + // ....loop over the active and deprecated entries..... + for (SkosConcept configParamEntry : ArgoNVSReferenceTable.CONFIG_PARAMETER_NAME_TABLE + .getConceptMembersByAltLabelMap().values()) { + if (!configParamEntry.isDeprecated()) { + parseParamName(configParamList, configParamRegex, "NVS R18 table", pTemplate, configParamEntry); - } else if (nFile == 2) { - // ..do this only for the first deprecated file - configParamList_DEP = new LinkedHashSet(25); - configParamRegex_DEP = new LinkedHashMap>>(25); + } else { + // it is a deprecated config param + parseParamName(configParamList_DEP, configParamRegex_DEP, "NVS R18 table", pTemplate, configParamEntry); - paramList = configParamList_DEP; - paramRegex = configParamRegex_DEP; } + } - BufferedReader file = new BufferedReader(new FileReader(fileName)); - - // .....read through the files.... - - // ..pattern to recognize/replace templates - Pattern pTemplate = Pattern.compile("<([^>]+?)>"); - log.debug("template regex: '{}'", pTemplate); - - String line; - while ((line = file.readLine()) != null) { - if (pBlankOrComment.matcher(line).matches()) { - log.debug("blank/comment: '{}'", line); - continue; - } - - // ..break the line into individual entries - String column[] = line.split("\\|"); - for (int n = 0; n < column.length; n++) { - String s = column[n].trim(); - column[n] = s; - } - - // ..column[0] is the parameter name and includes an example unit - // ..need to strip off the unit - - int index = column[0].lastIndexOf('_'); - - if (index <= 0) { - // ..poorly formed name - file.close(); - throw new IOException("Config-Parm-File '" + fileName + "': Badly formed name '" + column[0] + "'"); - } - - // ..well formed named, break it apart - - String param = column[0].substring(0, index); - - // ..process parameter - - Matcher matcher = pTemplate.matcher(param); - - if (!matcher.find()) { - // ..no <*> structures -- just a straight fixed name - - paramList.add(param); - log.debug("add param: '{}'", param); - - } else { - // ..contains <*> structures -- convert to a regex - // ..convert CONFIG_CpAscentPhaseDepthZoneSampleRate_hertz - // ..to CONFIG_(?\w*)CpAscentPhaseDepthZone(?\w*)SampleRate_hertz - // .. similar for the other templates - - // ........parse all templates off line........ - // ..capture up to first template - int start = matcher.start(); - StringBuilder regex = new StringBuilder(); - - if (start > 0) { - regex.append(param.substring(0, matcher.start())); - } - log.debug("regex line: param = '{}'", param); - // log.debug ("...start regex: start, regex = '{}', '{}'", start, regex); - - // ..add first group (already matched) - String repl = templateReplacement.get(matcher.group(1)); - if (repl == null) { - repl = defaultTemplateReplacement; - log.warn("*** DEFAULT TEMPLATE ***"); - } - - regex.append(repl); - // log.debug ("...add template: regex = '{}'", regex); - - // ..loop over remaining templates - - int end_after = matcher.end(); - - while (matcher.find()) { - start = matcher.start(); - // log.debug("...end_after, start = '{}', '{}'", end_after, start); - - if (end_after < start) { - regex.append(param.substring(end_after, start)); - // log.debug ("...add literal: '{}'", regex); - } - - repl = templateReplacement.get(matcher.group(1)); - if (repl == null) { - repl = defaultTemplateReplacement; - log.warn("*** DEFAULT TEMPLATE ***"); - } - - regex.append(repl); - // log.debug ("...add template: '{}'", regex); + log.debug("configParamList: {}", configParamList); - end_after = matcher.end(); - } + log.debug(".....parseConfigParamFiles: end....."); - // ..patch last bit + } // ..end parseConfigParamFiles - if (end_after < param.length()) { - regex.append(param.substring(end_after)); - // log.debug ("...add ending literal: '{}'", regex); - } + /** + * parse a line from the table 18 (ist of configurations parameters) and add + * results (param name, regex pattern if exists) to the corresponding variable. + * + * @param paramList + * @param paramRegex + * @param nFile + * @param fileName + * @param pTemplate + * @param column + */ + private void parseParamName(LinkedHashSet paramList, + LinkedHashMap>> paramRegex, String tableName, Pattern pTemplate, + SkosConcept paramEntry) { - log.debug("add regex: '{}'", regex); - Pattern pRegex = Pattern.compile(regex.toString()); + // ..need to strip off the unit + String paramCode = paramEntry.getPrefLabel(); + String param = extractParamNameAndUnitFromParamCode(tableName, paramCode)[0]; + String unit = extractParamNameAndUnitFromParamCode(tableName, paramCode)[1]; // not useful of the moment as we + // authorize all units from the + // ref list + // ..process parameter + Matcher matcher = pTemplate.matcher(param); - // ..........finished parsing templates.......... + if (!matcher.find()) { + // ..no <*> structures -- just a straight fixed name + paramList.add(param); - // ..decide if there are "match lists" to compare to - // ..- core_config_name spec does NOT have any match lines - // ..- bio_config_name spec can have "match lists" + log.debug("add param: '{}'", param); - HashMap> matchList = null; + } else { + // ..contains <*> structures -- convert to a regex + // ..convert CONFIG_CpAscentPhaseDepthZoneSampleRate_hertz + // ..to CONFIG_(?\w*)CpAscentPhaseDepthZone(?\w*)SampleRate_hertz + // .. similar for the other templates - if (nFile == 1 || nFile == 3) { - // ..bio-config file has matching list in these columns - String[] templates = { "shortsensorname", "param", "cyclephasename" }; - int[] nColumn = { 2, 3, 4, 5 }; // .."0-based" + // ........parse all templates off line........ + // ..capture up to first template + String regexString = convertParamStringToRegex(param, matcher); - matchList = new HashMap>(templates.length); + log.debug("add regex: '{}'", regexString); + Pattern pRegex = Pattern.compile(regexString); - for (int n = 0; n < templates.length; n++) { - if (column.length > nColumn[n]) { - String[] list = column[nColumn[n]].split("[, /]"); + // ..........finished parsing templates.......... - HashSet set = new HashSet(list.length); + // ..decide if there are "match lists" to compare to + // ..- core_config_name spec does NOT have any match lines + // ..- bio_config_name spec can have "match lists" + // 02/2026 : no distinction between bio and core when using NVS table - for (int m = 0; m < list.length; m++) { - String s = list[m].trim(); - if (s.length() > 0) { - set.add(list[m].trim()); - } - } + HashMap> matchList = null; - if (set.size() > 0) { - // ..have to handle the "CTD" exception .. I hate exceptions - if (templates[n].equals("shortsensorname")) { - set.add("CTD"); - } + // if (nFile == 1 || nFile == 3) { // BIO config name files + // ..bio-config file has matching list in these columns + // String[] templates = { "shortsensorname", "param", "cyclephasename" }; - matchList.put(templates[n], set); - log.debug("matchList: add '{}' = '{}'", templates[n], set); - } - } - } - } + // int[] nColumn = { 2, 3, 4, 5 }; // .."0-based" - if (matchList != null && matchList.size() > 0) { - paramRegex.put(pRegex, matchList); - } else { - paramRegex.put(pRegex, null); - log.debug("matchList: null"); - } - } - } // ..end while (line) + matchList = new HashMap>(); - file.close(); - } // ..end for (fileNames) + // get template_values defined in Definition field : + Map paramTemplateValues = NvsDefinitionParser.parseAttributes("Template_Values", + paramEntry.getDefinition()); - log.debug("configParamList: {}", configParamList); + buildTemplatesMatchingListFromNVSParamTemplateValues(matchList, paramTemplateValues); - log.debug(".....parseConfigParamFiles: end....."); - } // ..end parseConfigParamFiles + if (matchList != null && matchList.size() > 0) { + paramRegex.put(pRegex, matchList); + } else { + paramRegex.put(pRegex, null); + log.debug("matchList: null"); + } + } + } // ............................................................ // .....................parseTechParamFile..................... @@ -787,207 +665,155 @@ public void parseConfigParamFiles() throws IOException { * @throws IOException indicates file read or permission error */ public void parseTechParamFile() throws IOException { + // =========== + // CK_0093 1/2 + // =========== log.debug(".....parseTechParamFile: start....."); - String[] fileNames = { tecParmFileName, tecParmFileName + ".deprecated" }; - LinkedHashSet paramList; - LinkedHashSet paramCodeList; - LinkedHashMap>> paramRegex; - - // ....loop over the active and deprecated files..... + techParamList = new LinkedHashSet(250); + techParamRegex = new LinkedHashMap>>(250); + techParamCodeList = new LinkedHashSet(250); - for (int nFile = 0; nFile < fileNames.length; nFile++) { - String fileName = fileNames[nFile]; + techParamList_DEP = new LinkedHashSet(250); + techParamRegex_DEP = new LinkedHashMap>>(250); + techParamCodeList_DEP = new LinkedHashSet(250); - log.debug("parsing '{}'", fileName); - - // .......parse the tech param name file....... - // ..open the file - // TO DO : TRY CATCH exception handling with closing file in finally - File f = new File(fileName); - if (!f.isFile()) { - - if (nFile == 0) { - // ..primary file MUST exist - log.error("Tech-Param-file '{}' does not exist", fileName); - throw new IOException("Tech-Parm-File '" + fileName + "' does not exist"); - } else { - // ..deprecated file MAY NOT exist - log.debug("Deprecated-Tech-Param-file '{}' does not exist (optional)", fileName); - continue; - } - - } else if (!f.canRead()) { - // ..file exists but cannot be read --> error - log.error("Tech-Param-File '{}' cannot be read", fileName); - throw new IOException("Tech-Parm-File '" + fileName + "' cannot be read"); - } - - // ..create list variables - // ..open file - - if (nFile == 0) { - techParamList = new LinkedHashSet(250); - techParamRegex = new LinkedHashMap>>(250); - techParamCodeList = new LinkedHashSet(250); - - paramList = techParamList; - paramCodeList = techParamCodeList; - paramRegex = techParamRegex; + // ..pattern to recognize/replace templates + Pattern pTemplate = Pattern.compile("<([^>]+?)>"); + // loop over tech paramaters PrefLabel list: + for (SkosConcept techParamEntry : ArgoNVSReferenceTable.TECHNICAL_PARAMETER_NAME_TABLE + .getConceptMembersByAltLabelMap().values()) { + if (!techParamEntry.isDeprecated()) { + parseParamName(techParamList, techParamRegex, "NVS R14 table", pTemplate, techParamEntry); + // We want full } else { - techParamList_DEP = new LinkedHashSet(25); - techParamRegex_DEP = new LinkedHashMap>>(25); - techParamCodeList_DEP = new LinkedHashSet(25); + // it is a deprecated tech param - paramList = techParamList_DEP; - paramCodeList = techParamCodeList_DEP; - paramRegex = techParamRegex_DEP; + parseParamName(techParamList_DEP, techParamRegex_DEP, "NVS R14 table", pTemplate, techParamEntry); } - - BufferedReader file = new BufferedReader(new FileReader(fileName)); - - // .....read through the file.... - - // ..pattern to recognize/replace templates - Pattern pTemplate = Pattern.compile("<([^>]+?)>"); - log.debug("template regex: '{}'", pTemplate); - - String line; - while ((line = file.readLine()) != null) { - if (pBlankOrComment.matcher(line).matches()) { - log.debug("blank/comment: '{}'", line); - continue; - } - - // ..break the line into individual entries - String column[] = line.split("\\|"); - for (int n = 0; n < column.length; n++) { - String s = column[n].trim(); - column[n] = s; - } - - parseTechParamName(paramList, paramCodeList, paramRegex, fileName, file, pTemplate, column); - } // ..end while (line) - - file.close(); - - } // ..end for (fileNames) + } log.debug(".....parseTechParamFile: end....."); + } // ..end parseTechParamFile /** - * Parse a argo-tech_names-spec file line. The first column is - * _unit, the second column is definition which are used for - * long_name. Need to exctract and link the 3 informations : param name, unit - * and long_name. It may have multiple units and long_name available for the - * same parameter name. - * - * @param paramList - * @param paramCodeList - * @param paramRegex - * @param fileName - * @param file - * @param pTemplate - * @param column - * @throws IllegalArgumentException + * Returns the complete set of all possible parameter names across all patterns + * in configParamRegex. + * + * @return A Set of all concrete parameter names, deduplicated across all + * patterns. */ - private void parseTechParamName(LinkedHashSet paramList, LinkedHashSet paramCodeList, - LinkedHashMap>> paramRegex, String fileName, BufferedReader file, - Pattern pTemplate, String[] column) throws IllegalArgumentException { - - String parameterCode = column[0]; - String parameterLongName = column[1]; - // ..column[0] is the parameter name and includes an example unit - // ..need to strip off the unit - String[] paramNameAndUnit = extractParamNameAndUnitFromParamCode(fileName, parameterCode); - String paramName = paramNameAndUnit[0]; - String unit = paramNameAndUnit[1]; + protected Set getAllPossibleParamNames( + LinkedHashMap>> paramRegex) { + return generateParamListsFromConfigRegex(paramRegex).values().stream().flatMap(List::stream) + .collect(Collectors.toCollection(LinkedHashSet::new)); + } - // add list to authorized unit list for this parameter. TO USE LATER. FOR NOW - // USE AUTHORIZE ALL UNITS FROM UNITS TABLE -// if (paramAuthorizedUnits.containsKey(paramName)) { -// paramAuthorizedUnits.get(paramName).add(unit); -// } else { -// paramAuthorizedUnits.put(paramName, new ArrayList<>(Arrays.asList(unit))); -// } + /** + * Builds, for each Pattern in configParamRegex, the list of all possible + * parameter names by substituting named groups with their allowed values. + * + * @return A map associating each Pattern to its list of concrete parameter + * names. Patterns with no injectable group values are mapped to an + * empty list. + */ + private Map> generateParamListsFromConfigRegex( + LinkedHashMap>> paramRegex) { + Map> result = new LinkedHashMap<>(); - // add list to authorized long_name list for this parameter - processParamAndLongNameFields(paramName, parameterLongName, pTemplate); + for (Map.Entry>> entry : paramRegex.entrySet()) { + Pattern pattern = entry.getKey(); + HashMap> groupValues = entry.getValue(); - // ..process the parameter name (can contain regex) and add to right list - // (paramList or paramRegex) - processParameterField(paramList, paramRegex, pTemplate, paramName); + List paramList = generateParamListFromPatternAndValues(pattern.pattern(), groupValues); + result.put(pattern, paramList); + } + return result; } /** - * tech paramater's variable's name and long_name may contain - * . This function compute the list of different possibility - * for a given tech parameter name. - * - * @param field + * Generates all concrete strings from a regex pattern by replacing each named + * group with all its allowed values. + * + * @param pRegex The regex pattern string (e.g. + * "(?...)_(?...)"). + * @param groupValues Map of group name -> set of allowed values for that group. + * @return List of concrete strings, or empty list if no group could be + * substituted. */ - private void processParamAndLongNameFields(String paramName, String longName, Pattern pTemplate) { - Matcher matcherParamName = pTemplate.matcher(paramName); - Matcher matcherLongName = pTemplate.matcher(longName); + private List generateParamListFromPatternAndValues(String pRegex, + HashMap> groupValues) { - if (!matcherParamName.find()) { - - List longNameListFromRegex; - // no in tech param's name. Check if there is one in - // long_name. In this case all possibilities are authorized : - if (matcherLongName.find()) { - // ..contains <*> structures in long_name, build list of possibilities - String regexString = convertParamStringToRegex(longName, matcherLongName); + if (groupValues == null || groupValues.isEmpty()) { + return new ArrayList<>(); + } - Pattern pRegex = Pattern.compile(regexString.toString()); + List regexList = new ArrayList<>(Collections.singletonList(pRegex)); + boolean replacedAtLeastOne = false; - longNameListFromRegex = generateParamListFromPattern(pRegex.pattern()); + for (Map.Entry> entry : groupValues.entrySet()) { + String groupName = entry.getKey(); + Set values = entry.getValue(); - } else { - // no in paramName nor in longName. - longNameListFromRegex = new ArrayList<>(Arrays.asList(longName)); + if (values == null || values.isEmpty()) { + continue; } - // add list to authorized long_name list for this parameter - if (paramAuthorizedLongName.containsKey(paramName)) { - paramAuthorizedLongName.get(paramName).addAll(longNameListFromRegex); - } else { - paramAuthorizedLongName.put(paramName, longNameListFromRegex); + // Match the named group in the regex: (?...) + String namedGroupPattern = "\\(\\?<" + groupName + ">.*?\\)"; + + boolean groupFound = regexList.stream().anyMatch(r -> Pattern.compile(namedGroupPattern).matcher(r).find()); + + if (!groupFound) { + continue; } - } else { - // ..contains <*> structures -- convert to a regex and build list of param name - String regexString = convertParamStringToRegex(paramName, matcherParamName); - - Pattern pRegex = Pattern.compile(regexString.toString()); - List paramNameListFromRegex = generateParamListFromPattern(pRegex.pattern()); - - // for each paramName, apply this function (recursivity) : - for (String paramNameWithNoRegex : paramNameListFromRegex) { - // need to repace the short_sensor_name and Z in longName by the same found in - // paramName : - String shortSensorNamefound = extractSpecificValueFromPattern(paramName, paramNameWithNoRegex, pRegex, - "short_sensor_name"); - String zValue = extractSpecificValueFromPattern(paramName, paramNameWithNoRegex, pRegex, "Z"); - - // onlys sort_sensor_name and Z are found in paramName. Replace value if found - // in corresponding longName - String completedLongName = longName; - if (shortSensorNamefound != null) { - completedLongName = completedLongName.replace("", shortSensorNamefound); - } + replacedAtLeastOne = true; - if (zValue != null) { - completedLongName = completedLongName.replace("", zValue); - } + regexList = regexList.stream().flatMap( + currentRegex -> generateStringsFromPattern(currentRegex, values, namedGroupPattern).stream()) + .collect(Collectors.toList()); + } + + return replacedAtLeastOne ? regexList : new ArrayList<>(); + } + + private void buildTemplatesMatchingListFromNVSParamTemplateValues(HashMap> matchList, + Map configParamTemplateValues) { + + for (Map.Entry entry : configParamTemplateValues.entrySet()) { + String normalizedKey = entry.getKey().replace("_", "");// need to replace short_sensor_name, + // cycle_phase_name by shortsensorname and + // cyclephasename + String value = entry.getValue(); - processParamAndLongNameFields(paramNameWithNoRegex, completedLongName, pTemplate); + String[] templateValues = ArgoFileSpecification + .getValuesListFromParameterAttribute(ArgoFileSpecification.getOrEmptyStringFromValue(value)); + HashSet set = new HashSet<>(Arrays.asList(templateValues)); + + // "CTD" exception (always authorized for short_sensor_name ???) : + if (normalizedKey.equals("shortsensorname")) { + set.add("CTD"); + } + if (!set.isEmpty() && knownTemplatesWithMatchListToCheck.contains(normalizedKey)) { + matchList.put(normalizedKey, set); + // special case for N and N+1 : N+1 has the "N" key in template values so need + // to replicate the set but with +1 to last value + if (normalizedKey.equals("N")) { + // Create a new set for N1 = N values + (max + 1) + HashSet setN1 = new HashSet<>(set); // copy N set + + int maxN = set.stream().mapToInt(Integer::parseInt).max().orElse(0); + + setN1.add(String.valueOf(maxN + 1)); + matchList.put("N1", setN1); + } } - } + } } public String extractSpecificValueFromPattern(String originalPattern, String actualString, Pattern pRegex, @@ -1043,76 +869,6 @@ private List extractPlaceholderNames(String pattern) { return names; } - /** - * paramName can contain <*>. If so convert the param name to regex and add it - * to the list. If not, add the paramName to paramList. - * - * @param paramList - * @param paramRegex - * @param pTemplate - * @param param - */ - private void processParameterField(LinkedHashSet paramList, - LinkedHashMap>> paramRegex, Pattern pTemplate, String param) { - - Matcher matcher = pTemplate.matcher(param); - - if (!matcher.find()) { - // ..no <*> structures -- just a straight fixed name - paramList.add(param); - log.debug("add param: '{}'", param); - - } else { - // ..contains <*> structures -- convert to a regex - // ..convert CONFIG_CpAscentPhaseDepthZoneSampleRate_hertz - // ..to CONFIG_(?\w*)CpAscentPhaseDepthZone(?\w*)SampleRate_hertz - - String regexString = convertParamStringToRegex(param, matcher); - - log.debug("add regex: '{}'", regexString); - Pattern pRegex = Pattern.compile(regexString.toString()); - paramRegex.put(pRegex, null); - - // Build additional paramList using regex and referenceTable and add it to the - // paramList - List paramListFromRegex = generateParamListFromPattern(pRegex.pattern()); - - paramList.addAll(paramListFromRegex); - - } - } - - private List generateParamListFromPattern(String pRegex) { - List regexList = new ArrayList<>(Arrays.asList(pRegex)); - boolean replacedAtLeastOne = false; - - for (Map.Entry entry : templateReplacement.entrySet()) { - String key = entry.getKey(); - String groupPattern = entry.getValue(); - - if (!possibleValuesByKey.containsKey(key)) { - continue; - } // no values to inject for this regex pattern - - boolean containRegex = regexList.stream().anyMatch(regex -> regex.contains(groupPattern)); - - if (!containRegex) { - continue; - } - - replacedAtLeastOne = true; - // replace the regex pattern by values (create a liste) from possibleValuesByKey - regexList = regexList.stream().flatMap(pRegexvalue -> { - return generateStringsFromPattern(pRegexvalue, possibleValuesByKey.get(key), - generalizeNamedGroupPattern(groupPattern)).stream(); - - }).collect(Collectors.toList()); - - } - return replacedAtLeastOne ? regexList : new ArrayList<>(); - - } - private List generateStringsFromPattern(String pRegex, Set values, String regexToReplace) { if (!Pattern.compile(regexToReplace).matcher(pRegex).find()) { // Pattern not processed (pattern to replace absent) @@ -1124,18 +880,6 @@ private List generateStringsFromPattern(String pRegex, Set value } - private String generalizeNamedGroupPattern(String groupRegex) { - Pattern groupPattern = Pattern.compile("\\(\\?<([a-zA-Z][a-zA-Z0-9_]*)>.*?\\)"); - Matcher matcher = groupPattern.matcher(groupRegex); - - if (matcher.matches()) { - String groupName = matcher.group(1); - return "\\(\\?<" + groupName + ">.*?\\)"; - } else { - throw new IllegalArgumentException("Input regex does not contain a valid named group: " + groupRegex); - } - } - /** * contains <*> structures -- convert to a regex convert * CONFIG_CpAscentPhaseDepthZoneSampleRate_hertz to @@ -1198,9 +942,9 @@ private String convertParamStringToRegex(String param, Matcher matcher) { } /** - * Parameter code in Table 14a contain an example unit at the end of string. - * Example : "PRES_SurfaceOffsetTruncatedPlus5dbar_dbar". This method extract - * the tech param name by stripping off the unit. Example : + * Parameter code in Table 14a or table 18 contain an example unit at the end of + * string. Example : "PRES_SurfaceOffsetTruncatedPlus5dbar_dbar". This method + * extract the tech param name by stripping off the unit. Example : * "PRES_SurfaceOffsetTruncatedPlus5dbar" * * @param fileName @@ -1218,7 +962,7 @@ private String[] extractParamNameAndUnitFromParamCode(String fileName, String pa if (index <= 0) { throw new IllegalArgumentException( - "Technical-Parm-File '" + fileName + "': Badly formed name '" + parameterCode + "'"); + "Technical/Config-Param-File '" + fileName + "': Badly formed name '" + parameterCode + "'"); } // ..well formed named, break it apart @@ -1226,7 +970,9 @@ private String[] extractParamNameAndUnitFromParamCode(String fileName, String pa String parameterName = parameterCode.substring(0, index); String parameterUnit = parameterCode.substring(index + 1, parameterCode.length()); String[] results = { parameterName, parameterUnit }; + return results; + } // ............................................................ @@ -1242,7 +988,9 @@ private String[] extractParamNameAndUnitFromParamCode(String fileName, String pa */ public void parseUnitFile() throws IOException { log.debug(".....parseConfigTechUnitFile: start....."); - + // =========== + // CK_0095 1/2 + // =========== String[] fileNames = { unitFileName, unitFileName + ".deprecated" }; LinkedHashMap list; @@ -1253,70 +1001,71 @@ public void parseUnitFile() throws IOException { // .......parse the param unit file....... // ..open the file - File f = new File(fileName); - if (!f.isFile()) { - if (n == 0) { - // ..primary file MUST exist - log.error("Config-Tech-Unit-file '{}' does not exist", fileName); - throw new IOException("Config-Tech-Unit-File '" + fileName + "' does not exist"); - } else { - // ..deprecated file MAY NOT exist - log.debug("Deprecated-Config-Tech-Unit-file '{}' does not exist (optional)", fileName); - continue; - } + try (InputStream in = SpecIO.getInstance().open(fileName); + BufferedReader fileReader = new BufferedReader( + new InputStreamReader(in, StandardCharsets.UTF_8));) { - } else if (!f.canRead()) { - // ..file exists but cannot be read --> error - log.error("Config-Tech-Unit-File '{}' cannot be read", fileName); - throw new IOException("Config-Tech-Unit-File '" + fileName + "' cannot be read"); - } + // ..create list variables + // ..open file - // ..create list variables - // ..open file + if (n == 0) { + unitList = new LinkedHashMap(100); + list = unitList; - if (n == 0) { - unitList = new LinkedHashMap(100); - list = unitList; + } else { + unitList_DEP = new LinkedHashMap(25); + list = unitList_DEP; + } - } else { - unitList_DEP = new LinkedHashMap(25); - list = unitList_DEP; - } + // .....read through the file.... + log.debug("parsing config/tech unit file '" + fileName + "'"); - BufferedReader file = new BufferedReader(new FileReader(fileName)); + String line; + while ((line = fileReader.readLine()) != null) { + if (pBlankOrComment.matcher(line).matches()) { + log.debug("blank/comment: '{}'", line); + continue; + } - // .....read through the file.... - log.debug("parsing config/tech unit file '" + fileName + "'"); + // .....split the line: col 1 = unit name; col 2 = data type..... + String st[] = line.split("\\|"); - String line; - while ((line = file.readLine()) != null) { - if (pBlankOrComment.matcher(line).matches()) { - log.debug("blank/comment: '{}'", line); - continue; - } + if (st[0].length() > 0) { + String unit_name = st[0].trim(); - // .....split the line: col 1 = unit name; col 2 = data type..... - String st[] = line.split("\\|"); + ConfigTechValueType dt; - if (st[0].length() > 0) { - String unit_name = st[0].trim(); + if (st.length > 1) { + dt = ConfigTechValueType.getType(st[1].trim()); + } else { + dt = ConfigTechValueType.UNKNOWN; + } - ConfigTechValueType dt; + log.debug("add unit: '{}' / '{}'", unit_name, dt); - if (st.length > 1) { - dt = ConfigTechValueType.getType(st[1].trim()); - } else { - dt = ConfigTechValueType.UNKNOWN; + list.put(st[0].trim(), dt); } + } - log.debug("add unit: '{}' / '{}'", unit_name, dt); + fileReader.close(); - list.put(st[0].trim(), dt); + } catch (FileNotFoundException e) { + if (n == 0) { + // ..primary file MUST exist + log.error("Config-Tech-Unit-file '{}' does not exist", fileName); + throw e; + } else { + // ..deprecated file MAY NOT exist + log.debug("Deprecated-Config-Tech-Unit-file '{}' does not exist (optional)", fileName); + continue; } + + } catch (IOException e) { + log.error("Config-Tech-Unit-File '{}' cannot be read", fileName); + throw e; } - file.close(); } } // ..end parseUnitFile diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoFileSpecification.java b/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoFileSpecification.java index 35d85c3..eaceadd 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoFileSpecification.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoFileSpecification.java @@ -1,14 +1,19 @@ package fr.coriolis.checker.specs; import java.io.BufferedReader; -import java.io.File; -import java.io.FileReader; +import java.io.FileNotFoundException; import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.nio.charset.StandardCharsets; import java.util.ArrayList; +import java.util.Arrays; import java.util.Collection; import java.util.HashMap; import java.util.HashSet; import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; import java.util.Set; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -18,6 +23,11 @@ import org.apache.logging.log4j.Logger; import fr.coriolis.checker.core.ArgoDataFile; +import fr.coriolis.checker.exceptions.R03ParameterException; +import fr.coriolis.checker.tables.ArgoNVSReferenceTable; +import fr.coriolis.checker.tables.R03DeprecatedEntry; +import fr.coriolis.checker.tables.SkosConcept; +import fr.coriolis.checker.utils.NvsDefinitionParser; import ucar.ma2.DataType; /** @@ -474,9 +484,9 @@ public class ArgoFileSpecification { // .......physical parameter variables........... - private static final int nParamFields = 19; // ..number of significant fields (min number) private static final HashMap paramFileTypes = new HashMap(); - + private static final Set NUMERIC_ATTRS = new HashSet<>( + Arrays.asList("valid_min", "valid_max", "fillValue", "resolution")); // ..attribute constants /** @@ -511,6 +521,8 @@ public class ArgoFileSpecification { */ public static final String ATTR_NOT_ALLOWED = "<->"; // ..not allowed (can't be present) + public static final int NUMBER_ALLOWED_DUPLICATE_SENSOR = 5; + private static final String axis = new String("axis"); private static final String c_format = new String("C_format"); private static final String comment = new String("comment"); @@ -518,8 +530,6 @@ public class ArgoFileSpecification { private static final String conventions = new String("conventions"); private static final String fillValue = new String("_FillValue"); private static final String fillValueBLANK = new String(" "); - private static final Number fillValueFloatPARAM = new Float(99999.f); - private static final Number fillValueDoublePARAM = new Double(99999.f); private static final String fortran_format = new String("FORTRAN_format"); private static final String long_name = new String("long_name"); private static final String standard_name = new String("standard_name"); @@ -680,8 +690,8 @@ public static class AttrRegex { private String cdlFileName; private String optFileName; - private String prmFileName; private String prmFileNameAux; + private String r03DepPhysicalParamsTableName; private String regFileName; private boolean attrRegex; @@ -702,6 +712,8 @@ public static class AttrRegex { private HashSet depParamNameList; // ..list of deprecated physical param names private HashSet physParamNameList;// ..list of physical param names private HashSet physParamVarList; // ..list of phys-prm-related variables + private List R03DeprecatedEntries; // list of deprecated R03 entries, + // by version //............................................ // CONSTRUCTORS @@ -718,9 +730,8 @@ public static class AttrRegex { * @param version the string version of the format * @throws IOException for I/O errors */ - public ArgoFileSpecification(boolean fullSpec, String specDir, ArgoDataFile.FileType fType, String version) - throws IOException { - openSpecification(fullSpec, specDir, fType, version); + public ArgoFileSpecification(boolean fullSpec, ArgoDataFile.FileType fType, String version) throws IOException { + openSpecification(fullSpec, fType, version); } // ..end constructor // ............................................ @@ -749,6 +760,9 @@ public ArgoDimension getDimension(String name) { * @return The ArgoDimension object. Null if not defined. */ public ArgoDimension addExtraDimension(String name, int length) { + // =========== + // CK_0008 2/3 + // =========== ArgoDimension aDim = dimHash.get(name); if (aDim != null) { @@ -835,6 +849,16 @@ public ArrayList getPhysicalParamNames() { return new ArrayList(physParamNameList); } + /** + * Return list of deprecated physical parameters attributes key and values for + * the current version. + * + * @return + */ + public List getDeprecatedPhysicalParamsEntries() { + return new ArrayList(R03DeprecatedEntries); + } + /** * Returns the variable definition for the given variable * @@ -1010,18 +1034,17 @@ public AttrRegex getAttrRegex(String variableName, String attributeName) { * @param fType the file type * @param version the string specification version */ - public void openSpecification(boolean fullSpec, String specDir, ArgoDataFile.FileType fType, String version) - throws IOException { + public void openSpecification(boolean fullSpec, ArgoDataFile.FileType fType, String version) throws IOException { // .....initialize variables..... // ..specification name specName = fType.specType + ":v" + version.trim(); // ..file names - String prefix = specDir.trim() + "/argo-"; + String prefix = "argo-"; cdlFileName = prefix + fType.specType + "-spec-v" + version.trim() + ".cdl"; optFileName = prefix + fType.specType + "-spec-v" + version.trim() + ".opt"; - prmFileName = prefix + "physical_params-spec-v" + version.trim(); + r03DepPhysicalParamsTableName = prefix + "R03-deprecated-physical_params-spec"; prmFileNameAux = prefix + "physical_params-spec-v" + version.trim() + ".aux"; regFileName = prefix + fType.specType + "-spec-v" + version.trim() + ".attr_regexp"; @@ -1030,7 +1053,6 @@ public void openSpecification(boolean fullSpec, String specDir, ArgoDataFile.Fil log.debug("specName = {}", specName); log.debug("cdlFileName = '{}'", cdlFileName); log.debug("optFileName = '{}'", optFileName); - log.debug("prmFileName = '{}'", prmFileName); log.debug("prmFileNameAux = '{}'", prmFileNameAux); log.debug("regFileName = '{}'", regFileName); } @@ -1060,7 +1082,7 @@ public void openSpecification(boolean fullSpec, String specDir, ArgoDataFile.Fil // ..physical parameter file if (paramFileTypes.containsValue(fType)) { // ..this file-type contains physical parameter structures - log.info("parsing '" + prmFileName + "' for type '" + fType + "' (data-structures)"); + log.info("parsing R03 table for type '" + fType + "' (data-structures)"); try { status = parseParamFile(fType, version, false); } catch (IOException e) { @@ -1069,7 +1091,7 @@ public void openSpecification(boolean fullSpec, String specDir, ArgoDataFile.Fil } else { // ..this file-type only needs to know physical parameter names - log.info("parsing '" + prmFileName + "' for type '" + fType + "' (list-only)"); + log.info("parsing R03 table for type '" + fType + "' (list-only)"); try { status = parseParamFile(fType, version, true); } catch (IOException e) { @@ -1095,7 +1117,7 @@ public void openSpecification(boolean fullSpec, String specDir, ArgoDataFile.Fil if (fullSpec) { // ..initialize the reference tables.. - ArgoReferenceTable ref = new ArgoReferenceTable(specDir); + ArgoReferenceTable ref = new ArgoReferenceTable(); // ..attribute regex file -- optional status = parseAttrRegexFile(); @@ -1105,15 +1127,18 @@ public void openSpecification(boolean fullSpec, String specDir, ArgoDataFile.Fil // ..meta-data configuration parameter file if (fType == ArgoDataFile.FileType.METADATA && version.startsWith("3")) { - ConfigTech = new ArgoConfigTechParam(specDir, version, true, false); + ConfigTech = new ArgoConfigTechParam(version, true, false); } // ..technical parameter file if (fType == ArgoDataFile.FileType.TECHNICAL) { - ConfigTech = new ArgoConfigTechParam(specDir, version, false, true); + ConfigTech = new ArgoConfigTechParam(version, false, true); - // ..for each entry, automatically make * variables too - addOptionnalTechParamVariables(); + // ..for each entry, automatically make * variables + // too. version >= 3.1 only + if (version.compareTo("3.1") >= 0) { + addOptionnalTechParamVariables(); + } } } @@ -1160,8 +1185,24 @@ private void addPersistentGroups() { * variables contained in the groupe(if exists) "TECH_TIMESERIES". */ private void addOptionnalTechParamVariables() { + // ================ + // CK_0093 2/2 + // ================ // get tech param names (without unit) for (String techParamName : ConfigTech.getTechParamList()) { + /* + * TO DO : ADMT26 update + * (https://github.com/OneArgo/ArgoVocabs/issues/173#issuecomment-3480328611), + * issue 1 (Handling of terms with multiple extension/units for a same float), + * => like what is done for physical param create a virtual list of 5 (or 10?) + * techParamName_[N] by using function + * buildParamListForDuplicatePhysicalParameters and create these variables with + * the function below (createAndAddToGroupOptionnalTechParamVariable) + */ + createAndAddToGroupOptionnalTechParamVariable(techParamName); + } + // get tech param names from paramRegex + for (String techParamName : ConfigTech.getAllPossibleParamNames(ConfigTech.getTechParamRegex())) { createAndAddToGroupOptionnalTechParamVariable(techParamName); } @@ -1195,13 +1236,18 @@ private void createAndAddToGroupOptionnalTechParamVariable(String techParamName) // DataType.STRING); // } // - //2025-09 : as it may have multiple units (in fact all units from reference units table) and multiple long_name (defined in R14), we will have a special check for this. + // 2025-09 : as it may have multiple units (in fact all units from reference + // units table) and multiple long_name (defined in R14), we will have a special + // check for this. // For the generic test, we ignore these attributes. addAttr(techParamVar, long_name, ATTR_IGNORE_VALUE + "%15.1f", DataType.STRING); addAttr(techParamVar, units, ATTR_IGNORE_VALUE + "%15.1f", DataType.STRING); - + varHash.put(techParamName, techParamVar); // 2 - add it to the optionnal variables : + // ======= + // CK_0092 + // ======= optVar.add(techParamName); // 3 - create the group for the variable createGroup(groupMembers, techParamName); @@ -1251,111 +1297,110 @@ public boolean parseCdlFile() throws IOException { String specName; log.debug(".....parseCdlFile: start....."); - - // ..check the file - File f = new File(cdlFileName); - if (!f.isFile()) { - log.error("cdlFileName '" + cdlFileName + "' does not exist"); - throw new IOException("cdlFileName ('" + cdlFileName + "') does not exist"); - } else if (!f.canRead()) { - log.error("cdlFileName '" + cdlFileName + "' cannot be read"); - throw new IOException("cdlFileName ('" + cdlFileName + "') cannot be read"); - } - // ..open the CDL specification file - BufferedReader file = new BufferedReader(new FileReader(cdlFileName)); + try (InputStream in = SpecIO.getInstance().open(cdlFileName); + BufferedReader fileReader = new BufferedReader(new InputStreamReader(in, StandardCharsets.UTF_8));) { - log.info("parsing spec CDL file '" + cdlFileName + "'"); + log.info("parsing spec CDL file '" + cdlFileName + "'"); - // ..parse the file - while ((line = file.readLine()) != null) { - log.debug("line: '{}'", line); + // ..parse the file + while ((line = fileReader.readLine()) != null) { + log.debug("line: '{}'", line); - // ..check to see if there is a comment (has "//" in it) - Matcher mCmt = pComment.matcher(line); - if (mCmt.find()) { - log.debug("comment: '{}'", mCmt.group(1)); + // ..check to see if there is a comment (has "//" in it) + Matcher mCmt = pComment.matcher(line); + if (mCmt.find()) { + log.debug("comment: '{}'", mCmt.group(1)); - // ..if the line has "//@" parse the "special comment" - if (mCmt.group(1) != null) { - log.debug("special comment: '{}' '{}'", mCmt.group(1), mCmt.group(2)); + // ..if the line has "//@" parse the "special comment" + if (mCmt.group(1) != null) { + log.debug("special comment: '{}' '{}'", mCmt.group(1), mCmt.group(2)); - metaHash.put(mCmt.group(1), mCmt.group(2)); + metaHash.put(mCmt.group(1), mCmt.group(2)); - // if (mCmt.group(1).equalsIgnoreCase("PARAM")) { - // paramSet.add(mCmt.group(2)); - // } else { - // //..save the "special information" - // metaHash.put(mCmt.group(1), mCmt.group(2)); - // } + // if (mCmt.group(1).equalsIgnoreCase("PARAM")) { + // paramSet.add(mCmt.group(2)); + // } else { + // //..save the "special information" + // metaHash.put(mCmt.group(1), mCmt.group(2)); + // } + } } - } - line = mCmt.replaceAll(""); // ..remove "//" comments + line = mCmt.replaceAll(""); // ..remove "//" comments - // ..parse what is left after the comment has been removed + // ..parse what is left after the comment has been removed - Matcher mName = pOpenTag.matcher(line); - if (pBlankOrComment.matcher(line).matches()) { - // ..blank line (after comment removed) - do nothing + Matcher mName = pOpenTag.matcher(line); + if (pBlankOrComment.matcher(line).matches()) { + // ..blank line (after comment removed) - do nothing - } else if (mName.matches()) { // ..this is the header line - specName = mName.group(1); // ..get the name off the line + } else if (mName.matches()) { // ..this is the header line + specName = mName.group(1); // ..get the name off the line - if (log.isInfoEnabled()) { - log.info("spec Name: '" + specName + "'"); - } + if (log.isInfoEnabled()) { + log.info("spec Name: '" + specName + "'"); + } - } else if (pGlblAttr.matcher(line).matches()) { - parseGlblAttrLine(line); + } else if (pGlblAttr.matcher(line).matches()) { + parseGlblAttrLine(line); - } else if (pDimTag.matcher(line).matches()) { - // .."dimensions:" line - start of the dimension definitions + } else if (pDimTag.matcher(line).matches()) { + // .."dimensions:" line - start of the dimension definitions - inDim = true; - inVar = false; - log.debug("*** DIMENSIONS ***"); + inDim = true; + inVar = false; + log.debug("*** DIMENSIONS ***"); - } else if (pVarTag.matcher(line).matches()) { - // .."variables:" line - start of the variable definitions + } else if (pVarTag.matcher(line).matches()) { + // .."variables:" line - start of the variable definitions - inDim = false; - inVar = true; - log.debug("*** VARIABLES ***"); + inDim = false; + inVar = true; + log.debug("*** VARIABLES ***"); - } else if (pDataTag.matcher(line).matches() || pCloseTag.matcher(line).matches()) { - // ..the "data:" line or the closing "}" - // ..- nothing else needs to be done + } else if (pDataTag.matcher(line).matches() || pCloseTag.matcher(line).matches()) { + // ..the "data:" line or the closing "}" + // ..- nothing else needs to be done - inDim = false; - inVar = false; - log.debug("*** DATA ***"); + inDim = false; + inVar = false; + log.debug("*** DATA ***"); - break; + break; - } else if (inDim) { - // ..in the "dimensions" section - parse dimesion definitions + } else if (inDim) { + // ..in the "dimensions" section - parse dimesion definitions - if (!parseDimLine(line)) { - file.close(); - return false; - } + if (!parseDimLine(line)) { + fileReader.close(); + return false; + } - } else if (inVar) { - // ..in the "variables" section - parse variables and attributes + } else if (inVar) { + // ..in the "variables" section - parse variables and attributes - if (!parseVarLine(line)) { - file.close(); - return false; + if (!parseVarLine(line)) { + fileReader.close(); + return false; + } } - } - } // ..end while (file.readLine() + } // ..end while (file.readLine() - file.close(); - log.debug(".....parseCdlFile: end....."); + fileReader.close(); + log.debug(".....parseCdlFile: end....."); + + return true; + + } catch (FileNotFoundException e) { + log.error("cdlFileName '" + cdlFileName + "' does not exist"); + throw e; + } catch (IOException e) { + log.error("cdlFileName '" + cdlFileName + "' cannot be read"); + throw e; + } - return true; } // ..end parseCdlFile // ...................................................... @@ -1374,6 +1419,9 @@ private boolean parseDimLine(String line) { m = pDimPattern.matcher(line); if (m.matches()) { + // =========== + // CK_0008 1/3 + // =========== Pattern pattern = null; name = m.group(1); @@ -1662,102 +1710,97 @@ public boolean parseOptFile() throws IOException { log.debug(".....parseOptFile: start....."); - // ..check the file - File f = new File(optFileName); - if (!f.isFile()) { - // ..the optional parameter file is itself optional + try (InputStream in = SpecIO.getInstance().open(optFileName); + BufferedReader fileReader = new BufferedReader(new InputStreamReader(in, StandardCharsets.UTF_8));) { - optionalVars = false; - return false; - } - - if (!f.canRead()) { - log.error("optFileName '" + optFileName + "' exists but cannot be read"); - throw new IOException("optFileName ('" + optFileName + "') exists but cannot be read"); - } + // ..file exists and it can be read + // ..open it - // ..file exists and it can be read - // ..open it + // ..a "variable group" defined here over-rides those defined elsewhere + // ..for instance, parseParam sets "variable groups" for variables + // .. these will over-ride those + HashSet newGroup = new HashSet(); - BufferedReader file = new BufferedReader(new FileReader(optFileName)); + // ..parse the file + log.info("parsing \"option\" file '" + optFileName + "'"); - // ..a "variable group" defined here over-rides those defined elsewhere - // ..for instance, parseParam sets "variable groups" for variables - // .. these will over-ride those - HashSet newGroup = new HashSet(); + while ((line = fileReader.readLine()) != null) { + log.debug("line = '" + line + "'"); - // ..parse the file - log.info("parsing \"option\" file '" + optFileName + "'"); - - while ((line = file.readLine()) != null) { - log.debug("line = '" + line + "'"); + if (pBlankOrComment.matcher(line).matches()) { + continue; + } - if (pBlankOrComment.matcher(line).matches()) { - continue; - } + Matcher m = pOptVar.matcher(line); - Matcher m = pOptVar.matcher(line); + if (!m.matches()) { + fileReader.close(); + message = "Invalid line in '" + optFileName + "': '" + line + "'"; + throw new IOException("Invalid line in '" + optFileName + "'"); + } - if (!m.matches()) { - file.close(); - message = "Invalid line in '" + optFileName + "': '" + line + "'"; - throw new IOException("Invalid line in '" + optFileName + "'"); - } + // ..2 line format options: + // .. 1) "element-name" --- variable/dimension not in a group + // .. 2) "group-name : element-name" --- variable is a member of group + // .. in this case, the group-name is also an element name + String group = m.group(1); + String element = m.group(2); + log.debug("group, variable = '{}' '{}'", group, element); + + if (!newGroup.contains(group)) { + // ..first time this "primary name" (group or element) was seen + // ..in the option file + + // ..over-rides any associations that pre-existed this OPT file + // ..- removes any group mapped to this name + // ..- removes any existing group with this name + + if (varGroup.containsKey(group)) { + varGroup.remove(group); + log.debug("remove existing var-to-group mapping: variable '{}'", group); + } - // ..2 line format options: - // .. 1) "element-name" --- variable/dimension not in a group - // .. 2) "group-name : element-name" --- variable is a member of group - // .. in this case, the group-name is also an element name - String group = m.group(1); - String element = m.group(2); - log.debug("group, variable = '{}' '{}'", group, element); - - if (!newGroup.contains(group)) { - // ..first time this "primary name" (group or element) was seen - // ..in the option file - - // ..over-rides any associations that pre-existed this OPT file - // ..- removes any group mapped to this name - // ..- removes any existing group with this name - - if (varGroup.containsKey(group)) { - varGroup.remove(group); - log.debug("remove existing var-to-group mapping: variable '{}'", group); - } + if (groupMembers.containsKey(group)) { + groupMembers.remove(group); + log.debug("remove existing group '{}'", group); + } - if (groupMembers.containsKey(group)) { - groupMembers.remove(group); - log.debug("remove existing group '{}'", group); + newGroup.add(group); } - newGroup.add(group); - } + if (element == null) { + // ..format (1) -- not part of a group ("group" is the element-name) + optVar.add(group); // ..make element optional + log.debug("add optional variable '{}' (no group)", group); - if (element == null) { - // ..format (1) -- not part of a group ("group" is the element-name) - optVar.add(group); // ..make element optional - log.debug("add optional variable '{}' (no group)", group); + } else { + // ..format (2) -- part of a group + if (!groupMembers.containsKey(group)) { // ..new group, initialize + groupMembers.put(group, new HashSet()); + log.debug("create group '{}'", group); + } - } else { - // ..format (2) -- part of a group - if (!groupMembers.containsKey(group)) { // ..new group, initialize - groupMembers.put(group, new HashSet()); - log.debug("create group '{}'", group); - } + varGroup.put(element, group); // ..associate this element with the group + groupMembers.get(group).add(element); // ..add this element to the group - varGroup.put(element, group); // ..associate this element with the group - groupMembers.get(group).add(element); // ..add this element to the group + optVar.add(element); // ..make element optional - optVar.add(element); // ..make element optional + log.debug("add optional variable '{}' to group '{}'", element, group); + } + } // ..end while (readLine) - log.debug("add optional variable '{}' to group '{}'", element, group); - } - } // ..end while (readLine) + fileReader.close(); + log.debug(".....parseOptFile: end....."); + return true; - file.close(); - log.debug(".....parseOptFile: end....."); + } catch (FileNotFoundException e) { + optionalVars = false; + return false; + } catch (IOException e) { + log.error("optFileName '" + optFileName + "' exists but cannot be read"); + throw e; + } - return true; } // ..end parseOptFile // ............................................................ @@ -1779,100 +1822,99 @@ public boolean parseAttrRegexFile() throws IOException { log.debug(".....parseAttrRegexFile: start....."); - // ..check the file - File f = new File(regFileName); - if (!f.isFile()) { - // ..the optional parameter file is itself optional + try (InputStream in = SpecIO.getInstance().open(regFileName); + BufferedReader fileReader = new BufferedReader(new InputStreamReader(in, StandardCharsets.UTF_8));) { - attrRegex = false; - return false; - } + // ..file exists and it can be read + // ..open it - if (!f.canRead()) { - log.error("regFileName '" + regFileName + "' exists but cannot be read"); - throw new IOException("regFileName ('" + regFileName + "') exists but cannot be read"); - } + // ..parse the file + log.info("parsing \"attr_regexp\" file '" + regFileName + "'"); - // ..file exists and it can be read - // ..open it + // ..define the Hash for the information - BufferedReader file = new BufferedReader(new FileReader(regFileName)); + while ((line = fileReader.readLine()) != null) { + log.debug("line = '" + line + "'"); - // ..parse the file - log.info("parsing \"attr_regexp\" file '" + regFileName + "'"); + if (pBlankOrComment.matcher(line).matches()) { + continue; - // ..define the Hash for the information + } else { + Matcher m = pAttrRegex.matcher(line); - while ((line = file.readLine()) != null) { - log.debug("line = '" + line + "'"); + if (!m.matches()) { + fileReader.close(); + message = "Invalid line in '" + regFileName + "': '" + line + "'"; + throw new IOException("Invalid line in '" + regFileName + "'"); + } - if (pBlankOrComment.matcher(line).matches()) { - continue; + // ..line format options: + // .. variable:attribute = regex; [WARN|NOWARN] + // .. where the "[...]" is optional (the bracket are NOT included on the line) + String var_attr = m.group(1); + String var = m.group(2); + String attr = m.group(3); + String regex = m.group(4); + String warn = m.group(5); + log.debug("variable:attribute, var, attr, regex, warn = '{}', '{}', '{}', '{}', '{}'", var_attr, + var, attr, regex, warn); + + if (regex.length() == ATTR_SPECIAL_LENGTH && regex.matches(ATTR_SPECIAL_REGEX)) { + // ..this is a attribute special pattern: replace existing setting + ArgoVariable aVar = varHash.get(var); + if (aVar == null) { + fileReader.close(); + throw new IOException( + "Invalid variable name in line '" + line + "' in '" + regFileName + "'"); + } - } else { - Matcher m = pAttrRegex.matcher(line); + addAttr(aVar, attr, regex, DataType.STRING); + log.debug("attribute special pattern (not a regex): over-write existing"); - if (!m.matches()) { - file.close(); - message = "Invalid line in '" + regFileName + "': '" + line + "'"; - throw new IOException("Invalid line in '" + regFileName + "'"); - } + } else { + // ..treat it as a regular expression + Pattern p; + try { + p = Pattern.compile(regex); + + } catch (Exception e) { + fileReader.close(); + log.error("Attr Regex compile error: " + e); + message = "Invalid Regex: '" + line + "'"; + throw new IOException("Invalid regex in '" + regFileName + "'"); + } - // ..line format options: - // .. variable:attribute = regex; [WARN|NOWARN] - // .. where the "[...]" is optional (the bracket are NOT included on the line) - String var_attr = m.group(1); - String var = m.group(2); - String attr = m.group(3); - String regex = m.group(4); - String warn = m.group(5); - log.debug("variable:attribute, var, attr, regex, warn = '{}', '{}', '{}', '{}', '{}'", var_attr, var, - attr, regex, warn); - - if (regex.length() == ATTR_SPECIAL_LENGTH && regex.matches(ATTR_SPECIAL_REGEX)) { - // ..this is a attribute special pattern: replace existing setting - ArgoVariable aVar = varHash.get(var); - if (aVar == null) { - file.close(); - throw new IOException("Invalid variable name in line '" + line + "' in '" + regFileName + "'"); - } + AttrRegex a = new AttrRegex(); + a.pattern = p; - addAttr(aVar, attr, regex, DataType.STRING); - log.debug("attribute special pattern (not a regex): over-write existing"); + if (warn == null || warn.equals("NOWARN")) { + log.debug("...nowarn"); + a.warn = false; + } else { // ..the pattern will only match "NOWARN" or "WARN" + log.debug("...warn"); + a.warn = true; + } - } else { - // ..treat it as a regular expression - Pattern p; - try { - p = Pattern.compile(regex); - - } catch (Exception e) { - file.close(); - log.error("Attr Regex compile error: " + e); - message = "Invalid Regex: '" + line + "'"; - throw new IOException("Invalid regex in '" + regFileName + "'"); + regexHash.put(var_attr, a); } + } + } // ..end while (readLine) - AttrRegex a = new AttrRegex(); - a.pattern = p; + fileReader.close(); + log.debug(".....parseAttrRegexFile: end....."); - if (warn == null || warn.equals("NOWARN")) { - log.debug("...nowarn"); - a.warn = false; - } else { // ..the pattern will only match "NOWARN" or "WARN" - log.debug("...warn"); - a.warn = true; - } + return true; - regexHash.put(var_attr, a); - } - } - } // ..end while (readLine) + } catch (FileNotFoundException e) { + // ..the optional parameter file is itself optional - file.close(); - log.debug(".....parseAttrRegexFile: end....."); + attrRegex = false; + return false; + } catch (IOException e) { + log.error("regFileName '" + regFileName + "' exists but cannot be read"); + throw e; + } - return true; } // ..end parseAttrRegexFile // ........................................................ @@ -1881,8 +1923,8 @@ public boolean parseAttrRegexFile() throws IOException { /** * Parses the list of physical parameters of the specification * - * Reads two files: prmFileName - the primary list of physcial parameter names - * prmFileNameAux - contains "auxilliary" setting for certain parameters + * Reads two files: R03.jsonld - the primary list of physcial parameter names + * and prmFileNameAux - contains "auxilliary" setting for certain parameters * * @param fileType The allowed physical parameters are dependent on the file * type. @@ -1927,71 +1969,7 @@ public boolean parseParamFile(ArgoDataFile.FileType fileType, String version, bo } // ..................get the Auxilliary (special) settings.................... - // ..initialize special settings - - String errComment = null; - String errLongName = null; - String presAxis = new String("Z"); - String pres_adjAxis = new String("Z"); - - // ..open the file - File f = new File(prmFileNameAux); - if (!f.isFile()) { - log.error("prmFileName '" + prmFileNameAux + "' does not exist"); - throw new IOException("prmFileName ('" + prmFileNameAux + "') does not exist"); - } else if (!f.canRead()) { - log.error("prmFileName '" + prmFileNameAux + "' cannot be read"); - throw new IOException("prmFileName ('" + prmFileNameAux + "') cannot be read"); - } - - BufferedReader file = new BufferedReader(new FileReader(prmFileNameAux)); - - // ..parse the file - log.info("parsing \"auxilliary parameter\" file '" + prmFileNameAux + "'"); - - // ..read through the file - String line; - while ((line = file.readLine()) != null) { - log.debug("line: '" + line + "'"); - - if (pBlankOrComment.matcher(line).matches()) { - continue; - } - - // .....parse the line into individual entries..... - String st[] = line.split("\\|"); - - // ..it's not a valid parameter definition line - // ..check for special settings - - if (st[0].trim().equals("PRES:axis")) { - presAxis = st[1].trim(); - log.debug("pres:axis line : '" + presAxis + "'"); - continue; - - } else if (st[0].trim().equals("PRES_ADJUSTED:axis")) { - pres_adjAxis = st[1].trim(); - log.debug("pres_adjusted:axis line : '" + pres_adjAxis + "'"); - continue; - - } else if (st[0].trim().equals("ADJUSTED_ERROR:comment")) { - errComment = st[1].trim(); - log.debug("adjusted_error:comment line : '" + errComment + "'"); - continue; - - } else if (st[0].trim().equals("ADJUSTED_ERROR:long_name")) { - errLongName = st[1].trim(); - log.debug("adjusted_error:long_name line : '" + errLongName + "'"); - continue; - - } else { - file.close(); - log.error("Invalid line in '" + prmFileName + "': '" + line + "'"); - throw new IOException("Invalid line in '" + prmFileName + "': '" + line + "'"); - } - } // ..end while read(auxilliary param file) - - file.close(); + AuxilliarySettings auxilliarySettings = parseAuxilliarySettings(); // ........................read the MAIN parameter file....................... @@ -2028,781 +2006,1493 @@ public boolean parseParamFile(ArgoDataFile.FileType fileType, String version, bo isPost3_0 = true; } - // ..open the file - f = new File(prmFileName); - if (!f.isFile()) { - log.error("prmFileName '" + prmFileName + "' does not exist"); - throw new IOException("prmFileName ('" + prmFileName + "') does not exist"); - } else if (!f.canRead()) { - log.error("prmFileName '" + prmFileName + "' cannot be read"); - throw new IOException("prmFileName ('" + cdlFileName + "') cannot be read"); - } + // get the deprecated R03 entries + parseR03DeprecatedTable(version); - file = new BufferedReader(new FileReader(prmFileName)); + // Open and parse NVS table R03 to build PARAM specifiations : + parseR03parameterTable(fileType, version, listOnly, dimPQc, dimParam, auxilliarySettings, isCoreProf, isBioProf, + isOldCoreTraj, isOldBioTraj, isTraj, isPost3_0); - // ..parse the file - log.info("parsing \"parameter\" file '{}'", prmFileName); + log.debug(".....parseParamFile: end....."); - // ..read through the file - // String line; - int nLine = 0; - while ((line = file.readLine()) != null) { - nLine++; - log.debug("line({}): '{}'", line); + return true; - if (pBlankOrComment.matcher(line).matches()) { - continue; - } + } // end parseParamFile - // .....parse the line into individual entries..... - String st[] = line.split("\\|"); + /** + * Parse the R03 table to extract PARAM specifications (param name, attributes, + * category, etc.) and build the * variable specifications and add it to + * the list of physical parameter. + * + * If an error is detected inside the table (ex: missing attribute for a + * parameter, forbidden value for an attribute, duplicate name, etc.), a warning + * will be edited in logs and the parameter will not be taken into account but + * the File Checker will continue to run. + * + * @param fileType + * @param version + * @param listOnly + * @param dimPQc + * @param dimParam + * @param auxilliarySettings + * @param isCoreProf + * @param isBioProf + * @param isOldCoreTraj + * @param isOldBioTraj + * @param isTraj + * @param isPost3_0 + * @throws IOException + */ + private void parseR03parameterTable(ArgoDataFile.FileType fileType, String version, boolean listOnly, + ArgoDimension[] dimPQc, ArgoDimension[] dimParam, AuxilliarySettings auxilliarySettings, boolean isCoreProf, + boolean isBioProf, boolean isOldCoreTraj, boolean isOldBioTraj, boolean isTraj, boolean isPost3_0) + throws IOException { + // =========== + // CK_0072 2/2 + // =========== + for (SkosConcept physParamEntry : ArgoNVSReferenceTable.PARAMETER_TABLE.getConceptMembersByAltLabelMap() + .values()) { - if (st.length < nParamFields) { - file.close(); - log.error("too few columns on line {} in '{}'", nLine, prmFileName); - throw new IOException("Too few columns on line " + nLine + " in '" + prmFileName + "': '" + line + "'"); - } + try { + // parse attributes from definition field : + Map physParamAttributes = NvsDefinitionParser.parseAttributes("Local_Attributes", + physParamEntry.getDefinition()); + Map physParamProperties = NvsDefinitionParser.parseAttributes("Properties", + physParamEntry.getDefinition()); + + String prm = physParamEntry.getAltLabel().trim(); // ..parameter name - NVS altLabel + boolean isDeprecated = physParamEntry.isDeprecated(); + // physical parameter's attributes from definition field : + String prmLName = getOrEmptyStringFromMap(physParamAttributes, "long_name"); + String prmSName = getOrEmptyStringFromMap(physParamAttributes, "standard_name"); + String prmUnits = getOrEmptyStringFromMap(physParamAttributes, "units"); + String prmVmin = getOrEmptyStringFromMap(physParamAttributes, "valid_min"); + String prmVmax = getOrEmptyStringFromMap(physParamAttributes, "valid_max"); + String prmFill = getOrEmptyStringFromMap(physParamAttributes, "fill_value"); + // physical parameter's properties from definition field : + String prmType = getPropertyValueFromSpec(prm, physParamProperties, "data_type"); + String[] extraDims = getPropertyListValuesFromSpec(prm, physParamProperties, "extra_dim"); + String prmCategory = getPropertyValueFromSpec(prm, physParamProperties, "category"); + + // deal with empty or "-" attributes (only for >3.0 version) + // =========== + // CK_0022 2/2 + // =========== +// if (isPost3_0) { // 2026: cannot do the distinction with the use of NVS table + prmSName = replaceAttributeIfNotAllowed(prmSName); + prmVmin = replaceAttributeIfNotAllowed(prmVmin); + prmVmax = replaceAttributeIfNotAllowed(prmVmax); + prmLName = replaceAttributeIfToBeIgnored(prmLName); +// } + + log.debug("parsed: {}|{}|{}|{}|{}|deprecated : {}|{}|", prm, prmType, prmLName, prmSName, prmUnits, + prmVmin, prmVmax, isDeprecated, prmFill); + + // For a given physParam, we build a virutal list of allowed physParam's names + // to take into account duplicate sensor. + // ex : TEMP, TEMP_1, TEMP_2, TEMP_3,... + String[] prmList = buildParamListForDuplicatePhysicalParameters(prm, NUMBER_ALLOWED_DUPLICATE_SENSOR); + + // ...LIST-ONLY MODE: grab the param name and continue with the next + // physParamEntry + if (listOnly) { + for (String prmName : prmList) { + if (!physParamNameList.contains(prmName)) {// ..new param name + physParamNameList.add(prmName); + if (isDeprecated) { + depParamNameList.add(prmName); + } + + physParamNameList.add(prmName + "_STD"); + physParamNameList.add(prmName + "_MED"); - String prm = st[1].trim(); // ..parameter name - String prmLName = st[3].trim(); // ..long_name - String prmSName = st[4].trim(); // ..(cf_)standard_name - String prmUnits = st[6].trim(); // ..units - String prmVmin = st[7].trim(); // ..value min - String prmVmax = st[8].trim(); // ..value max - String prmCategory = st[9].trim(); // .."c", "b", "ic", "ib" - String prmComment = st[14].trim(); // ..to be searched for extra dimension - String prmStatus = st[16].trim(); // .."active", "deprecated", etc - String prmFill = st[17].trim(); // ..fillValue - String prmType = st[18].trim(); // ..data type - - // ..status codes of " " (blank), "active", "deprecated" are allowed - - boolean isDeprecated = false; - if (prmStatus.length() > 0) { - if (!pActive.matcher(prmStatus).matches()) { - if (!pDeprecated.matcher(prmStatus).matches()) { - // ..not allowed - log.debug("prm is not valid: '{}'", prm); - continue; - } else {// ..it is deprecated - log.debug("deprecated prm: '{}'", prm); - isDeprecated = true; + } else { + // ..duplicate name is a no, no + throw new R03ParameterException("Duplicate param name (R03 table) :" + "'" + prm + + "'. This parameter will be ignored"); + } } + continue; } - } - // ..set any special handling instructions for v3.1 and later files + // check if there is an "extra dimension" + // at least for now, this is encoded in the data type + boolean prmExtra = extraDims != null && extraDims.length > 0; + + // ..check the data type + if (!prmType.equals("double") && !prmType.equals("float") && !prmType.equals("short")) { + + throw new R03ParameterException("Invalid data type = '" + prmType + "' for parameter " + prm + + " in R03 table. This parameter will be ignored in specifications definition."); - if (isPost3_0) { - if (prmSName.length() == 0 || prmSName.equals("-")) { - prmSName = ATTR_NOT_ALLOWED; } - if (prmVmin.length() == 0 || prmVmin.equals("-")) { - prmVmin = ATTR_NOT_ALLOWED; + DataType ncDataType = DataType.getType(prmType); + + // symbolic NETCDF fill values replacement + prmFill = checkAndRepacleWithNcFillTypes(prm, prmFill); + + // check the PrmCat -- "c" = core, "b" = bio, "ic/ib" = intermediate -> core, + // bio + ParameterCategoryResult categoryAnalysisResults = analyzeParameterCategory(prmCategory, prm, fileType, + isCoreProf, isBioProf, isTraj, isOldCoreTraj, isOldBioTraj); + boolean keep = categoryAnalysisResults.keep; + boolean opt = categoryAnalysisResults.opt; + boolean CORE = categoryAnalysisResults.CORE; + boolean BIO = categoryAnalysisResults.BIO; + + // Build variables. For each entry, automatically make * + // variables too : + for (String prmName : prmList) { + + buildParamVariables(fileType, version, prmName, dimPQc, dimParam, + auxilliarySettings.getErrComment(), auxilliarySettings.getErrLongName(), + auxilliarySettings.getPresAxis(), auxilliarySettings.getPresAdjAxis(), prm, isDeprecated, + prmLName, prmSName, prmUnits, prmVmin, prmVmax, prmFill, prmList, prmExtra, ncDataType, + keep, opt, CORE, BIO); + opt = true; // After the first iteration in prmList, opt is put to true as all virtuals _ + // variables for duplicate sensor are optionnals. + + } // end for (prmList) + } catch (R03ParameterException e) { + // v3.0.0 : not a file checker failure, just ignore the parameter with a warn + log.warn(e.getMessage()); + } + } + } + + /** + * for properties values, need to check frist the deprecated physical params + * table and if no entries detected for the considered parameter and format + * version, check the reference R03 NVS table. + * + * @param string a properties name (data_type, category, extra_dim= + * @return + */ + private String getPropertyValueFromSpec(String paramName, Map physParamProperties, + String propertyName) { + // get the parsed table + List entries = getDeprecatedPhysicalParamsEntries(); + // seek if an entry is relevant (paramName / propertyName) + R03DeprecatedEntry entryFound = entries.stream() + .filter(e -> e.getParamName().equals(paramName) && e.getAttributeKey().equals(propertyName)).findFirst() + .orElse(null); + + if (entryFound == null) { + // nothing in deprecated table, switch to the reference NVS table : + return getOrEmptyStringFromMap(physParamProperties, propertyName); + } + // return the value specified in the deprecated table + return entryFound.getOldValue(); + } + + private String[] getPropertyListValuesFromSpec(String paramName, Map physParamProperties, + String propertyName) { + List entries = getDeprecatedPhysicalParamsEntries(); + + R03DeprecatedEntry entryFound = entries.stream() + .filter(e -> e.getParamName().equals(paramName) && e.getAttributeKey().equals(propertyName)).findFirst() + .orElse(null); + + if (entryFound == null) { + return getValuesListFromParameterAttribute(getOrEmptyStringFromMap(physParamProperties, propertyName)); + } + + return getValuesListFromParameterAttribute(entryFound.getOldValue()); + + } + + /** + * Parses the auxiliary settings file and extracts specification attributes. For + * ADJUSED_ERROR, there is special attributes (comment or long_bname) that are + * not defined in physical parameters table (R03). THis file also specify a + * special value for attribute axis for PRES parameter. This file is versioned + * and must but updated with each new version of specification. + * + * + *

    + * This method reads a pipe-delimited configuration file containing auxiliary + * settings for pressure axis and adjusted error parameters. Blank lines and + * comments are ignored during parsing. + *

    + * + *

    + * The file format expects lines in the following format: {@code KEY|VALUE} + *

    + * + *

    + * Supported keys are: + *

    + *
      + *
    • {@code PRES:axis} - Pressure axis identifier
    • + *
    • {@code PRES_ADJUSTED:axis} - Adjusted pressure axis identifier
    • + *
    • {@code ADJUSTED_ERROR:comment} - Comment for adjusted error
    • + *
    • {@code ADJUSTED_ERROR:long_name} - Long name for adjusted error
    • + *
    + * + *

    + * Default values for {@code presAxis} and {@code presAdjAxis} are set to "Z" if + * not specified in the file. + *

    + * + * @return an {@link AuxilliarySettings} object populated with the parsed values + * + * @throws FileNotFoundException if the auxiliary settings file does not exist + * @throws IOException if the file cannot be read, contains malformed + * lines, or contains unrecognized keys + * + * @see AuxilliarySettings + */ + private AuxilliarySettings parseAuxilliarySettings() throws IOException { + // ..initialize special settings + AuxilliarySettings auxilliarySettings = new AuxilliarySettings(); + + // ..open the file + try (InputStream in = SpecIO.getInstance().open(prmFileNameAux); + BufferedReader fileReader = new BufferedReader(new InputStreamReader(in, StandardCharsets.UTF_8));) { + + // ..parse the file + log.info("parsing \"auxilliary parameter\" file '" + prmFileNameAux + "'"); + + // ..read through the file + String line; + while ((line = fileReader.readLine()) != null) { + log.debug("line: '" + line + "'"); + + if (pBlankOrComment.matcher(line).matches()) { + continue; } - if (prmVmax.length() == 0 || prmVmax.equals("-")) { - prmVmax = ATTR_NOT_ALLOWED; + + // .....parse the line into individual entries..... + String parts[] = line.split("\\|"); + if (parts.length < 2) { + // ..it's not a valid parameter definition line + throw new IOException("Malformed line in '" + prmFileNameAux + "': '" + line + "'"); } - if (prmLName.length() == 0 || prmLName.equals("-")) { - prmVmax = ATTR_IGNORE; + + String key = parts[0].trim(); + String value = parts[1].trim(); + + // ..check for special settings + switch (key) { + case "PRES:axis": + auxilliarySettings.setPresAxis(value); + log.debug("pres:axis line : '" + value + "'"); + break; + case "PRES_ADJUSTED:axis": + auxilliarySettings.setPresAdjAxis(value); + log.debug("pres_adjusted:axis line : '" + value + "'"); + break; + case "ADJUSTED_ERROR:comment": + auxilliarySettings.setErrComment(value); + log.debug("adjusted_error:comment line : '" + value + "'"); + break; + case "ADJUSTED_ERROR:long_name": + auxilliarySettings.setErrLongName(value); + log.debug("adjusted_error:long_name line : '" + value + "'"); + break; + default: + log.error("Invalid line in '" + prmFileNameAux + "': '" + line + "'"); + throw new IOException("Invalid line in '" + prmFileNameAux + "': '" + line + "'"); } - } - log.debug("parsed: {}|{}|{}|{}|{}|{}|{}|", prm, prmType, prmLName, prmSName, prmUnits, prmVmin, prmVmax, - prmStatus, prmFill); + } // ..end while read(auxilliary param file) - // ..array of automatic "number" variables + } catch (FileNotFoundException e) { + log.error("prmFileName '" + prmFileNameAux + "' does not exist"); + throw e; + } catch (IOException e) { + log.error("prmFileName '" + prmFileNameAux + "' cannot be read"); + throw e; + } - String prmList[] = new String[4]; - prmList[0] = prm; - // ADMT-25 : Always add an underscore to numbering duplicate sensor/parameters - // variable - prmList[1] = prm + "_2"; - prmList[2] = prm + "_3"; - prmList[3] = prm + "_4"; + return auxilliarySettings; + } - // ...LIST-ONLY MODE: grab the param name and continue with the next line - if (listOnly) { - for (String prmName : prmList) { - if (!physParamNameList.contains(prmName)) {// ..new param name - physParamNameList.add(prmName); - if (isDeprecated) { - depParamNameList.add(prmName); - } + /** + * Parses the deprecated parameter table and returns only the entries matching + * the given version. + * + *

    + * Lines starting with {@code //} and empty lines are ignored. Each returned + * entry represents a (parameter, attribute, deprecated value) triplet that was + * valid in a previous version but is no longer accepted in the current + * reference version but should only raise a warning and not an error. + * + * @param path path to the deprecated table file + * @param version version filter, e.g. {@code "[3.0]"} + * @return list of deprecated entries for the given version, empty if none match + * @throws IOException if the file cannot be read + */ + private void parseR03DeprecatedTable(String version) throws IOException { + List entries = new ArrayList<>(); - physParamNameList.add(prmName + "_STD"); - physParamNameList.add(prmName + "_MED"); + try (InputStream in = SpecIO.getInstance().open(r03DepPhysicalParamsTableName); + BufferedReader br = new BufferedReader(new InputStreamReader(in, StandardCharsets.UTF_8));) { - } else { // ..duplicate name is a no, no - log.error("Duplicate param name '" + prmFileName + "': '" + line + "'"); - file.close(); - throw new IOException("Duplicate param name in '" + prmFileName + "': '" + line + "'"); - } + String line; + while ((line = br.readLine()) != null) { + line = line.trim(); + if (line.isEmpty() || line.startsWith("//")) { + continue; + } + + // .....parse the line into individual entries..... + String[] c = line.split("\\|"); + if (c.length < 6) { + continue; // not a valid entries as we expect at least 6 columns (deprecation date not + // used here) + } + if (!containsVersion(c[5].trim(), version)) { + continue; // we extract only for the current version } - continue; + + String attributeKey = c[1].trim(); + String oldValue = normalizeValue(attributeKey, c[2].trim()); + String status = c[3].trim(); + String message = c[4].trim(); + + // virtually add the same entries for duplicate param : + String[] prmList = buildParamListForDuplicatePhysicalParameters(c[0].trim(), + NUMBER_ALLOWED_DUPLICATE_SENSOR); + for (String paramName : prmList) { + addParamEntries(entries, paramName, attributeKey, oldValue, status, message, version); + + } + } + } + R03DeprecatedEntries = entries; + } + + /** + * Adds all R03DeprecatedEntry variants for a given parameter name, following + * the derivation rules (ADJUSTED, ADJUSTED_ERROR, STD/MED suffixes). + */ + private void addParamEntries(List entries, String paramName, String attributeKey, + String oldValue, String status, String message, String version) { + + // Always: base + ADJUSTED + List names = new ArrayList<>(List.of(paramName, paramName + "_ADJUSTED")); - // ..check if there is an "extra dimension" - // ..at least for now, this is encoded in the data type - boolean prmExtra = false; - if (pN_VALUES.matcher(prmComment).matches()) { - prmExtra = true; - log.debug("variable with extra dimension: type = '{}'", prmType); + // ADJUSTED_ERROR — excluded for min/max/name attributes + boolean excludeFromAdjustedError = attributeKey.equals("valid_min") || attributeKey.equals("valid_max") + || attributeKey.equals("standard_name") + || (version.compareTo("3.1") >= 0 && attributeKey.equals("long_name")); + + if (!excludeFromAdjustedError) { + names.add(paramName + "_ADJUSTED_ERROR"); + } + + // STD & MED family — units and fillValue share the same oldValue + if (attributeKey.equals("units") || attributeKey.equals("fillValue")) { + names.addAll(List.of(paramName + "_STD", paramName + "_MED", paramName + "_STD_ADJUSTED", + paramName + "_MED_ADJUSTED", paramName + "_STD_ADJUSTED_ERROR", paramName + "_MED_ADJUSTED_ERROR")); + } + + names.forEach(name -> { + entries.add(new R03DeprecatedEntry(name, attributeKey, oldValue, status, message)); + // special case for "comment" attribute prior to v2.3 + if (version.compareTo("2.3") < 0 && attributeKey.equals("standard_name")) { + entries.add(new R03DeprecatedEntry(name, "comment", oldValue, status, message)); } + }); + + // long_name — STD/MED variants get a prefixed oldValue + if (attributeKey.equals("long_name")) { + Map longNameVariants = Map.of(paramName + "_STD", "Standard deviation of " + oldValue, + paramName + "_MED", "Median value of " + oldValue, paramName + "_STD_ADJUSTED", + "Standard deviation of " + oldValue, paramName + "_MED_ADJUSTED", "Median value of " + oldValue); + longNameVariants.forEach((name, derivedValue) -> entries + .add(new R03DeprecatedEntry(name, attributeKey, derivedValue, status, message))); + } + } - // ..check the data type - String tmp = prmType; - switch (prmType) { - case "NC_DOUBLE": - prmType = "double"; - break; - case "NC_FLOAT": - prmType = "float"; - break; - case "NC_SHORT": - prmType = "short"; - break; + /** + * Normalizes an attribute value for consistent comparison. + * + *

    + * For numeric attributes ({@code value_min}, {@code value_max}, + * {@code fillValue}, {@code resolution}), strips any trailing + * {@code f}/{@code F} float suffix and parses the result as a double, so that + * {@code "-2.f"} and {@code "-2.0"} are considered equal. Non-numeric strings + * such as {@code "NC_FILL_SHORT"} or {@code "-"} are returned as-is. + * + *

    + * For all other attributes, the value is returned trimmed without any + * transformation. + * + * @param attributeKey the attribute name, e.g. {@code "value_min"}, + * {@code "long_name"} + * @param value the raw value to normalize + * @return the normalized value, or {@code null} if {@code value} is + * {@code null} + */ + private static String normalizeValue(String attributeKey, String value) { + if (value == null) { + return null; + } + String v = value.trim(); + + if (!NUMERIC_ATTRS.contains(attributeKey)) { + return v; + } + + if (v.endsWith("f") || v.endsWith("F")) { + v = v.substring(0, v.length() - 1); + } + + try { + return String.valueOf(Double.parseDouble(v)); + } catch (NumberFormatException e) { + return v; // NC_FILL_SHORT, NC_FILL_DOUBLE, "-", etc. + } + } + + private static boolean containsVersion(String versionField, String version) { + // versionField ex: "[2.2,2.3]" or "[3.0]" + // Strip brackets then split on comma + String stripped = versionField.replaceAll("[\\[\\]\\s]", ""); + return Arrays.asList(stripped.split(",")).contains(version.replaceAll("[\\[\\]\\s]", "")); + } + + /** + * For each parameter in R03 table and the related _ (for duplicate + * sensor), build the netcdf variable specification : attributes, + * dimension and variable name. Also build the related _QC, + * _ADJUSTED, _ADJUSTED_QC, _ADJUSTED_ERROR variable. + * + * @param fileType + * @param version + * @param prmName : variable name -> parameter name or duplicate sensor + * name : TEMP, TEMP_2, PSAL, PSAL_2, etc. + * @param dimPQc + * @param dimParam + * @param errComment + * @param errLongName + * @param presAxis + * @param pres_adjAxis + * @param prm : parameter base name. eg. TEMP, PRES, PSAL + * @param isDeprecated + * @param prmLName + * @param prmSName + * @param prmUnits + * @param prmVmin + * @param prmVmax + * @param prmFill + * @param prmList + * @param prmExtra + * @param ncDataType + * @param keep + * @param opt + * @param CORE + * @param BIO + * @throws IOException + * @throws R03ParameterException + */ + private void buildParamVariables(ArgoDataFile.FileType fileType, String version, String prmName, + ArgoDimension[] dimPQc, ArgoDimension[] dimParam, String errComment, String errLongName, String presAxis, + String pres_adjAxis, String prm, boolean isDeprecated, String prmLName, String prmSName, String prmUnits, + String prmVmin, String prmVmax, String prmFill, String[] prmList, boolean prmExtra, DataType ncDataType, + boolean keep, boolean opt, boolean CORE, boolean BIO) throws IOException, R03ParameterException { + + if (keep) { + // build the relevant variable entries + log.debug("keeping param: '{}' CORE/BIO {}/{}", prmName, CORE, BIO); + + // add to list of valid parameter names + addToPhysParamNameLists(prmName, isDeprecated); + + // create the variable group(s) + // see VARIABLE GROUPS documentation at the top + String group_qc = prmName + "_QC"; + String group_adj = prmName + "_ADJUSTED"; + createVariableGroups(prmName, CORE, BIO, group_qc, group_adj); + + // PRES and Bio-argo files: In bio-argo files, + // - only PRES appears + // - there is no PROFILE_PRES_QC, PRES_QC, PRES_ADJ_QC, *_ADJ_ERR + + boolean bio_pres = false; + if (prm.startsWith("PRES") && pPRESn.matcher(prm).matches() + && (fileType == ArgoDataFile.FileType.BIO_PROFILE + || fileType == ArgoDataFile.FileType.BIO_TRAJECTORY)) { + bio_pres = true; } - if (log.isDebugEnabled() && !prmType.equals(tmp)) { - log.debug("reset prmType from {} to {}", tmp, prmType); + + if (fileType == ArgoDataFile.FileType.PROFILE || fileType == ArgoDataFile.FileType.BIO_PROFILE) { + + /* + * Build the parameter structure char PROFILE__QC(N_PROF); + * PROFILE__QC:long_name = "Global quality flag of PRES profile"; + * PROFILE__QC:conventions = "Argo reference table 2a"; + * PROFILE__QC:_FillValue = " "; + * + * NOTE: PRES does not have this variable in BIO_PROFILE files + */ + buildProfileParamVariables(prmName, dimPQc, opt, CORE, BIO, group_qc, bio_pres); + } // ..end if (PROFILE) + + // ...build the structures.... + // .. the profile structures are for both and _ADJUSTED + buildParamAndParamAdjustedVariables(version, prmName, dimParam, presAxis, pres_adjAxis, prmLName, prmSName, + prmUnits, prmVmin, prmVmax, prmFill, prmExtra, ncDataType, opt, CORE, BIO, group_qc, group_adj, + bio_pres); + + // if not bio_pres, build the _ADJUSTED_ERROR and STAT ( _STD/MED + // and PROFILE__QC(N_PROF)) variables + if (!bio_pres) { + // ADJUSTED_* + buildParamAdjustedErrorVariable(prmName, dimParam, errComment, errLongName, prmLName, prmUnits, prmFill, + ncDataType, opt, CORE, BIO, group_adj); + // STAT (STAT/MED) variables + buildParamStatVariables(fileType, prmName, dimPQc, dimParam, errComment, errLongName, prmLName, + prmUnits, prmVmin, prmVmax, prmFill, prmExtra, ncDataType); + } - if (!(prmType.equals("float") || prmType.equals("double") || prmType.equals("short"))) { - log.error("Invalid data type = '" + line + "'"); - throw new IOException("Invalid data type '" + prmType + "' (" + prmFileName + "; " + nLine + ")"); + } else { + log.debug("not keeping param: '{}' CORE/BIO {}/{}", prmName, CORE, BIO); + } // end if (keep) + + } + + /** + * STAT variables: Every parameter can have a _STD and/or _MED + * group including the *_ADJUSTED variables --- all optional + * + * The STAT variables are only allowed in the file of the primary parameter core + * param STAT only in core files bio param STAT only in bio files + * + * + * @param fileType + * @param prmName + * @param dimPQc + * @param dimParam + * @param errComment + * @param errLongName + * @param prmLName + * @param prmUnits + * @param prmVmin + * @param prmVmax + * @param prmFill + * @param prmExtra + * @param ncDataType + */ + private void buildParamStatVariables(ArgoDataFile.FileType fileType, String prmName, ArgoDimension[] dimPQc, + ArgoDimension[] dimParam, String errComment, String errLongName, String prmLName, String prmUnits, + String prmVmin, String prmVmax, String prmFill, boolean prmExtra, DataType ncDataType) { + + String STAT[] = { prmName + "_STD", prmName + "_MED" }; + for (String statNm : STAT) { + // ..add to list of valid parameter names + physParamNameList.add(statNm); + interPhysParam.add(statNm); // they are "intermediate parameters" + + // ..create the variable group + // ..each of these are there own group + String stat_qc = statNm + "_QC"; + String stat_adj = statNm + "_ADJUSTED"; + if (!groupMembers.containsKey(statNm)) { // ..new group - init + groupMembers.put(stat_qc, new HashSet()); + log.debug("create group: '{}'", statNm); + groupMembers.put(stat_adj, new HashSet()); + log.debug("create group: '{}_ADJUSTED'", statNm); } - DataType ncDataType = DataType.getType(prmType); + /* + * ***** Apr 2015 Users of the STAT variables are not including PROFILE_*_QC So + * don't allow them at all until there is some outcry + * + * ***** Update: Apr 2022 Handle these as "intermediate parameters" + */ - // ..check for symbolic NETCDF fill values + if (fileType == ArgoDataFile.FileType.PROFILE || fileType == ArgoDataFile.FileType.BIO_PROFILE) { - if (prmFill.startsWith("NC_FILL_")) { - tmp = prmFill; - prmFill = NC_FILL_TYPES.get(tmp); + buidProfileStatQcVariable(dimPQc, statNm, stat_qc); + } // end if (PROFILE) - if (prmFill == null) { - log.debug("Invalid NC_FILL_: '" + tmp + "' in line '" + line + "'"); - throw new IOException("Invalid NC_FILL_: '" + tmp + "' (" + prmFileName + "; " + nLine + ")"); - } + // build the structures.... + // the profile structures are for both and _ADJUSTED + String S[] = new String[] { statNm, statNm + "_ADJUSTED" }; + for (String v : S) { - log.debug("Changed fill-value from {} to {}", tmp, prmFill); - } + buildStatAndStatAdjustedVariables(dimParam, prmLName, prmUnits, prmVmin, prmVmax, prmFill, prmExtra, + ncDataType, statNm, stat_qc, stat_adj, v); + } // ..end for v : , _ADJUSTED + + // build _ADJUSTED_ERROR variable + buildStatAdjustedErrorVariable(dimParam, errComment, errLongName, prmLName, prmUnits, prmFill, ncDataType, + statNm, stat_adj); + } // ..end for _STD, _MED + } + + /** + * Build the parameter structure _ADJUSTED_ERROR(N_PROF, + * N_LEVELS); _ADJUSTED_ERROR:long_name = ""; + * _ADJUSTED_ERROR:_FillValue = ; + * _ADJUSTED_ERROR:units = ""; + * _ADJUSTED_ERROR:comment = "Contains the error on the \ adjusted values + * as determined by the delayed mode QC process."; + * _ADJUSTED_ERROR:C_format = ATTR_IGNORE_VALUE; + * _ADJUSTED_ERROR:FORTRAN_format = ATTR_IGNORE_VALUE; + * _ADJUSTED_ERROR:resolution = ATTR_IGNORE_VALUE; + * + * @param dimParam + * @param errComment + * @param errLongName + * @param prmLName + * @param prmUnits + * @param prmFill + * @param ncDataType + * @param statNm + * @param stat_adj + */ + private void buildStatAdjustedErrorVariable(ArgoDimension[] dimParam, String errComment, String errLongName, + String prmLName, String prmUnits, String prmFill, DataType ncDataType, String statNm, String stat_adj) { + + String varNm = new String(statNm + "_ADJUSTED_ERROR"); + + String longName = (errLongName == null ? prmLName : errLongName); + + // create variable + ArgoVariable aVar = createPhysParamArgoVariable(statNm, dimParam, varNm, ncDataType, longName, prmFill, "", + prmUnits, "", "", ATTR_IGNORE_VALUE, "", errComment, ATTR_IGNORE_VALUE, ATTR_IGNORE_VALUE); + + // add variable in lists and group : + varHash.put(varNm, aVar); + optVar.add(varNm); + physParamVarList.add(varNm); + + varGroup.put(varNm, stat_adj); + groupMembers.get(stat_adj).add(varNm); // add to the ADJUSTED group + + log.debug("added: '{}': opt '{}' ; primary '{}'; 'member '{}'", varNm, true, stat_adj, stat_adj); + } + + /** + * Build the parameter STAT structure Profile: (N_PROF, + * N_LEVELS); -or- (N_PROF, N_LEVELS,_extra_) Trajectory: + * (N_MEASUREMENT); -or- (N_MEASUREMENT, + * _extra_) :long_name = ""; //:standard_name = + * ""; :_FillValue = ; :units = + * ""; :valid_min = ; :valid_max = + * ; :comment = ""; (version-specific) + * :C_format = ATTR_IGNORE_VALUE; //..means ignore setting :FORTRAN_format + * = ATTR_IGNORE_VALUE; //..means ignore setting :resolution = + * ATTR_IGNORE_VALUE; :comment_on_resolution = ATTR_IGNORE; ///..means ignore + * entirely only in v3.1 and beyond (but technically would be allowed in earlier + * versions if it showed up + * + * + * where = , _ADJUSTED + * + * @param dimParam + * @param prmLName + * @param prmUnits + * @param prmVmin + * @param prmVmax + * @param prmFill + * @param prmExtra + * @param ncDataType + * @param statNm + * @param stat_qc + * @param stat_adj + * @param v + */ + private void buildStatAndStatAdjustedVariables(ArgoDimension[] dimParam, String prmLName, String prmUnits, + String prmVmin, String prmVmax, String prmFill, boolean prmExtra, DataType ncDataType, String statNm, + String stat_qc, String stat_adj, String v) { + + // build the long_name depending on _STAT or _MED : + StringBuilder tmpLName; + if (statNm.endsWith("_STD")) { + tmpLName = new StringBuilder("Standard deviation of "); + } else { + tmpLName = new StringBuilder("Median value of "); + } + tmpLName.append(prmLName.substring(0, 1).toLowerCase()).append(prmLName.substring(1)); + + // build the variable depending on _STAT or _MED : + ArgoVariable aVar; + if (statNm.endsWith("_STD")) { + aVar = createPhysParamArgoVariable(statNm, dimParam, v, ncDataType, tmpLName.toString(), prmFill, "", + prmUnits, "", "", ATTR_IGNORE, ATTR_IGNORE + "resolution is unknown", "", ATTR_IGNORE_VALUE, + ATTR_IGNORE_VALUE); + } else { + // _MED + aVar = createPhysParamArgoVariable(statNm, dimParam, v, ncDataType, tmpLName.toString(), prmFill, "", + prmUnits, prmVmin, prmVmax, ATTR_IGNORE, ATTR_IGNORE + "resolution is unknown", "", + ATTR_IGNORE_VALUE, ATTR_IGNORE_VALUE); + } + // extra dims authorized ? + if (prmExtra) { + aVar.setHaveExtraDimension(); + } + + // add to physParamList : + varHash.put(v, aVar); + physParamVarList.add(v); + + // ..add to the appropriate groups + String group; + if (v.endsWith("_ADJUSTED")) { + group = stat_adj; + varGroup.put(v, stat_adj); + groupMembers.get(stat_adj).add(v); // ..add to the appropriate group + log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", v, true, stat_adj, stat_adj); + + } else { + group = stat_qc; + varGroup.put(v, stat_qc); + groupMembers.get(stat_adj).add(v); + groupMembers.get(stat_qc).add(v); + log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", v, true, "", stat_adj); + } + + optVar.add(v); + + /* + * Build the parameter structure char _QC(N_PROF, N_LEVELS); _QC:long_name + * = "quality flag"; _QC:conventions = "Argo reference table 2"; + * _QC:_FillValue = " "; + * + * where = , _ADJUSTED + */ - // ..check the PrmCat -- "c" = core, "b" = bio, "ic/ib" = intermediate -> core, - // bio - if (!(prmCategory.equals("c") || prmCategory.equals("b") || prmCategory.equals("ic") - || prmCategory.equals("ib"))) { - log.debug("Invalid category '" + prmCategory + "' in line '" + line + "'"); - throw new IOException("Invalid category '" + prmCategory + "' (" + prmFileName + "; " + nLine + ")"); + String varNm = new String(v + "_QC"); + aVar = createPhysParamArgoVariable(statNm, dimParam, varNm, DataType.CHAR, prmQcLName, fillValueBLANK, + prmQcConventions, "", "", "", "", "", "", "", ""); + + // group = v+"_QC"; + varHash.put(varNm, aVar); + groupMembers.get(group).add(varNm); // ..add to the prmName group of variables + physParamVarList.add(varNm); + + log.debug("variable added: '{}' (group '{}')", varNm, group); + + // ..add to options + varGroup.put(varNm, group); + optVar.add(varNm); + log.debug("option added: '{}' (group '{})", varNm, group); + } + + /** + * + * Build the parameter structure char PROFILE__QC(N_PROF); + * PROFILE__QC:long_name = "Global quality flag of profile"; + * PROFILE__QC:conventions = "Argo reference table 2a"; + * PROFILE__QC:_FillValue = " "; + * + * where = _STD, _MED + * + * @param dimPQc + * @param statNm + * @param stat_qc + */ + private void buidProfileStatQcVariable(ArgoDimension[] dimPQc, String statNm, String stat_qc) { + String varNm = new String("PROFILE_" + statNm + "_QC"); + + ArgoVariable aVar = createPhysParamArgoVariable(statNm, dimPQc, varNm, DataType.CHAR, + prfQcLName + statNm + " profile", fillValueBLANK, prfQcConventions, "", "", "", "", "", "", "", ""); + + varHash.put(varNm, aVar); + physParamVarList.add(varNm); + + // add to optionanls variables group + varGroup.put(varNm, stat_qc); + groupMembers.get(stat_qc).add(varNm); + optVar.add(varNm); + log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", varNm, true, stat_qc, stat_qc); + } + + /** + * Build the parameter structure Profile + * _ADJUSTED_ERROR(N_PROF, N_LEVELS); Trajectory + * _ADJUSTED_ERROR(N_MEASUREMENT); + * + * _ADJUSTED_ERROR:long_name = ""; + * _ADJUSTED_ERROR:_FillValue = _ADJUSTED_ERROR:units = "_ADJUSTED_ERROR:comment = "Contains the error on the \ adjusted values + * as determined by the delayed mode QC process."; + * _ADJUSTED_ERROR:C_format = "%7.1f"; + * _ADJUSTED_ERROR:FORTRAN_format = "F7.1"; + * _ADJUSTED_ERROR:resolution = 0.1f; + * + * @param prmName + * @param dimParam + * @param errComment + * @param errLongName + * @param prmLName + * @param prmUnits + * @param prmFill + * @param ncDataType + * @param opt + * @param CORE + * @param BIO + * @param group_adj + */ + private void buildParamAdjustedErrorVariable(String prmName, ArgoDimension[] dimParam, String errComment, + String errLongName, String prmLName, String prmUnits, String prmFill, DataType ncDataType, boolean opt, + boolean CORE, boolean BIO, String group_adj) { + String varNm; + ArgoVariable aVar; + varNm = new String(prmName + "_ADJUSTED_ERROR"); + // aVar = new ArgoVariable(varNm, ncDataType, dimParam, prmName); + aVar = createPhysParamArgoVariable(prmName, dimParam, varNm, ncDataType, + (errLongName == null ? prmLName : errLongName), prmFill, "", prmUnits, "", "", ATTR_IGNORE + prmFill, + "", errComment, ATTR_IGNORE_VALUE + "%15.4f", ATTR_IGNORE_VALUE + "F15.4"); + +// createPhysParamArgoVariable(String prmName, ArgoDimension[] dimPQc, String varNm, +// DataType dataType, String prmLongName, String prmFillValue, String prmConventions, String prmUnits, +// String prmVmin, String prmVmax, String prmResolution, String resolutionComment, String errComment) + + // addAttr(aVar, long_name, (errLongName == null ? prmLName : errLongName), + // DataType.STRING); + + // addAttr(aVar, fillValue, prmFill, ncDataType); + // addAttr(aVar, units, prmUnits, DataType.STRING); + // addAttr(aVar, comment, errComment, DataType.STRING); +// addAttr(aVar, c_format, ATTR_IGNORE_VALUE + "%15.4f", DataType.STRING); +// addAttr(aVar, fortran_format, ATTR_IGNORE_VALUE + "F15.4", DataType.STRING); + // addAttr(aVar, resolution, ATTR_IGNORE + prmFill, ncDataType); + + varHash.put(varNm, aVar); + physParamVarList.add(varNm); + + // ..add to group -- see VARIABLE GROUPS above + + String group; + if (CORE || BIO) { + group = prmName; + + } else { // ..an i-parameter + group = group_adj; + } + + varGroup.put(varNm, group); + groupMembers.get(group).add(varNm); + log.debug("added: '{}'; opt '{}'; primary group'{}'; member '{}'", varNm, opt, group, group); + + if (opt) { + // ..add to optional variables + optVar.add(varNm); + } + } + + /** + * Build the parameter structure Profile: + *

    + * (N_PROF, N_LEVELS) -or- + *

    + * (N_PROF, N_LEVELS,_extra_) + * + * Trajectory: + *

    + * (N_MEASUREMENT); -or- + *

    + * (N_MEASUREMENT, _extra_) + * + * Attributes: + *

    + * :long_name = ""; + *

    + * :standard_name = ""; + *

    + * :_FillValue = ; + *

    + * :units = ""; + *

    + * :valid_min = ; + *

    + * :valid_max = ; + *

    + * :comment = ""; (version-specific) + *

    + * :C_format = ATTR_IGNORE_VALUE; //..means ignore setting + *

    + * :FORTRAN_format = ATTR_IGNORE_VALUE; //..means ignore setting + *

    + * :resolution = ATTR_IGNORE_VALUE; + *

    + * :comment_on_resolution = ATTR_IGNORE; ///..means ignore entirely only in v3.1 + * and beyond (but technically would be allowed in earlier versions if it showed + * up + * + * where + *

    + * = , _ADJUSTED + * + * if + *

    + * = PRES or PRES_ADJUSTED, add + *

    + * :axis = "Z" + * + * @param version + * @param prmName + * @param dimParam + * @param presAxis + * @param pres_adjAxis + * @param prmLName + * @param prmSName + * @param prmUnits + * @param prmVmin + * @param prmVmax + * @param prmFill + * @param prmExtra + * @param ncDataType + * @param opt + * @param CORE + * @param BIO + * @param group_qc + * @param group_adj + * @param bio_pres + */ + private void buildParamAndParamAdjustedVariables(String version, String prmName, ArgoDimension[] dimParam, + String presAxis, String pres_adjAxis, String prmLName, String prmSName, String prmUnits, String prmVmin, + String prmVmax, String prmFill, boolean prmExtra, DataType ncDataType, boolean opt, boolean CORE, + boolean BIO, String group_qc, String group_adj, boolean bio_pres) { + String varNm; + ArgoVariable aVar; + String P[] = { prmName, prmName + "_ADJUSTED" }; + + for (String v : P) { + + log.debug("...working on: {}", v); + + // aVar = new ArgoVariable(v, ncDataType, dimParam, prmName); + aVar = createPhysParamArgoVariable(prmName, dimParam, v, ncDataType, prmLName, prmFill, "", prmUnits, + prmVmin, prmVmax, ATTR_IGNORE + "99999.", ATTR_IGNORE + "resolution is unknown", "", "", ""); +// addAttr(aVar, long_name, prmLName, DataType.STRING); +// addAttr(aVar, fillValue, prmFill, ncDataType); +// addAttr(aVar, units, prmUnits, DataType.STRING); +// addAttr(aVar, valid_min, prmVmin, ncDataType); +// addAttr(aVar, valid_max, prmVmax, ncDataType); +// addAttr(aVar, resolution, ATTR_IGNORE + "99999.", ncDataType); +// addAttr(aVar, comment_on_resolution, ATTR_IGNORE + "resolution is unknown", DataType.STRING); + + // add conditionals attributes : + if (version.compareTo("2.3") < 0) { + addAttr(aVar, comment, prmSName, DataType.STRING); + } else { + addAttr(aVar, standard_name, prmSName, DataType.STRING); + } + if (v.startsWith("PRES")) { + addAttr(aVar, c_format, ATTR_IGNORE_VALUE + "%15.1f", DataType.STRING); + addAttr(aVar, fortran_format, ATTR_IGNORE_VALUE + "F15.1", DataType.STRING); + } else { + addAttr(aVar, c_format, ATTR_IGNORE_VALUE + "%15.3f", DataType.STRING); + addAttr(aVar, fortran_format, ATTR_IGNORE_VALUE + "F15.3", DataType.STRING); } - // ..decide if this parameter is in this type of file + if (v.equals("PRES")) { + // ======== + // REQ_0037 + // ======== + addAttr(aVar, axis, presAxis, DataType.STRING); + } else if (v.equals("PRES_ADJUSTED")) { + addAttr(aVar, axis, pres_adjAxis, DataType.STRING); + } - boolean keep = false; - boolean opt = true; - boolean CORE = false; - boolean BIO = false; + // if an extra dimension is described in param attributes: + if (prmExtra) { + aVar.setHaveExtraDimension(); + } - // ..check for a valid file type and decide if it's a keeper - if (prmCategory.equals("c")) { - CORE = true; - BIO = false; + varHash.put(v, aVar); + physParamVarList.add(v); - if (prm.startsWith("PRES") && pPRESn.matcher(prm).matches()) { - // ..keep PRES / PRESn in all cases - opt = false; - keep = true; + // ..add to group(s) -- see VARIABLE GROUPS above + if (CORE || BIO) { + varGroup.put(v, prmName); + groupMembers.get(prmName).add(v); + log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", v, opt, prmName, prmName); - // ..treat PRES/PRESn like any other bio-parameter in Bio- files - if (isBioProf || isOldBioTraj) { - CORE = false; - } + } else { + // ..an i-parameter + // .. has no primary group and belongs to _qc and _adj groups + // .._ADJ has primary and belongs to only _adj group + // ..(ADMT-16: can no longer exist by itself) + // ========== + // CHECK_0076 + // ========== + + if (v.endsWith("_ADJUSTED")) { + varGroup.put(v, group_adj); + groupMembers.get(group_adj).add(v); + log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", v, opt, group_adj, group_adj); - } else if (isCoreProf || isTraj || isOldCoreTraj) { - // ..keep "c" parameters for core and traj (> v3.1) files - keep = true; - if (prm.equals("TEMP") && fileType == ArgoDataFile.FileType.PROFILE) { - opt = false; - } + } else { + varGroup.put(v, group_qc); + groupMembers.get(group_adj).add(v); + groupMembers.get(group_qc).add(v); + log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'/'{}'", v, opt, "", group_qc, group_adj); } + } - } else if (prmCategory.equals("ic")) { - CORE = false; - BIO = false; + if (opt) { + // ..add to optional variables + optVar.add(v); + } - if (isCoreProf || isTraj || isOldCoreTraj) { - // ..keep "c" and "ic" parameters for core and traj (> v3.1) files - keep = true; - } + /* + * Build the parameter structure Profile char

    _QC(N_PROF, N_LEVELS); + * Trajectory char

    _QC(N_MEASUREMENT); + * + *

    _QC:long_name = "quality flag";

    _QC:conventions = + * "Argo reference table 2";

    _QC:_FillValue = " "; + * + * where

    = , _ADJUSTED + * + * Don't put PRES_QC in bio-Argo file. (==> bio_pres = true) + */ + + if (!bio_pres) { + // build the *_QC and _ADJUSTED_QC variables + varNm = new String(v + "_QC"); + aVar = createPhysParamArgoVariable(prmName, dimParam, varNm, DataType.CHAR, prmQcLName, fillValueBLANK, + prmQcConventions, "", "", "", "", "", "", "", ""); +// aVar = new ArgoVariable(varNm, DataType.CHAR, dimParam, prmName); +// addAttr(aVar, long_name, prmQcLName, DataType.STRING); +// addAttr(aVar, conventions, prmQcConventions, DataType.STRING); +// addAttr(aVar, fillValue, fillValueBLANK, DataType.STRING); + + varHash.put(varNm, aVar); + physParamVarList.add(varNm); + + // ..add to group -- see VARIABLE GROUPS above + if (CORE || BIO) { + varGroup.put(varNm, prmName); + groupMembers.get(prmName).add(varNm); + log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", varNm, opt, prmName, prmName); - } else if (prmCategory.equals("b")) { - CORE = false; - BIO = true; + } else { + String group; + if (v.endsWith("_ADJUSTED")) { + group = group_adj; + } else { + group = group_qc; + } - if (isBioProf || isTraj || isOldBioTraj) { - // ..keep "b" parameters for Bio-Argo and traj (> v3.1) files - keep = true; + varGroup.put(varNm, group); + groupMembers.get(group).add(varNm); + log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}')", varNm, opt, group, group); } - } else if (prmCategory.equals("ib")) { - CORE = false; - BIO = false; - - if (isBioProf || isTraj || isOldBioTraj) { - // ..keep "ib" parameters for Bio-Argo and traj (> v3.1) files - keep = true; + if (opt) { + // ..add to optional variables + optVar.add(varNm); } } else { - log.debug("Invalid param category (c,b,ic,ib) '" + prmCategory + "' in line '" + line + "'"); - throw new IOException("Invalid parameter category (c,b,i) '" + prmCategory + "' (" + prmFileName + "; " - + nLine + ")"); + log.debug("skip: '{}_QC' (bio_pres == true)", v); } - // ..for each entry, automatically make * variables too - for (String prmName : prmList) { + /* + * Do not put PRES_ADJUSTED in bio-argo file -- bio_pres = true ==> = + * PRES && this is a bio-profile file + */ + if (bio_pres) { + log.debug("skip PRES_ADJUSTED: (bio_pres == true)"); + break; + } + } + } - if (keep) { - // ..build the relevant variable entries - log.debug("keeping param: '{}' CORE/BIO {}/{}", prmName, CORE, BIO); + /** + * + * Build the parameter structure char PROFILE__QC(N_PROF); + * PROFILE__QC:long_name = "Global quality flag of PRES profile"; + * PROFILE__QC:conventions = "Argo reference table 2a"; + * PROFILE__QC:_FillValue = " "; + * + * NOTE: PRES does not have this variable in BIO_PROFILE files + * + * @param prmName + * @param dimPQc + * @param opt + * @param CORE + * @param BIO + * @param group_qc + * @param bio_pres + */ + private void buildProfileParamVariables(String prmName, ArgoDimension[] dimPQc, boolean opt, boolean CORE, + boolean BIO, String group_qc, boolean bio_pres) { + String varNm; + ArgoVariable aVar; + if (!bio_pres) { + varNm = new String("PROFILE_" + prmName + "_QC"); + aVar = createPhysParamArgoVariable(prmName, dimPQc, varNm, DataType.CHAR, prfQcLName + prmName + " profile", + fillValueBLANK, prfQcConventions, "", "", "", "", "", "", "", ""); + + varHash.put(varNm, aVar); + physParamVarList.add(varNm); + + // ..add to groups ... see VARIABLE GROUPS above + + String group; + if (CORE || BIO) { + group = prmName; + + } else { // ..this is an intermediate parameter + group = group_qc; + } - // ..add to list of valid parameter names - if (!physParamNameList.contains(prmName)) {// ..new param name - physParamNameList.add(prmName); - if (isDeprecated) { - depParamNameList.add(prmName); - } + varGroup.put(varNm, group); + groupMembers.get(group).add(varNm); - } else { // ..duplicate name is a no, no - log.error("Duplicate param name (line {}) '{}'", nLine, prmName); - throw new IOException( - "Duplicate param name in '" + prmFileName + "' (line " + nLine + "): '" + line + "'"); - } + if (opt) { + // ..add to optional variables + optVar.add(varNm); + } - // ..create the variable group(s) - // -- see VARIABLE GROUPS documentation at the top + log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", varNm, opt, group, group); - String group_qc = prmName + "_QC"; - String group_adj = prmName + "_ADJUSTED"; + } else { + log.debug("skip: 'PROFILE_{}_QC' (bio_pres = true)", prmName); + } + } - if (CORE || BIO) { // ..a "full parameter" - if (!groupMembers.containsKey(prmName)) { // ..new group - init - groupMembers.put(prmName, new HashSet()); - log.debug("create group: '{}'", prmName); - } + private ArgoVariable createPhysParamArgoVariable(String prmName, ArgoDimension[] dimPQc, String varNm, + DataType dataType, String prmLongName, String prmFillValue, String prmConventions, String prmUnits, + String prmVmin, String prmVmax, String prmResolution, String resolutionComment, String errComment, + String paramCformat, String paramFortranFormat) { + ArgoVariable aVar; + aVar = new ArgoVariable(varNm, dataType, dimPQc, prmName); + // Mandatory attributes + addAttr(aVar, long_name, prmLongName, DataType.STRING); + DataType fillValueType = dataType.equals(DataType.CHAR) ? DataType.STRING : dataType; + addAttr(aVar, fillValue, prmFillValue, fillValueType); + + // optionnals attributes + addAttrIfNotEmpty(aVar, conventions, prmConventions, DataType.STRING); + addAttrIfNotEmpty(aVar, units, prmUnits, DataType.STRING); + addAttrIfNotEmpty(aVar, valid_min, prmVmin, dataType); + addAttrIfNotEmpty(aVar, valid_max, prmVmax, dataType); + addAttrIfNotEmpty(aVar, resolution, prmResolution, dataType); + addAttrIfNotEmpty(aVar, comment_on_resolution, resolutionComment, DataType.STRING); + addAttrIfNotEmpty(aVar, comment, errComment, DataType.STRING); + addAttrIfNotEmpty(aVar, c_format, paramCformat, DataType.STRING); + addAttrIfNotEmpty(aVar, fortran_format, paramFortranFormat, DataType.STRING); + + return aVar; + } - } else { // ..implies an i-parameter - interPhysParam.add(prmName); - log.debug("add intermediate variable '{}'", prmName); + /** + * Adds an attribute to the variable only if the value is not null or empty. + * + * @param var The ArgoVariable to add the attribute to + * @param attrName Attribute name + * @param value Attribute value + * @param dataType Data type of the attribute + */ + private void addAttrIfNotEmpty(ArgoVariable var, String attrName, String value, DataType dataType) { + if (value != null && !value.isEmpty()) { + addAttr(var, attrName, value, dataType); + } + } - // ..make the _qc group - if (!groupMembers.containsKey(group_qc)) { // ..new group - init - groupMembers.put(group_qc, new HashSet()); - log.debug("create group: '{}'", group_qc); - } + private void addToPhysParamNameLists(String prmName, boolean isDeprecated) throws R03ParameterException { + if (!physParamNameList.contains(prmName)) {// ..new param name + physParamNameList.add(prmName); + if (isDeprecated) { + depParamNameList.add(prmName); + } - // ..make the _adj group - if (!groupMembers.containsKey(group_adj)) { // ..new group - init - groupMembers.put(group_adj, new HashSet()); - log.debug("create group: '{}'", group_adj); - } - } + } else { // ..duplicate name is a no, no + throw new R03ParameterException("Duplicate param name (NVS R03) 'prmName'"); + } + } - // ..PRES and Bio-argo files: In bio-argo files, - // .. - only PRES appears - // .. - there is no PROFILE_PRES_QC, PRES_QC, PRES_ADJ_QC, *_ADJ_ERR + private void createVariableGroups(String prmName, boolean CORE, boolean BIO, String group_qc, String group_adj) { + // ========== + // CHECK_0295 + // ========== + // phase of building variable group in fonction of core/bgc and intermediate + // physical parameter is important for te format check and the expected presence + // of _ADJUSTED, _ADJUSTED_QC, _ADJUSTED_ERROR + if (CORE || BIO) { // ..a "full parameter" + if (!groupMembers.containsKey(prmName)) { // ..new group - init + groupMembers.put(prmName, new HashSet()); + log.debug("create group: '{}'", prmName); + } - boolean bio_pres = false; - if (prm.startsWith("PRES") && pPRESn.matcher(prm).matches() - && (fileType == ArgoDataFile.FileType.BIO_PROFILE - || fileType == ArgoDataFile.FileType.BIO_TRAJECTORY)) { - bio_pres = true; - } + } else { // ..implies an i-parameter + interPhysParam.add(prmName); + log.debug("add intermediate variable '{}'", prmName); - String varNm; - ArgoVariable aVar; - - if (fileType == ArgoDataFile.FileType.PROFILE || fileType == ArgoDataFile.FileType.BIO_PROFILE) { - - /* - * Build the parameter structure char PROFILE__QC(N_PROF); - * PROFILE__QC:long_name = "Global quality flag of PRES profile"; - * PROFILE__QC:conventions = "Argo reference table 2a"; - * PROFILE__QC:_FillValue = " "; - * - * NOTE: PRES does not have this variable in BIO_PROFILE files - */ - if (!bio_pres) { - varNm = new String("PROFILE_" + prmName + "_QC"); - aVar = new ArgoVariable(varNm, DataType.CHAR, dimPQc, prmName); - addAttr(aVar, long_name, prfQcLName + prmName + " profile", DataType.STRING); - addAttr(aVar, conventions, prfQcConventions, DataType.STRING); - addAttr(aVar, fillValue, fillValueBLANK, DataType.STRING); - - varHash.put(varNm, aVar); - physParamVarList.add(varNm); - - // ..add to groups ... see VARIABLE GROUPS above - - String group; - if (CORE || BIO) { - group = prmName; - - } else { // ..this is an intermediate parameter - group = group_qc; - } + // ..make the _qc group + if (!groupMembers.containsKey(group_qc)) { // ..new group - init + groupMembers.put(group_qc, new HashSet()); + log.debug("create group: '{}'", group_qc); + } - varGroup.put(varNm, group); - groupMembers.get(group).add(varNm); + // ..make the _adj group + if (!groupMembers.containsKey(group_adj)) { // ..new group - init + groupMembers.put(group_adj, new HashSet()); + log.debug("create group: '{}'", group_adj); + } + } + } - if (opt) { - // ..add to optional variables - optVar.add(varNm); - } + /** + * check for symbolic NETCDF fill values. If prmFill start with NC_FILL, replace + * it with the right NC_FILL_TYPE value if key prmFill exists in the map. + * + * @param prm (String) parameter name needed for error message. + * @param prmFill (String) extracted (with NvsDefintionParser) Fill_Value from + * NVS table definition's field. + * @return + * @throws IOException + * @throws R03ParameterException + */ + private String checkAndRepacleWithNcFillTypes(String prm, String prmFill) throws R03ParameterException { + if (prmFill.startsWith("NC_FILL_")) { + String tmp = prmFill; + prmFill = NC_FILL_TYPES.get(tmp); + + if (prmFill == null) { + throw new R03ParameterException("Invalid NC_FILL_: '" + prmFill + "' (NVS R03, parameter : " + prm + + "). This parameter will be ignored in specification definition."); + } - log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", varNm, opt, group, group); + log.debug("Changed fill-value from {} to {}", tmp, prmFill); + } + return prmFill; + } - } else { - log.debug("skip: 'PROFILE_{}_QC' (bio_pres = true)", prmName); - } - } // ..end if (PROFILE) - - // ...build the structures.... - // .. the profile structures are for both and _ADJUSTED - - String P[] = { prmName, prmName + "_ADJUSTED" }; - - for (String v : P) { - /* - * Build the parameter structure Profile:

    (N_PROF, N_LEVELS) - * -or-

    (N_PROF, N_LEVELS,_extra_) - * - * Trajectory:

    (N_MEASUREMENT); -or- - *

    (N_MEASUREMENT, _extra_) - * - * Attributes:

    :long_name = "";

    :standard_name = - * "";

    :_FillValue = ;

    :units = - * "";

    :valid_min = ;

    :valid_max = - * ;

    :comment = ""; (version-specific) - *

    :C_format = ATTR_IGNORE_VALUE; //..means ignore setting

    :FORTRAN_format - * = ATTR_IGNORE_VALUE; //..means ignore setting

    :resolution = - * ATTR_IGNORE_VALUE;

    :comment_on_resolution = ATTR_IGNORE; ///..means ignore - * entirely only in v3.1 and beyond (but technically would be allowed in earlier - * versions if it showed up - * - * where

    = , _ADJUSTED - * - * if

    = PRES or PRES_ADJUSTED, add

    :axis = "Z" - * - */ - log.debug("...working on: {}", v); - - aVar = new ArgoVariable(v, ncDataType, dimParam, prmName); - - if (prmExtra) { - aVar.setHaveExtraDimension(); - } + /** + * Validates and analyzes parameter category to determine if it should be kept + * in the file. + * + * @param prmCategory Category code: "c" (core), "b" (bio), "ic" (intermediate + * core), "ib" (intermediate bio) extracted from NVS R03 + * table's definition field. + * @param prm Parameter name + * @param fileType Type of Argo data file + * @param isCoreProf True if core profile file + * @param isBioProf True if bio profile file + * @param isTraj True if trajectory file + * @param isOldCoreTraj True if old core trajectory file + * @param isOldBioTraj True if old bio trajectory file + * @return ParameterCategoryResult containing keep, opt, CORE, BIO flags + * @throws IOException if category code is invalid + * @throws R03ParameterException + */ + private ParameterCategoryResult analyzeParameterCategory(String prmCategory, String prm, + ArgoDataFile.FileType fileType, boolean isCoreProf, boolean isBioProf, boolean isTraj, + boolean isOldCoreTraj, boolean isOldBioTraj) throws R03ParameterException { + + // Validate category + if (!(prmCategory.equals("c") || prmCategory.equals("b") || prmCategory.equals("ic") + || prmCategory.equals("ib"))) { + throw new R03ParameterException("Invalid category '" + prmCategory + "' (NVS R03, parameter : " + prm + + "). This parameter will be ignored in specification definition."); + } - addAttr(aVar, long_name, prmLName, DataType.STRING); + boolean keep = false; + boolean opt = true; + boolean CORE = false; + boolean BIO = false; - if (version.compareTo("2.3") < 0) { - addAttr(aVar, comment, prmSName, DataType.STRING); - } else { - addAttr(aVar, standard_name, prmSName, DataType.STRING); - } + // Analyze based on category + if (prmCategory.equals("c")) { + CORE = true; + BIO = false; - // aVar.addAttribute(fillValue, fillValueNum); - addAttr(aVar, fillValue, prmFill, ncDataType); - addAttr(aVar, units, prmUnits, DataType.STRING); - addAttr(aVar, valid_min, prmVmin, ncDataType); - addAttr(aVar, valid_max, prmVmax, ncDataType); - if (v.startsWith("PRES")) { - addAttr(aVar, c_format, ATTR_IGNORE_VALUE + "%15.1f", DataType.STRING); - addAttr(aVar, fortran_format, ATTR_IGNORE_VALUE + "F15.1", DataType.STRING); - } else { - addAttr(aVar, c_format, ATTR_IGNORE_VALUE + "%15.3f", DataType.STRING); - addAttr(aVar, fortran_format, ATTR_IGNORE_VALUE + "F15.3", DataType.STRING); - } - addAttr(aVar, resolution, ATTR_IGNORE + "99999.", ncDataType); - addAttr(aVar, comment_on_resolution, ATTR_IGNORE + "resolution is unknown", DataType.STRING); + if (prm.startsWith("PRES") && pPRESn.matcher(prm).matches()) { + // Keep PRES/PRESn in all cases + opt = false; + keep = true; - if (v.equals("PRES")) { - addAttr(aVar, axis, presAxis, DataType.STRING); - } else if (v.equals("PRES_ADJUSTED")) { - addAttr(aVar, axis, pres_adjAxis, DataType.STRING); - } + // Treat PRES/PRESn like any other bio-parameter in Bio-files + if (isBioProf || isOldBioTraj) { + CORE = false; + } - varHash.put(v, aVar); - physParamVarList.add(v); - - // ..add to group(s) -- see VARIABLE GROUPS above - if (CORE || BIO) { - varGroup.put(v, prmName); - groupMembers.get(prmName).add(v); - log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", v, opt, prmName, prmName); - - } else { // ..an i-parameter - // .. has no primary group and belongs to _qc and _adj groups - // .._ADJ has primary and belongs to only _adj group - // ..(ADMT-16: can no longer exist by itself) - - if (v.endsWith("_ADJUSTED")) { - varGroup.put(v, group_adj); - groupMembers.get(group_adj).add(v); - log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", v, opt, group_adj, - group_adj); - - } else { - varGroup.put(v, group_qc); - groupMembers.get(group_adj).add(v); - groupMembers.get(group_qc).add(v); - log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'/'{}'", v, opt, "", group_qc, - group_adj); - } - } + } else if (isCoreProf || isTraj || isOldCoreTraj) { + // Keep "c" parameters for core and traj (> v3.1) files + keep = true; + if (prm.equals("TEMP") && fileType == ArgoDataFile.FileType.PROFILE) { + opt = false; + } + } - if (opt) { - // ..add to optional variables - optVar.add(v); - } + } else if (prmCategory.equals("ic")) { + CORE = false; + BIO = false; - /* - * Build the parameter structure Profile char

    _QC(N_PROF, N_LEVELS); - * Trajectory char

    _QC(N_MEASUREMENT); - * - *

    _QC:long_name = "quality flag";

    _QC:conventions = - * "Argo reference table 2";

    _QC:_FillValue = " "; - * - * where

    = , _ADJUSTED - * - * Don't put PRES_QC in bio-Argo file. (==> bio_pres = true) - */ - - if (!bio_pres) { - varNm = new String(v + "_QC"); - aVar = new ArgoVariable(varNm, DataType.CHAR, dimParam, prmName); - addAttr(aVar, long_name, prmQcLName, DataType.STRING); - addAttr(aVar, conventions, prmQcConventions, DataType.STRING); - addAttr(aVar, fillValue, fillValueBLANK, DataType.STRING); - - varHash.put(varNm, aVar); - physParamVarList.add(varNm); - - // ..add to group -- see VARIABLE GROUPS above - - if (CORE || BIO) { - varGroup.put(varNm, prmName); - groupMembers.get(prmName).add(varNm); - log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", varNm, opt, prmName, - prmName); - - } else { - String group; - if (v.endsWith("_ADJUSTED")) { - group = group_adj; - } else { - group = group_qc; - } + if (isCoreProf || isTraj || isOldCoreTraj) { + // Keep "c" and "ic" parameters for core and traj (> v3.1) files + keep = true; + } - varGroup.put(varNm, group); - groupMembers.get(group).add(varNm); - log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}')", varNm, opt, group, - group); - } + } else if (prmCategory.equals("b")) { + CORE = false; + BIO = true; - if (opt) { - // ..add to optional variables - optVar.add(varNm); - } + if (isBioProf || isTraj || isOldBioTraj) { + // Keep "b" parameters for Bio-Argo and traj (> v3.1) files + keep = true; + } - } else { - log.debug("skip: '{}_QC' (bio_pres == true)", v); - } + } else if (prmCategory.equals("ib")) { + CORE = false; + BIO = false; - /* - * Do not put PRES_ADJUSTED in bio-argo file -- bio_pres = true ==> = - * PRES && this is a bio-profile file - */ - if (bio_pres) { - log.debug("skip PRES_ADJUSTED: (bio_pres == true)"); - break; - } - } + if (isBioProf || isTraj || isOldBioTraj) { + // Keep "ib" parameters for Bio-Argo and traj (> v3.1) files + keep = true; + } + } - /* - * Build the parameter structure Profile - * _ADJUSTED_ERROR(N_PROF, N_LEVELS); Trajectory - * _ADJUSTED_ERROR(N_MEASUREMENT); - * - * _ADJUSTED_ERROR:long_name = ""; - * _ADJUSTED_ERROR:_FillValue = _ADJUSTED_ERROR:units = "_ADJUSTED_ERROR:comment = "Contains the error on the \ adjusted values - * as determined by the delayed mode QC process."; - * _ADJUSTED_ERROR:C_format = "%7.1f"; - * _ADJUSTED_ERROR:FORTRAN_format = "F7.1"; - * _ADJUSTED_ERROR:resolution = 0.1f; - */ - - if (!bio_pres) { - varNm = new String(prmName + "_ADJUSTED_ERROR"); - aVar = new ArgoVariable(varNm, ncDataType, dimParam, prmName); - - addAttr(aVar, long_name, (errLongName == null ? prmLName : errLongName), DataType.STRING); - - addAttr(aVar, fillValue, prmFill, ncDataType); - addAttr(aVar, units, prmUnits, DataType.STRING); - addAttr(aVar, comment, errComment, DataType.STRING); - addAttr(aVar, c_format, ATTR_IGNORE_VALUE + "%15.4f", DataType.STRING); - addAttr(aVar, fortran_format, ATTR_IGNORE_VALUE + "F15.4", DataType.STRING); - addAttr(aVar, resolution, ATTR_IGNORE + prmFill, ncDataType); - - varHash.put(varNm, aVar); - physParamVarList.add(varNm); - - // ..add to group -- see VARIABLE GROUPS above - - String group; - if (CORE || BIO) { - group = prmName; - - } else { // ..an i-parameter - group = group_adj; - } + return new ParameterCategoryResult(keep, opt, CORE, BIO); + } - varGroup.put(varNm, group); - groupMembers.get(group).add(varNm); - log.debug("added: '{}'; opt '{}'; primary group'{}'; member '{}'", varNm, opt, group, group); + /** + * Result object for parameter category analysis. + */ + private static class ParameterCategoryResult { + public final boolean keep; + public final boolean opt; + public final boolean CORE; + public final boolean BIO; + + public ParameterCategoryResult(boolean keep, boolean opt, boolean CORE, boolean BIO) { + this.keep = keep; + this.opt = opt; + this.CORE = CORE; + this.BIO = BIO; - if (opt) { - // ..add to optional variables - optVar.add(varNm); - } - } + } + } - /* - * **************************************************************** STAT - * variables: Every parameter can have a _STD and/or _MED group - * including the *_ADJUSTED variables --- all optional - * - * The STAT variables are only allowed in the file of the primary parameter core - * param STAT only in core files bio param STAT only in bio files - * - */ - - if (!bio_pres) { - String STAT[] = { prmName + "_STD", prmName + "_MED" }; - for (String statNm : STAT) { - // ..add to list of valid parameter names - physParamNameList.add(statNm); - interPhysParam.add(statNm); // they are "intermediate parameters" - - // ..create the variable group - // ..each of these are there own group - - String stat_qc = statNm + "_QC"; - String stat_adj = statNm + "_ADJUSTED"; - - if (!groupMembers.containsKey(statNm)) { // ..new group - init - groupMembers.put(stat_qc, new HashSet()); - log.debug("create group: '{}'", statNm); - groupMembers.put(stat_adj, new HashSet()); - log.debug("create group: '{}_ADJUSTED'", statNm); - } + public static String[] getValuesListFromParameterAttribute(String attributeValueStr) { + if (attributeValueStr == null || attributeValueStr.isEmpty()) { + return new String[0]; + } - /* - * ***** Apr 2015 Users of the STAT variables are not including PROFILE_*_QC So - * don't allow them at all until there is some outcry - * - * ***** Update: Apr 2022 Handle these as "intermediate parameters" - */ - - if (fileType == ArgoDataFile.FileType.PROFILE - || fileType == ArgoDataFile.FileType.BIO_PROFILE) { - - /* - * Build the parameter structure char PROFILE__QC(N_PROF); - * PROFILE__QC:long_name = "Global quality flag of profile"; - * PROFILE__QC:conventions = "Argo reference table 2a"; - * PROFILE__QC:_FillValue = " "; - * - * where = _STD, _MED - */ - - varNm = new String("PROFILE_" + statNm + "_QC"); - aVar = new ArgoVariable(varNm, DataType.CHAR, dimPQc, statNm); - aVar.addAttribute(long_name, prfQcLName + statNm + " profile"); - aVar.addAttribute(conventions, prfQcConventions); - aVar.addAttribute(fillValue, fillValueBLANK); - - varHash.put(varNm, aVar); - physParamVarList.add(varNm); - - // ..add to options - varGroup.put(varNm, stat_qc); - groupMembers.get(stat_qc).add(varNm); - optVar.add(varNm); - log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", varNm, true, stat_qc, - stat_qc); - } // ..end if (PROFILE) - - // ...build the structures.... - // .. the profile structures are for both and _ADJUSTED - - String S[] = new String[] { statNm, statNm + "_ADJUSTED" }; - String group = null; - - for (String v : S) { - - /* - * Build the parameter STAT structure Profile: (N_PROF, - * N_LEVELS); -or- (N_PROF, N_LEVELS,_extra_) Trajectory: - * (N_MEASUREMENT); -or- (N_MEASUREMENT, - * _extra_) :long_name = ""; //:standard_name = - * ""; :_FillValue = ; :units = - * ""; :valid_min = ; :valid_max = - * ; :comment = ""; (version-specific) - * :C_format = ATTR_IGNORE_VALUE; //..means ignore setting :FORTRAN_format - * = ATTR_IGNORE_VALUE; //..means ignore setting :resolution = - * ATTR_IGNORE_VALUE; :comment_on_resolution = ATTR_IGNORE; ///..means ignore - * entirely only in v3.1 and beyond (but technically would be allowed in earlier - * versions if it showed up - * - * - * where = , _ADJUSTED - */ - - aVar = new ArgoVariable(v, ncDataType, dimParam, statNm); - - if (prmExtra) { - aVar.setHaveExtraDimension(); - } + // Remove brackets and split by comma + String content = attributeValueStr.replaceAll("[\\[\\]]", "").trim(); + if (content.isEmpty()) { + return new String[0]; + } + // parse conent (list or range) + if (content.contains("..")) { + // it is a range (ex: '1..5') + return getRangeValuesFromParametersRangeAttribute(content); + } else { + // in other case, treat it as a list 'valu1,value2,... + return getValuesListFromParameterListAttribute(content); + } - StringBuilder tmpLName; - if (statNm.endsWith("_STD")) { - tmpLName = new StringBuilder("Standard deviation of "); - } else { - tmpLName = new StringBuilder("Median value of "); - } - tmpLName.append(prmLName.substring(0, 1).toLowerCase()).append(prmLName.substring(1)); + } - addAttr(aVar, long_name, tmpLName.toString(), DataType.STRING); + /** + * attribute in the defintion field of NVS parameters table is in form of + * "extra_dim:[name1, name2,...]". For this attribute, the NvsDefinitionParser + * provide a map with key="extra_dim" and value="name1, name2". This function is + * needed to extract name1, name2, etc. and provide a list of string + * + * @param stringList (String). ex : "name1, name2" + * @return list of extra dimensions. ex : {"name1","name2"} + */ + private static String[] getValuesListFromParameterListAttribute(String content) { + // Split and trim each element + return Arrays.stream(content.split(",")).map(String::trim).filter(s -> !s.isEmpty()).toArray(String[]::new); - // aVar.addAttribute(fillValue, fillValueNum); - addAttr(aVar, fillValue, prmFill, ncDataType); - addAttr(aVar, units, prmUnits, DataType.STRING); - if (statNm.endsWith("_MED")) { - addAttr(aVar, valid_min, prmVmin, ncDataType); - addAttr(aVar, valid_max, prmVmax, ncDataType); - } - addAttr(aVar, c_format, ATTR_IGNORE_VALUE, DataType.STRING); - addAttr(aVar, fortran_format, ATTR_IGNORE_VALUE, DataType.STRING); - addAttr(aVar, resolution, ATTR_IGNORE, ncDataType); - addAttr(aVar, comment_on_resolution, ATTR_IGNORE + "resolution is unknown", - DataType.STRING); - - varHash.put(v, aVar); - physParamVarList.add(v); - - // ..add to the appropriate groups - - if (v.endsWith("_ADJUSTED")) { - group = stat_adj; - varGroup.put(v, stat_adj); - groupMembers.get(stat_adj).add(v); // ..add to the appropriate group - log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", v, true, stat_adj, - stat_adj); - - } else { - group = stat_qc; - varGroup.put(v, stat_qc); - groupMembers.get(stat_adj).add(v); - groupMembers.get(stat_qc).add(v); - log.debug("added: '{}'; opt '{}'; primary '{}'; member '{}'", v, true, "", - stat_adj); - } + } - optVar.add(v); - - /* - * Build the parameter structure char _QC(N_PROF, N_LEVELS); _QC:long_name - * = "quality flag"; _QC:conventions = "Argo reference table 2"; - * _QC:_FillValue = " "; - * - * where = , _ADJUSTED - */ - - varNm = new String(v + "_QC"); - aVar = new ArgoVariable(varNm, DataType.CHAR, dimParam, statNm); - aVar.addAttribute(long_name, prmQcLName); - aVar.addAttribute(conventions, prmQcConventions); - aVar.addAttribute(fillValue, fillValueBLANK); - - // group = v+"_QC"; - varHash.put(varNm, aVar); - groupMembers.get(group).add(varNm); // ..add to the prmName group of variables - physParamVarList.add(varNm); - - log.debug("variable added: '{}' (group '{}')", varNm, group); - - // ..add to options - varGroup.put(varNm, group); - optVar.add(varNm); - log.debug("option added: '{}' (group '{})", varNm, group); - } // ..end for v : , _ADJUSTED - - /* - * Build the parameter structure _ADJUSTED_ERROR(N_PROF, - * N_LEVELS); _ADJUSTED_ERROR:long_name = ""; - * _ADJUSTED_ERROR:_FillValue = ; - * _ADJUSTED_ERROR:units = ""; - * _ADJUSTED_ERROR:comment = "Contains the error on the \ adjusted values - * as determined by the delayed mode QC process."; - * _ADJUSTED_ERROR:C_format = ATTR_IGNORE_VALUE; - * _ADJUSTED_ERROR:FORTRAN_format = ATTR_IGNORE_VALUE; - * _ADJUSTED_ERROR:resolution = ATTR_IGNORE_VALUE; - */ - - varNm = new String(statNm + "_ADJUSTED_ERROR"); - aVar = new ArgoVariable(varNm, ncDataType, dimParam, statNm); - - addAttr(aVar, long_name, (errLongName == null ? prmLName : errLongName), DataType.STRING); - - addAttr(aVar, fillValue, prmFill, ncDataType); - addAttr(aVar, units, prmUnits, DataType.STRING); - addAttr(aVar, comment, errComment, DataType.STRING); - addAttr(aVar, c_format, ATTR_IGNORE_VALUE, DataType.STRING); - addAttr(aVar, fortran_format, ATTR_IGNORE_VALUE, DataType.STRING); - addAttr(aVar, resolution, ATTR_IGNORE_VALUE, DataType.STRING); - - varHash.put(varNm, aVar); - optVar.add(varNm); - physParamVarList.add(varNm); - - varGroup.put(varNm, stat_adj); - groupMembers.get(stat_adj).add(varNm); // ..add to the ADJUSTED group - - log.debug("added: '{}': opt '{}' ; primary '{}'; 'member '{}'", varNm, true, stat_adj, - stat_adj); - } // ..end for _STD, _MED + /** + * /** attribute in the defintion field of NVS parameters table may be in form + * of "N:[1..5]". This define a range of values. This function extract this + * range and provide a list of string for each value (ex : + * {"1","2","3","4","5"}) + * + * @param content : the attribute string content (without the bracket '[' and + * ']' ) + * @return + */ + private static String[] getRangeValuesFromParametersRangeAttribute(String content) { + // it is a range number '1..5' + // separate start and end number + String[] bounds = content.split("\\.\\."); + int start = Integer.parseInt(bounds[0]); + int end = Integer.parseInt(bounds[1]); + // generate list : + List result = new ArrayList<>(); + for (int i = start; i <= end; i++) { + result.add(String.valueOf(i)); + } + return result.toArray(new String[0]); - } + } - } else { - log.debug("not keeping param: '{}' CORE/BIO {}/{}", prmName, CORE, BIO); - } // ..end if (keep) + /** + * It may be possible to have duplicate sensor on a float so multiple time the + * same physical parameters need to be wrote in the netCDF file. To distinguish + * variable, we put an _N at the end of the parameter name. N is the a count. + * For each physical parameter from the reference table, we build a virtual list + * of parameter names by adding _N. ADMT-25 : Always add an underscore to + * numbering duplicate sensor/parameters + * + * ex : TEMP, TEMP_1, TEMP_2, TEMP_3,... + * + * @param prm + * @param numberOfAllowedDuplicate + * @return + */ + private String[] buildParamListForDuplicatePhysicalParameters(String prm, int numberOfAllowedDuplicate) { + // ..array of automatic "number" variables + String prmList[] = new String[numberOfAllowedDuplicate]; + prmList[0] = prm; + // variable + for (int n = 1; n < numberOfAllowedDuplicate; n++) { + prmList[n] = prm + "_" + String.valueOf(n); + } + return prmList; + } - // ..make adjustments for numbered variables - opt = true; // ..every #d variable is optional + /** + * If extracted attribute value from reference table is null or "-", replace by + * the ATTR_IGNORE value. + * + * @param attrValue + * @return attrValue or ATTR_IGNORE + */ + private String replaceAttributeIfToBeIgnored(String attrValue) { + if (attrValue.length() == 0 || attrValue.equals("-")) { + attrValue = ATTR_IGNORE; + } + return attrValue; + } - } // ..end for (prmList) - } // ..end while (readLine) + /** + * If extracted attribute value from reference table is null or "-", replace by + * the ATTR_NOT_ALLOWED value. + * + * @param attrValue + * @return attrValue or ATTR_NOT_ALLOWED + */ + private String replaceAttributeIfNotAllowed(String attrValue) { + if (attrValue.length() == 0 || attrValue.equals("-")) { + return ATTR_NOT_ALLOWED; + } + return attrValue; + } - file.close(); + /** + * Safely gets a trimmed value from a map, returning empty string if null. + */ + public static String getOrEmptyStringFromMap(Map map, String key) { + String value = map.get(key); + return getOrEmptyStringFromValue(value); + } - log.debug(".....parseParamFile: end....."); - return true; - } // ..end parseParamFile + public static String getOrEmptyStringFromValue(String value) { + return value != null ? value.trim() : ""; + } /** * Convenience function to add an attribute to a variable diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoReferenceTable.java b/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoReferenceTable.java index 97dc5df..c5fc9ac 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoReferenceTable.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/specs/ArgoReferenceTable.java @@ -1,14 +1,15 @@ package fr.coriolis.checker.specs; import java.io.BufferedReader; -import java.io.File; -import java.io.FileReader; +import java.io.FileNotFoundException; import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.nio.charset.StandardCharsets; import java.util.Collection; import java.util.EnumMap; import java.util.HashSet; import java.util.LinkedHashMap; -import java.util.LinkedHashSet; import java.util.Set; import java.util.Vector; import java.util.regex.Pattern; @@ -17,7 +18,9 @@ import org.apache.logging.log4j.Logger; /** - * Implements the capabilities associated with "reference tables": + * LEGACY ref tables. Mainly replaced by NVS tables in 2026, v3.0.0 + * + * implements the capabilities associated with "reference tables": *

      *
    • Read the table from the spec directory *
    • Build "cross-reference" lists @@ -64,85 +67,14 @@ public static enum DACS { // ..match a string ending in a digit static Pattern pEndsInDigit; - // .....reference table 2: QC Flags..... - // .....reference table 2a: Profile QC Flags..... - public static CharTable QC_FLAG; - public static CharTable PROFILE_QC_FLAG; - // ....reference table 4 --- but not quite. Also includes DAC to center-code // mapping...... public static final EnumMap DacCenterCodes = new EnumMap(DACS.class); - // .....reference table 5: location classes..... - public static CharTable LOCATION_CLASS; - - // .....reference table 6: Data State Indicators..... - public static StringTable DATA_STATE_INDICATOR; - - // .....reference table 8..... - public static IntegerTable WMO_INST_TYPE; - - // .....reference table 9..... - public static StringTable POSITIONING_SYSTEM; - - // .....reference table 10..... - public static StringTable TRANS_SYSTEM; - - // .....reference table 16..... - public static StringTable VERTICAL_SAMPLING_SCHEME; - - // .....reference table 19..... - public static CharTable STATUS_FLAG; - - // .....reference table 20: Grounded flags..... - public static CharTable GROUNDED; - - // .....reference table 22..... - public static StringTable PLATFORM_FAMILY; - - // .....reference table 23..... - public static StringTable PLATFORM_TYPE; - - // .....reference table 24..... - public static StringTable PLATFORM_MAKER; - - public static StringTableCrossReference PLATFORM_TYPExPLATFORM_MAKER; - public static StringTableCrossReference PLATFORM_TYPExWMO_INST; - - // .....reference table 25..... - public static StringTable SENSOR; - - // .....reference table 26..... - public static StringTable SENSOR_MAKER; - - // .....reference table 27..... - public static StringTable SENSOR_MODEL; - - public static StringTableCrossReference SENSOR_MODELxSENSOR; - public static StringTableCrossReference SENSOR_MODELxSENSOR_MAKER; - - public static HashSet SHORT_SENSOR_NAME; - - // .....reference table 29..... - public static LinkedHashSet BATTERY_TYPE_manufacturer; - public static LinkedHashSet BATTERY_TYPE_type; - - // .....reference table 29..... - public static LinkedHashSet BATTERY_PACKS_style; - public static LinkedHashSet BATTERY_PACKS_type; - - // .....reference table 41..... - public static StringTable PROGRAM_NAME; - // .....Measurement_codes.......... - public static IntegerTable MEASUREMENT_CODE_specific; + // public static IntegerTable MEASUREMENT_CODE_specific; public static IntegerTable MEASUREMENT_CODE_toJuldVariable; - // .....Generic Parameter Templates..... - public static LinkedHashSet GENERIC_TEMPLATE_short_sensor_name; - public static LinkedHashSet GENERIC_TEMPLATE_cycle_phase_name; - public static LinkedHashSet GENERIC_TEMPLATE_param; - // ..logger private static final Logger log = LogManager.getLogger("ArgoReferenceTable"); @@ -175,8 +107,8 @@ public static enum DACS { // CONSTRUCTORS // ................................................................. - public ArgoReferenceTable(String specDir) throws IOException { - String prefix = specDir.trim() + File.separator + "ref_table-"; + public ArgoReferenceTable() throws IOException { +// String prefix = "ref_table-"; if (initialized) { log.debug(".....ArgoReferenceTable: already initialized....."); @@ -187,126 +119,8 @@ public ArgoReferenceTable(String specDir) throws IOException { initialized = true; - // .....reference table 2.... - // .....reference table 2a.... - QC_FLAG = new CharTable(prefix + "2"); - PROFILE_QC_FLAG = new CharTable(prefix + "2a"); - - // .....reference table 5.... - LOCATION_CLASS = new CharTable(prefix + "5"); - - // .....reference table 6.... - DATA_STATE_INDICATOR = new StringTable(prefix + "6"); - - // .....reference table 8.... - WMO_INST_TYPE = new IntegerTable(prefix + "8"); - - // .....reference table 9.... - POSITIONING_SYSTEM = new StringTable(prefix + "9"); - - // .....reference table 10.... - TRANS_SYSTEM = new StringTable(prefix + "10"); - - // .....reference table 16.... - VERTICAL_SAMPLING_SCHEME = new StringTable(prefix + "16"); - - // .....reference table 19.... - STATUS_FLAG = new CharTable(prefix + "19"); - - // .....reference table 20.... - GROUNDED = new CharTable(prefix + "20"); - - // .....reference table 22.... - // .....reference table 23.... - // .....reference table 24.... - PLATFORM_FAMILY = new StringTable(prefix + "22"); - PLATFORM_TYPE = new StringTable(prefix + "23"); - PLATFORM_MAKER = new StringTable(prefix + "24"); - - // ..platform_type/platform_maker cross-reference - - final int PLATFORM_TYPE_COLUMN = 1; - final int WMO_INST_COLUMN = 3; - final int PLATFORM_MAKER_COLUMN = 4; - - log.debug("...build PLATFORM_TYPE:PLATFORM_MAKER cross-reference..."); - - PLATFORM_TYPExPLATFORM_MAKER = new StringTableCrossReference(PLATFORM_TYPE, PLATFORM_TYPE_COLUMN, - PLATFORM_MAKER_COLUMN); - - log.debug("...build PLATFORM_TYPE:WMO_INST cross-reference..."); - - PLATFORM_TYPExWMO_INST = new StringTableCrossReference(PLATFORM_TYPE, PLATFORM_TYPE_COLUMN, WMO_INST_COLUMN); - - // .....reference table 25.... - SENSOR = new StringTable(prefix + "25", true); // ..true = allowAppendedDigit - - // .....reference table 26.... - SENSOR_MAKER = new StringTable(prefix + "26"); - - // .....reference table 27.... - SENSOR_MODEL = new StringTable(prefix + "27"); - - // .....reference table 41.... - PROGRAM_NAME = new StringTable(prefix + "41"); - - // ..append platform_maker entries to sensor_maker table - // ..ADMT-19 confirmed this as a requirment - - log.debug("...append PLATFORM_MAKER to SENSOR_MAKER..."); - SENSOR_MAKER.add(PLATFORM_MAKER); - - // ..sensor_model/sensor cross-reference - - log.debug("...build SENSOR_MODEL:SENSOR cross-reference..."); - - final int SENSOR_MODEL_COLUMN = 1; - final int SENSOR_MAKER_COLUMN = 2; - final int SENSOR_LIST_COLUMN = 4; - - SENSOR_MODELxSENSOR = new StringTableCrossReference(SENSOR_MODEL, SENSOR_MODEL_COLUMN, SENSOR_LIST_COLUMN); - - SENSOR_MODELxSENSOR_MAKER = new StringTableCrossReference(SENSOR_MODEL, SENSOR_MODEL_COLUMN, - SENSOR_MAKER_COLUMN); - - // ..harvest short_sensor_name from ref table 27 - // log.debug("...build short_sensor_name set..."); - // final int SHORT_SENSOR_COLUMN = 5; - // SHORT_SENSOR_NAME = SENSOR_MODEL.getColumnSet(SHORT_SENSOR_COLUMN); - - // ..battery_type manufacturer, type - BATTERY_TYPE_manufacturer = new LinkedHashSet(10); - readSetString(specDir.trim() + File.separator + "ref_table-29.manufacturer", BATTERY_TYPE_manufacturer); - - BATTERY_TYPE_type = new LinkedHashSet(10); - readSetString(specDir.trim() + File.separator + "ref_table-29.type", BATTERY_TYPE_type); - - // ..battery_packs style, type - BATTERY_PACKS_style = new LinkedHashSet(10); - readSetString(specDir.trim() + File.separator + "ref_table-30.style", BATTERY_PACKS_style); - - BATTERY_PACKS_type = new LinkedHashSet(10); - readSetString(specDir.trim() + File.separator + "ref_table-30.type", BATTERY_PACKS_type); - - // .....measurement codes - specific codes.... - // .....measurement codes - map to JULD variables - MEASUREMENT_CODE_specific = new IntegerTable( - specDir.trim() + File.separator + "measurement_code-specific_codes"); - MEASUREMENT_CODE_toJuldVariable = new IntegerTable( - specDir.trim() + File.separator + "measurement_code-juld_variables"); - - // .....Generic Parameter Templates..... + MEASUREMENT_CODE_toJuldVariable = new IntegerTable("measurement_code-juld_variables"); - GENERIC_TEMPLATE_short_sensor_name = new LinkedHashSet(10); - readSetString(specDir.trim() + File.separator + "generic_template_short_sensor_name", - GENERIC_TEMPLATE_short_sensor_name); - - GENERIC_TEMPLATE_cycle_phase_name = new LinkedHashSet(10); - readSetString(specDir.trim() + File.separator + "generic_template_cycle_phase_name", - GENERIC_TEMPLATE_cycle_phase_name); - - GENERIC_TEMPLATE_param = new LinkedHashSet(10); - readSetString(specDir.trim() + File.separator + "generic_template_param", GENERIC_TEMPLATE_param); } // .................................................................. @@ -318,47 +132,46 @@ private void readMapCharString(String fileName, LinkedHashMap map, @@ -366,85 +179,87 @@ private void readMapStringString(String fileName, LinkedHashMap to be something - log.debug("anyString regex substituion: '{}'", anyStringReg); - String anyOrNoWordReg = "\\\\w*"; // ..forces <*> to be something or nothing - log.debug("anyOrNoWord regex substituion: '{}'", anyOrNoWordReg); - String anyOrNoStringReg = ".*"; // ..forces <*> to be something or nothing - log.debug("anyOrNoString regex substituion: '{}'", anyOrNoStringReg); - String anyNumReg = "\\\\d+"; // ..forces to be a number - log.debug("anyNum regex substituion: '{}'", anyNumReg); + String anyStringReg = "\\\\w+"; // ..forces <*> to be something + log.debug("anyString regex substituion: '{}'", anyStringReg); + String anyOrNoWordReg = "\\\\w*"; // ..forces <*> to be something or nothing + log.debug("anyOrNoWord regex substituion: '{}'", anyOrNoWordReg); + String anyOrNoStringReg = ".*"; // ..forces <*> to be something or nothing + log.debug("anyOrNoString regex substituion: '{}'", anyOrNoStringReg); + String anyNumReg = "\\\\d+"; // ..forces to be a number + log.debug("anyNum regex substituion: '{}'", anyNumReg); - // ..read through the file + // ..read through the file - String line; - while ((line = fileReader.readLine()) != null) { - if (pBlankOrComment.matcher(line).matches()) { - log.debug("skipped line = '{}'", line); - continue; - } + String line; + while ((line = fileReader.readLine()) != null) { + if (pBlankOrComment.matcher(line).matches()) { + log.debug("skipped line = '{}'", line); + continue; + } - log.debug("line = '{}'", line); + log.debug("line = '{}'", line); - // .....parse the line into individual columns..... - String st[] = line.split("\\|"); - for (int n = 0; n < st.length; n++) { - String s = st[n].trim(); - st[n] = s; - } + // .....parse the line into individual columns..... + String st[] = line.split("\\|"); + for (int n = 0; n < st.length; n++) { + String s = st[n].trim(); + st[n] = s; + } - String key = st[0]; + String key = st[0]; - ArgoReferenceEntry info = new ArgoReferenceEntry(st); + ArgoReferenceEntry info = new ArgoReferenceEntry(st); - int flag = 0; - String reg; + int flag = 0; + String reg; - if (key.indexOf('<') < 0) { - // ..no <*> structures -- just a straight fixed name + if (key.indexOf('<') < 0) { + // ..no <*> structures -- just a straight fixed name - map.put(key, info); - log.debug("add literal: '{}'", key); + map.put(key, info); + log.debug("add literal: '{}'", key); - if (allowAppendedDigit) { - // ADMT-2025 : duplicate SENSOR must be named _ - // so if sensor finish by a number, the duplicate will be xxxx[number]_n - // if sensor don't finish by a number, the duplicate will alsobe xxxx_n. - reg = key + "_\\d"; + if (allowAppendedDigit) { + // ADMT-2025 : duplicate SENSOR must be named _ + // so if sensor finish by a number, the duplicate will be xxxx[number]_n + // if sensor don't finish by a number, the duplicate will also be xxxx_n. + reg = key + "_\\d"; - Pattern pRegex = Pattern.compile(reg, flag); + Pattern pRegex = Pattern.compile(reg, flag); - map_re.put(pRegex, info); + map_re.put(pRegex, info); - log.debug("allowAppendedDigit: add regex: '{}'", pRegex); - } + log.debug("allowAppendedDigit: add regex: '{}'", pRegex); + } - } else { - // ..contains <*> structures -- convert to a regex + } else { + // ..contains <*> structures -- convert to a regex - reg = key.replaceAll("<[nN]+>", anyNumReg).replaceAll("<\\*>", anyOrNoStringReg).replaceAll("<\\w+?>", - anyOrNoWordReg); + reg = key.replaceAll("<[nN]+>", anyNumReg).replaceAll("<\\*>", anyOrNoStringReg) + .replaceAll("<\\w+?>", anyOrNoWordReg); - Pattern pRegex = Pattern.compile(reg, flag); + Pattern pRegex = Pattern.compile(reg, flag); - map_re.put(pRegex, info); + map_re.put(pRegex, info); - log.debug("add regex: '{}' for entry '{}'", pRegex, key); + log.debug("add regex: '{}' for entry '{}'", pRegex, key); + } } + fileReader.close(); + log.debug("...end readMapStrinString..."); + } catch (FileNotFoundException e) { + log.error("File '{}' not found", fileName); + throw e; + } catch (IOException e) { + log.error("File '" + fileName + "' cannot be read"); + throw e; } - fileReader.close(); - log.debug("...end readMapStrinString..."); + } // ..end readMapStringString private void readMapIntegerString(String fileName, LinkedHashMap map, @@ -452,83 +267,42 @@ private void readMapIntegerString(String fileName, LinkedHashMap set) throws IOException { - log.debug("...start readSetString..."); - log.debug("parsing file '{}'", fileName); + ArgoReferenceEntry info = new ArgoReferenceEntry(st); - File file = new File(fileName); - if (!file.isFile()) { - log.error("File '" + fileName + "' does not exist"); - throw new IOException("File ('" + fileName + "') does not exist"); - } else if (!file.canRead()) { + map.put(Integer.valueOf(st[0]), info); + } + fileReader.close(); + log.debug("...end readMapIntegerString..."); + } catch (FileNotFoundException e) { + log.error("File '{}' not found", fileName); + throw e; + } catch (IOException e) { log.error("File '" + fileName + "' cannot be read"); - throw new IOException("File ('" + fileName + "') cannot be read"); + throw e; } - BufferedReader fileReader = new BufferedReader(new FileReader(fileName)); - - // ..read through the file - - String line; - while ((line = fileReader.readLine()) != null) { - if (pBlankOrComment.matcher(line).matches()) { - log.debug("skipped line = '{}'", line); - continue; - } - - log.debug("line = '{}'", line); - - // .....parse the line into individual entries..... - // String st[] = line.split("\\|"); - // for (int n = 0 ; n < st.length ; n++) { - // String s = st[n].trim(); - // st[n] = s; - // } - - // ArgoReferenceEntry info = new ArgoReferenceEntry(st); - - set.add(line.trim()); - } - fileReader.close(); - log.debug("...end readSetString..."); - } // ..end readSetString + } // ..end readMapIntegerString // ................................................................. // INNER CLASSES diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/specs/AuxilliarySettings.java b/file_checker_exec/src/main/java/fr/coriolis/checker/specs/AuxilliarySettings.java new file mode 100644 index 0000000..00948c5 --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/specs/AuxilliarySettings.java @@ -0,0 +1,49 @@ +package fr.coriolis.checker.specs; + +public class AuxilliarySettings { + + private String errComment; + private String errLongName; + private String presAxis; + private String presAdjAxis; + + public AuxilliarySettings() { + this.errComment = null; + this.errLongName = null; + this.presAdjAxis = "Z"; + this.presAxis = "Z"; // REQ_0037 1/2 + } + + public String getErrComment() { + return this.errComment; + } + + public String getErrLongName() { + return errLongName; + } + + public void setErrLongName(String errLongName) { + this.errLongName = errLongName; + } + + public String getPresAxis() { + return presAxis; + } + + public void setPresAxis(String presAxis) { + this.presAxis = presAxis; + } + + public String getPresAdjAxis() { + return presAdjAxis; + } + + public void setPresAdjAxis(String pres_adjAxis) { + this.presAdjAxis = pres_adjAxis; + } + + public void setErrComment(String errComment) { + this.errComment = errComment; + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/specs/SpecIO.java b/file_checker_exec/src/main/java/fr/coriolis/checker/specs/SpecIO.java new file mode 100644 index 0000000..17a7b89 --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/specs/SpecIO.java @@ -0,0 +1,65 @@ +package fr.coriolis.checker.specs; + +import java.io.FileNotFoundException; +import java.io.IOException; +import java.io.InputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; + +public final class SpecIO { + + // --- Singleton --- + private static volatile SpecIO specIOInstance; + + private final String RESOURCES_BASE_PATH = "/file_checker_spec"; + private final boolean internalSpecs; + private final Path externalBaseDir; // needed if internalSpecs == false + + public static SpecIO getInstance() { + if (specIOInstance == null) { + throw new IllegalStateException("SpecIO not initialized"); + } + return specIOInstance; + } + + public static void init(boolean internalSpecs, String externBaseDir) { + if (specIOInstance != null) { + return; + } + synchronized (SpecIO.class) { + if (specIOInstance == null) { + specIOInstance = new SpecIO(internalSpecs, (externBaseDir == null ? null : Paths.get(externBaseDir))); + } + } + } + + private SpecIO(boolean internalSpecs, Path externalBaseDir) { + this.internalSpecs = internalSpecs; + this.externalBaseDir = externalBaseDir; + + if (!internalSpecs && externalBaseDir == null) { + throw new IllegalArgumentException("spec dir required in offline mode"); + } + } + + // Public methods : + public InputStream open(String fileName) throws IOException { + + if (internalSpecs) { + String resourcePath = RESOURCES_BASE_PATH + "/" + fileName; // ex: "/specs/spec.properties" + InputStream in = SpecIO.class.getResourceAsStream(resourcePath); + if (in == null) { + throw new FileNotFoundException("File not found: " + resourcePath); + } + return in; + } else { + Path p = externalBaseDir.resolve(fileName).normalize(); + if (!Files.exists(p)) { + throw new FileNotFoundException("File not found: " + p); + } + return Files.newInputStream(p); + } + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/tables/ArgoNVSReferenceTable.java b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/ArgoNVSReferenceTable.java new file mode 100644 index 0000000..0e3a06a --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/ArgoNVSReferenceTable.java @@ -0,0 +1,189 @@ +package fr.coriolis.checker.tables; + +import java.io.FileNotFoundException; +import java.io.IOException; +import java.io.InputStream; +import java.io.PrintStream; +import java.util.HashMap; +import java.util.Map; + +import fr.coriolis.checker.specs.SpecIO; +import fr.coriolis.checker.utils.NetUtils; + +public final class ArgoNVSReferenceTable { + + private static PrintStream stderr = new PrintStream(System.err); + + public static enum RELEVANT_TABLES { + DATA_TYPE("DATA_TYPE", "R01"), DM_QC_FLAG("DM_QC_FLAG", "RD2"), PLATFORM_TYPE("PLATFORM_TYPE", "R23"), + PLATFORM_MAKER("PLATFORM_MAKER", "R24"), PROF_QC_FLAG("PROF_QC_FLAG", "RP2"), + POSITION_ACCURACY("POSITION_ACCURACY", "R05"), DATA_STATE_INDICATOR("DATA_STATE_INDICATOR", "R06"), + ARGO_WMO_INST_TYPE("ARGO_WMO_INST_TYPE", "R08"), POSITIONING_SYSTEM("POSITIONING_SYSTEM", "R09"), + TRANS_SYSTEM("TRANS_SYSTEM", "R10"), VERTICAL_SAMPLING_SCHEME("VERTICAL_SAMPLING_SCHEME", "R16"), + STATUS("STATUS", "R19"), GROUNDED("GROUNDED", "R20"), PLATFORM_FAMILY("PLATFORM_FAMILY", "R22"), + SENSOR("SENSOR", "R25"), SENSOR_MAKER("SENSOR_MAKER", "R26"), SENSOR_MODEL("SENSOR_MODEL", "R27"), + MEASUREMENT_CODE_ID("MEASUREMENT_CODE_ID", "R15"), TECHNICAL_PARAMETER_NAME("TECHNICAL_PARAMETER_NAME", "R14"), + CONFIG_PARAMETER_NAME("CONFIG_PARAMETER_NAME", "R18"), PARAMETER("PARAMETER", "R03"), + PROGRAM_NAME("PROGRAM_NAME", "R41"), BATTERY_MAKER("BATTERY_MAKER", "R33"), BATTERY_TYPE("BATTERY_TYPE", "R34"), + BATTERY_SIZE("BATTERY_SIZE", "R35"), PI_NAME("PI_NAME", "R40"); + + public final String name; + public final String code; + + RELEVANT_TABLES(String name, String code) { + this.name = name; + this.code = code; + } + + public static RELEVANT_TABLES fromName(String name) { + for (RELEVANT_TABLES t : RELEVANT_TABLES.values()) { + if (t.name.equals(name)) { + return t; + } + } + return null; + } + + public String getCode() { + return code; + } + }; + + // ========== + // ALL TABLES + // ========== + public static SkosCollection DATA_TYPE_TABLE; + public static SkosCollection DM_QC_FLAG_TABLE; + public static SkosCollection PLATFORM_TYPE_TABLE; + public static SkosCollection PLATFORM_MAKER_TABLE; + public static SkosCollection PROF_QC_FLAG_TABLE; + public static SkosCollection POSITION_ACCURACY_TABLE; + public static SkosCollection DATA_STATE_INDICATOR_TABLE; + public static SkosCollection ARGO_WMO_INST_TYPE_TABLE; + public static SkosCollection POSITIONING_SYSTEM_TABLE; + public static SkosCollection TRANS_SYSTEM_TABLE; + public static SkosCollection VERTICAL_SAMPLING_SCHEME_TABLE; + public static SkosCollection STATUS_TABLE; + public static SkosCollection GROUNDED_TABLE; + public static SkosCollection PLATFORM_FAMILY_TABLE; + public static SkosCollection SENSOR_TABLE; + public static SkosCollection SENSOR_MAKER_TABLE; + public static SkosCollection SENSOR_MODEL_TABLE; + public static SkosCollection MEASUREMENT_CODE_ID_TABLE; + public static SkosCollection TECHNICAL_PARAMETER_NAME_TABLE; + public static SkosCollection CONFIG_PARAMETER_NAME_TABLE; + public static SkosCollection PARAMETER_TABLE; + public static SkosCollection PROGRAM_NAME_TABLE; + public static SkosCollection BATTERY_MAKER_TABLE; + public static SkosCollection BATTERY_TYPE_TABLE; + public static SkosCollection BATTERY_SIZE_TABLE; + public static SkosCollection PI_NAME_TABLE; + + // ==== + // INIT + // ==== + /** + * Initialize NVS references tables (static variables) : loop over all files in + * the spec folder (from SpecIO) and instanciate a SkosCollection if file is a + * NVS jsonld table. Then populate all static variable of the Argo netcdf files + * checkers 's useful tables. + * + * @param nvsFolderPath + */ + public static void initialize() { + // MAp to store the tables + Map nvsReferenceTables = new HashMap<>(); + + // loop over relevant table list + for (RELEVANT_TABLES t : RELEVANT_TABLES.values()) { + String fileRableName = "NVS/" + t.getCode() + ".jsonld"; + try (InputStream tableInputStream = SpecIO.getInstance().open(fileRableName)) { + processNVSTableFile(nvsReferenceTables, tableInputStream); + } catch (FileNotFoundException e) { + stderr.println("Table file not found : " + fileRableName + " (" + e.getMessage() + ")"); + break; + } catch (IOException e) { + stderr.println("Failed to parse table file: " + fileRableName + " (" + e.getMessage() + ")"); + break; + } + } + + populateStaticTables(nvsReferenceTables); + } + + /** + * Initialize the NVS tables from the nerc server on internet. + * + */ + + public static void initializeFromInternet(String baseUrl) { + Map nvsReferenceTables = new HashMap<>(); + + // Loop through relevant tables list : + for (RELEVANT_TABLES t : RELEVANT_TABLES.values()) { + String tableUrl = baseUrl + t.getCode() + "/current/?_profile=nvs&_mediatype=application/ld+json"; + try (InputStream tableInputStream = NetUtils.openInputStream(tableUrl)) { + processNVSTableFile(nvsReferenceTables, tableInputStream); + } catch (IOException e) { + stderr.println("Table file not found on NVS : " + tableUrl + " (" + e.getMessage() + ")"); + break; + } catch (InterruptedException e) { + stderr.println("Error while retrieving table on NVS : " + tableUrl + " (" + e.getMessage() + ")"); + break; + } + } + + populateStaticTables(nvsReferenceTables); + + } + + // ================== + // CONVENIENT METHODS + // ================== + private static void processNVSTableFile(Map nvsReferenceTables, + InputStream tableInput) throws IOException { + // table parser : + ArgoNVSReferenceTableParser nvsTablesParser = new ArgoNVSReferenceTableParser(); + + SkosCollection table; + + // parse table : + table = nvsTablesParser.getCollection(tableInput); + + // is it a relevant table ? + RELEVANT_TABLES enumKey = RELEVANT_TABLES.fromName(table.getAltLabel()); + if (enumKey != null) { + nvsReferenceTables.put(enumKey, table); + } + } + + private static void populateStaticTables(Map nvsReferenceTables) { + DATA_TYPE_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.DATA_TYPE); + DM_QC_FLAG_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.DM_QC_FLAG); + PLATFORM_TYPE_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.PLATFORM_TYPE); + PLATFORM_MAKER_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.PLATFORM_MAKER); + PROF_QC_FLAG_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.PROF_QC_FLAG); + POSITION_ACCURACY_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.POSITION_ACCURACY); + DATA_STATE_INDICATOR_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.DATA_STATE_INDICATOR); + ARGO_WMO_INST_TYPE_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.ARGO_WMO_INST_TYPE); + POSITIONING_SYSTEM_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.POSITIONING_SYSTEM); + TRANS_SYSTEM_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.TRANS_SYSTEM); + VERTICAL_SAMPLING_SCHEME_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.VERTICAL_SAMPLING_SCHEME); + STATUS_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.STATUS); + GROUNDED_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.GROUNDED); + PLATFORM_FAMILY_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.PLATFORM_FAMILY); + SENSOR_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.SENSOR); + SENSOR_MAKER_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.SENSOR_MAKER); + SENSOR_MODEL_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.SENSOR_MODEL); + MEASUREMENT_CODE_ID_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.MEASUREMENT_CODE_ID); + TECHNICAL_PARAMETER_NAME_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.TECHNICAL_PARAMETER_NAME); + CONFIG_PARAMETER_NAME_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.CONFIG_PARAMETER_NAME); + PARAMETER_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.PARAMETER); + PROGRAM_NAME_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.PROGRAM_NAME); + BATTERY_MAKER_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.BATTERY_MAKER); + BATTERY_TYPE_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.BATTERY_TYPE); + BATTERY_SIZE_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.BATTERY_SIZE); + PI_NAME_TABLE = nvsReferenceTables.get(RELEVANT_TABLES.PI_NAME); + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/tables/ArgoNVSReferenceTableParser.java b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/ArgoNVSReferenceTableParser.java new file mode 100644 index 0000000..f6353fb --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/ArgoNVSReferenceTableParser.java @@ -0,0 +1,123 @@ +package fr.coriolis.checker.tables; + +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.util.HashMap; +import java.util.Map; + +import com.fasterxml.jackson.core.JsonParseException; +import com.fasterxml.jackson.databind.DeserializationFeature; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.ObjectMapper; + +import ioinformarics.oss.jackson.module.jsonld.JsonldModule; + +public class ArgoNVSReferenceTableParser { + private final ObjectMapper objectMapper; + + public ArgoNVSReferenceTableParser() { + this.objectMapper = initObjectMapper(); + } + + private ObjectMapper initObjectMapper() { + final ObjectMapper objectMapper = new ObjectMapper(); + // Ignore unknown properties in deserialization input + objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + // create the JSON-LD serialization/deserialization module + final JsonldModule module = new JsonldModule(); + // Register module : + objectMapper.registerModule(module); + + return objectMapper; + } + + public SkosCollection getCollection(File jsonLdFile) throws IOException { + + try (InputStream in = new FileInputStream(jsonLdFile)) { + return getCollection(in); + } + } + + public SkosCollection getCollection(InputStream jsonLdStream) throws IOException { + // read json : + JsonNode root = objectMapper.readTree(jsonLdStream); + JsonNode graphArray = root.get("@graph"); + if (graphArray == null || !graphArray.isArray()) { + throw new IllegalArgumentException("JSON-LD do not contains @graph array !"); + } + // find Collection and concepts : + SkosCollection collection = null; + Map conceptsMap = new HashMap<>(); + + for (JsonNode node : graphArray) { + // try to bin the node to a SkosCollection : + collection = readCollection(node); + // if node is a concept, index it : + SkosConcept skosConcept = readConcepts(node); + if (skosConcept != null) { + conceptsMap.put(skosConcept.getId(), skosConcept); + } + } + + // populate collection members : + resolveMembers(collection, conceptsMap); + + return collection; + } + + /** + * Deserialize a SkosCollection object (if exists) from a json ld node. + * + * @param node - jsonld node + * @throws IOException + * @throws JsonParseException + * @throws JsonMappingException + */ + private SkosCollection readCollection(JsonNode node) throws IOException, JsonParseException, JsonMappingException { + if (node.has("@type") && node.get("@type").asText().equals("skos:Collection")) { + return objectMapper.readValue(node.toString(), SkosCollection.class); + } + return null; + } + + /** + * Deserialize a SkosConcept object (if exists) from a json ld node. + * + * @param node - jsonld node + * @throws JsonParseException + * @throws JsonMappingException + * @throws IOException + */ + private SkosConcept readConcepts(JsonNode node) throws JsonParseException, JsonMappingException, IOException { + if (node.has("@type") && node.get("@type").asText().equals("skos:Concept")) { + return objectMapper.readValue(node.toString(), SkosConcept.class); + } + return null; + } + + /** + * add concepts to SkosCollection 's conceptsMembers attribute. + * + * @param collection - The SkosCollection object + * @param conceptsMap - a map containing concept's ids and associated concept + * object + */ + private void resolveMembers(SkosCollection collection, Map conceptsMap) { + for (SkosConceptId conceptId : collection.getMembersIds()) { + // retrieve the corresponding concept from concepts map if exists : + SkosConcept conceptMember = conceptsMap.get(conceptId.getId()); + if (conceptMember != null) { + // add it to collection's concept members + // collection.getConceptMembersByIdsMap().put(conceptMember.getId(), + // conceptMember); + collection.getConceptMembersByAltLabelMap().put(conceptMember.getAltLabel(), conceptMember); + collection.getConceptMembersByPrefLabelMap().put(conceptMember.getPrefLabel(), conceptMember); + } + } + + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/tables/R03DeprecatedEntry.java b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/R03DeprecatedEntry.java new file mode 100644 index 0000000..46056f9 --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/R03DeprecatedEntry.java @@ -0,0 +1,67 @@ +package fr.coriolis.checker.tables; + +public class R03DeprecatedEntry { + private String paramName; + private String attributeKey; + private String oldValue; + private String status; + private String message; + + public R03DeprecatedEntry(String paramName, String attributeKey, String oldValue, String status, String message) { + this.paramName = paramName; + this.attributeKey = attributeKey; + this.oldValue = oldValue; + this.status = status; + this.message = message; + } + + @Override + public String toString() { + return String.format("DeprecatedEntry{param='%s', attribute='%s', oldValue='%s', status='%s', message='%s'}", + paramName, attributeKey, oldValue, status, message); + } + // =================== + // GETTERS AND SETTERS + // =================== + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message; + } + + public String getParamName() { + return paramName; + } + + public void setParamName(String paramName) { + this.paramName = paramName; + } + + public String getAttributeKey() { + return attributeKey; + } + + public void setAttributeKey(String attributeKey) { + this.attributeKey = attributeKey; + } + + public String getOldValue() { + return oldValue; + } + + public void setOldValue(String oldValue) { + this.oldValue = oldValue; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/tables/SkosCollection.java b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/SkosCollection.java new file mode 100644 index 0000000..8754b12 --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/SkosCollection.java @@ -0,0 +1,58 @@ +package fr.coriolis.checker.tables; + +import java.util.HashMap; +import java.util.Map; +import java.util.Set; + +import ioinformarics.oss.jackson.module.jsonld.annotation.JsonldId; +import ioinformarics.oss.jackson.module.jsonld.annotation.JsonldProperty; +import ioinformarics.oss.jackson.module.jsonld.annotation.JsonldType; + +@JsonldType("skos:Collection") +public class SkosCollection { + + @JsonldId + private String id; + @JsonldProperty("skos:altLabel") + private String altLabel; + @JsonldProperty("dc:title") + private String title; + @JsonldProperty("skos:member") + private Set membersIds; + + // private Map conceptMembersByIdsMap = new HashMap<>(); + private Map conceptMembersByAltLabelMap = new HashMap<>(); + private Map conceptMembersByPrefLabelMap = new HashMap<>(); + + // =================== + // GETTERS and SETTERS + // =================== + public String getId() { + return id; + } + + public String getAltLabel() { + return altLabel; + } + + public String getTitle() { + return title; + } + + public Set getMembersIds() { + return membersIds; + } + +// public Map getConceptMembersByIdsMap() { +// return conceptMembersByIdsMap; +// } + + public Map getConceptMembersByAltLabelMap() { + return conceptMembersByAltLabelMap; + } + + public Map getConceptMembersByPrefLabelMap() { + return conceptMembersByPrefLabelMap; + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/tables/SkosConcept.java b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/SkosConcept.java new file mode 100644 index 0000000..c517dfa --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/SkosConcept.java @@ -0,0 +1,139 @@ +package fr.coriolis.checker.tables; + +import java.util.Collections; +import java.util.Map; +import java.util.Set; + +import ioinformarics.oss.jackson.module.jsonld.annotation.JsonldId; +import ioinformarics.oss.jackson.module.jsonld.annotation.JsonldProperty; +import ioinformarics.oss.jackson.module.jsonld.annotation.JsonldType; + +@JsonldType("skos:Concept") +public class SkosConcept { + + public final static String INVALID_ALTLABEL_MESSAGE = "Invalid"; + public final static String DEPRECATED_CONCEPT = "Deprecated"; + + @JsonldId + private String id; + @JsonldProperty("skos:notation") + private Object notation; + @JsonldProperty("skos:altLabel") + private Object altLabel; + @JsonldProperty("skos:prefLabel") + private Object prefLabel; + @JsonldProperty("skos:definition") + private Object definition; + @JsonldProperty("owl:deprecated") + private boolean deprecated; + + @JsonldProperty("skos:related") + private Object relatedConceptIds; + + @JsonldProperty("skos:narrower") + private Object narrowerConceptIds; + + @JsonldProperty("skos:broader") + private Object broaderConceptIds; + + // private Set relatedConcepts; + + // =================== + // GETTERS and SETTERS + // =================== + public String getId() { + return id; + } + + public String getNotation() { + return getValue(notation); + } + + public String getAltLabel() { + return getValue(altLabel); + } + + public String getPrefLabel() { + return getValue(prefLabel); + } + + public String getDefinition() { + return getValue(definition); + } + + public boolean isDeprecated() { + return deprecated; + } + + public Set getRelatedConceptIds() { + return getSetOfIds(relatedConceptIds); + } + + public Set getNarrowerConceptIds() { + return getSetOfIds(narrowerConceptIds); + } + + public Set getBroaderConceptIds() { + return getSetOfIds(broaderConceptIds); + } + + // =================== + // CONVENIENCE METHODS + // =================== + + private Set getSetOfIds(Object objectContainingIds) { + if (objectContainingIds == null) { + return Collections.emptySet(); + } + + // Only one id (map) + if (objectContainingIds instanceof Map) { + String id = (String) ((Map) objectContainingIds).get("@id"); + if (id == null) { + return Collections.emptySet(); + } + return Collections.singleton(id); + } + // multiple id (list) + if (objectContainingIds instanceof Iterable) { + Set ids = new java.util.HashSet<>(); + for (Object obj : (Iterable) objectContainingIds) { + if (obj instanceof Map && ((Map) obj).containsKey("@id")) { + ids.add((String) ((Map) obj).get("@id")); + } + } + return ids; + } + // fallback + return Collections.emptySet(); + } + + /** + * Case where properties is an object. ex: "skos:definition": { "@language": + * "en", "@value": "Estimated value (interpolated, extrapolated or other + * estimation)." }, + * + * @param object + */ + private String getValue(Object object) { + if (object instanceof Map) { + return (String) ((Map) object).get("@value"); + } else if (object instanceof String) { + return (String) object; + } + return null; + } + + public boolean checkRelatedReference(String otherConceptId) { + return this.getRelatedConceptIds().contains(otherConceptId); + } + + public boolean checkNarowerReference(String otherConceptId) { + return this.getNarrowerConceptIds().contains(otherConceptId); + } + + public boolean checkBroaderReference(String otherConceptId) { + return this.getBroaderConceptIds().contains(otherConceptId); + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/tables/SkosConceptId.java b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/SkosConceptId.java new file mode 100644 index 0000000..b178d1c --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/tables/SkosConceptId.java @@ -0,0 +1,13 @@ +package fr.coriolis.checker.tables; + +import ioinformarics.oss.jackson.module.jsonld.annotation.JsonldId; + +public class SkosConceptId { + @JsonldId + private String id; + + public String getId() { + return id; + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/utils/NetUtils.java b/file_checker_exec/src/main/java/fr/coriolis/checker/utils/NetUtils.java new file mode 100644 index 0000000..36fe250 --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/utils/NetUtils.java @@ -0,0 +1,36 @@ +package fr.coriolis.checker.utils; + +import java.io.IOException; +import java.io.InputStream; +import java.net.URI; +import java.net.http.HttpClient; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; +import java.net.http.HttpResponse.BodyHandlers; +import java.time.Duration; + +public final class NetUtils { + private static final HttpClient httpClient = HttpClient.newBuilder().followRedirects(HttpClient.Redirect.NORMAL) + .build(); // need to automatically follow redirection + + public static InputStream openInputStream(String url) throws IOException, InterruptedException { + + // create request + HttpRequest req = HttpRequest.newBuilder(URI.create(url)).timeout(Duration.ofSeconds(15)) + .header("Accept", "application/ld+json").GET().build(); + + // send request : + HttpResponse res = httpClient.send(req, BodyHandlers.ofInputStream()); + + // client error response + if (res.statusCode() >= 400) { + // close stream if serveur send one + try (InputStream body = res.body()) { + /* ensure release */ } + throw new IOException("HTTP " + res.statusCode() + " for " + url); + } + + return res.body(); + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/utils/NvsDefinitionParser.java b/file_checker_exec/src/main/java/fr/coriolis/checker/utils/NvsDefinitionParser.java new file mode 100644 index 0000000..861e978 --- /dev/null +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/utils/NvsDefinitionParser.java @@ -0,0 +1,78 @@ +package fr.coriolis.checker.utils; + +import java.util.HashMap; +import java.util.Map; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +/* + * This class is useful to extract special attributes integrated into NVS table entry's definition field. + * Indeed for physical PARAM (table R03) , some attributes like units, valid_min, valid_max, category, etc present in the legacy file checker table 'argo-physical_params-spec' cannot , yet, be described in the R03 table wich is the table for parameters name. + * The choice has been made to include theses attributes in the defintion field of each R03 parameter entry. + * Ex : CHLA -> Definition = "Bisulfide concentration (umol/kg). Local_Attributes:{long_name:Bisulfide; standard_name:-; units:micromole/kg; valid_min:-; valid_max:-; category:b; fill_value:99999.f; data_type:float}." + * Same issue for R18 table and the definition by attributes. + * + * It is needed to parse this definition string and extract these attributes and provide a Map with key : attribute name, and value : attribute's value. + * + * + * + */ +public final class NvsDefinitionParser { + + private NvsDefinitionParser() { + throw new UnsupportedOperationException("Utility class"); + } + + /** + * Build a Map attributeName/AttributeValue from a "Definition" field containing + * a pattern "objectName:{attr1:value1;attr2:value2...}" + * + * @param objectName (String) + * @param stringToParse (String) + * @return + */ + public static Map parseAttributes(String objectName, String stringToParse) { + Map attributesMap = new HashMap<>(); + + String strPattern = objectName + ":\\{(.*?)\\}"; + Pattern pattern = Pattern.compile(strPattern); + Matcher matcher = pattern.matcher(stringToParse); + + // pattern has been found, extract attributes from it + if (matcher.find()) { + attributesMap = buildAttributesMap(matcher.group(1)); + } + + return attributesMap; + + } + + /** + * Extract attributes from a pattern and return a map + * attributeName/AttributeValue. Ex : "long_name:Bisulfide; standard_name:-; + * units:micromole/kg; valid_min:-; valid_max:-; category:b; fill_value:99999.f; + * data_type:float" + * + * @param extractedPattern (String) : ex : "long_name:Bisulfide; + * standard_name:-;units:micromole/kg; valid_min:-; + * valid_max:-; category:b; + * fill_value:99999.f;data_type:float" + * @return attributesMap (Map) : ex : keys : long_name, + * standard_name, valid_min, valid_max, category,etc. Values : + * Bisulfide, - , micromole/kg , etc. + */ + private static Map buildAttributesMap(String extractedPattern) { + Map attributesMap = new HashMap<>(); + String[] nameValueAttributes = extractedPattern.split(";"); + // for each attribute:value with split using ":" sperator + for (String nameValueString : nameValueAttributes) { + String[] nameValueArray = nameValueString.split(":"); + // we should have only 2 elements: + if (nameValueArray.length == 2) { + attributesMap.put(nameValueArray[0].trim(), nameValueArray[1].trim()); + } + } + return attributesMap; + } + +} diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoFileValidator.java b/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoFileValidator.java index 5b67c9b..7257c98 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoFileValidator.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoFileValidator.java @@ -3,11 +3,13 @@ import java.io.IOException; import java.io.PrintStream; import java.text.DecimalFormat; +import java.util.Arrays; import java.util.Date; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.regex.Pattern; +import java.util.stream.Collectors; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -21,6 +23,9 @@ import fr.coriolis.checker.specs.ArgoFileSpecification; import fr.coriolis.checker.specs.ArgoReferenceTable; import fr.coriolis.checker.specs.ArgoVariable; +import fr.coriolis.checker.tables.ArgoNVSReferenceTable; +import fr.coriolis.checker.tables.R03DeprecatedEntry; +import fr.coriolis.checker.tables.SkosConcept; import ucar.ma2.ArrayChar; import ucar.ma2.DataType; import ucar.ma2.Index; @@ -161,6 +166,9 @@ public boolean validateFormat(String dacName) { checkGroupsCompleteness(dataElement, dataGroup); // ......Step 6: Compare the spec global attributes to the file....... + // ======= + // CK_0002 + // ======= log.debug(".....verifyFormat: compare spec global attr to data file....."); verifyGlobalAttributes(dacName); @@ -171,139 +179,6 @@ public boolean validateFormat(String dacName) { return true; } // ..end validateFormat - /** - * Before checking data, verify if the file had not failed the format - * validations and if a valid dac name hase been passed in command line. Nulls - * in the "char" variables are also checked. - * - * @param dacName name of the DAC for this file - * @param ckNulls true = check all strings for NULL values; false = skip - * @return success indicator. true - validation was performed. false - - * validation could not be performed (getMessage() will return the - * reason). - * @throws IOException If an I/O error occurs - */ - public boolean basicDataValidation(boolean ckNulls) throws IOException { - // before checking data, verify if the file had not failed the format validation - // : - if (!validationResult.isValid()) { - ValidationResult.lastMessage = new String( - "File must be verified (verifyFormat) " + "successfully before validation"); - return false; - } - - // check dacName passed in argument line: - if (!checkDacNameArgument()) { - ValidationResult.lastMessage = new String("Unknown DAC name = '" + arFile.getDacName() + "'"); - return false; - } - - if (ckNulls) { - validateStringNulls(); - } - - return true; - } - - protected void validateCreationUpdateDates(Date fileTime) { - long fileSec = fileTime.getTime(); - - String creation = arFile.readString("DATE_CREATION").trim(); - String update = arFile.readString("DATE_UPDATE").trim(); - arFile.setCreationDate(creation); - arFile.setUpdateDate(update); - - log.debug("DATE_CREATION: '{}'", creation); - log.debug("DATE_UPDATE: '{}'", update); - - // ...........creation date checks:............. - // ..set, after earliestDate, and before file time - Date dateCreation = null; - boolean haveCreation = false; - long creationSec = 0; - - if (creation.trim().length() <= 0) { - validationResult.addError("DATE_CREATION: Not set"); - - } else { - dateCreation = ArgoDate.get(creation); - haveCreation = true; - - if (dateCreation == null) { - haveCreation = false; - validationResult.addError("DATE_CREATION: '" + creation + "': Invalid date"); - - } else { - creationSec = dateCreation.getTime(); - - if (dateCreation.before(earliestDate)) { - validationResult.addError("DATE_CREATION: '" + creation + "': Before earliest allowed date ('" - + ArgoDate.format(earliestDate) + "')"); - - } else if ((arFile.getCreationSec() - fileSec) > oneDaySec) { - validationResult.addError("DATE_CREATION: '" + creation + "': After GDAC receipt time ('" - + ArgoDate.format(fileTime) + "')"); - } - } - } - arFile.setHaveCreationDate(haveCreation); - arFile.setCreationSec(creationSec); - // ............update date checks:........... - // ..set, not before creation time, before file time - Date dateUpdate = null; - boolean haveUpdate = false; - long updateSec = 0; - - if (update.trim().length() <= 0) { - validationResult.addError("DATE_UPDATE: Not set"); - } else { - dateUpdate = ArgoDate.get(update); - haveUpdate = true; - - if (dateUpdate == null) { - validationResult.addError("DATE_UPDATE: '" + update + "': Invalid date"); - haveUpdate = false; - - } else { - updateSec = dateUpdate.getTime(); - - if (arFile.isHaveCreationDate() && dateUpdate.before(dateCreation)) { - validationResult - .addError("DATE_UPDATE: '" + update + "': Before DATE_CREATION ('" + creation + "')"); - } - - if ((updateSec - fileSec) > oneDaySec) { - validationResult.addError("DATE_UPDATE: '" + update + "': After GDAC receipt time ('" - + ArgoDate.format(fileTime) + "')"); - } - } - } - arFile.setHaveUpdateDate(haveUpdate); - arFile.setUpdateSec(updateSec); - } - - protected boolean validatePlatfomNumber(String platformNumberStr) { - log.debug("{}: '{}'", "PLATFORM_NUMBER", platformNumberStr); - - return platformNumberStr.matches("[1-9][0-9]{4}|[1-9]9[0-9]{5}"); - } - - protected void validateDataCentre(ArgoReferenceTable.DACS dac) { - String name = "DATA_CENTRE"; // ..ref table 4 (and valid for DAC) - String str = arFile.readString(name).trim(); - log.debug("{}: '{}'", name, str); - if (dac != null) { - if (!ArgoReferenceTable.DacCenterCodes.get(dac).contains(str)) { - validationResult.addError("DATA_CENTRE: '" + str + "': Invalid for DAC " + dac); - } - - } else { // ..incoming DAC not set - if (!ArgoReferenceTable.DacCenterCodes.containsValue(str)) { - validationResult.addError("DATA_CENTRE: '" + str + "': Invalid (for all DACs)"); - } - } - } - private void verifyGlobalAttributes(String dacName) { for (String name : arFile.getFileSpec().getGlobalAttributeNames()) { ArgoAttribute specAttr = arFile.getFileSpec().getGlobalAttribute(name); @@ -349,6 +224,9 @@ private boolean ckVarAttr(Variable dataVar, ArgoVariable specVar) { // log.debug ("ckVarAttr: {}", attrName); if (specAttr == null) { + // ======= + // CK_0023 + // ======= // ..data file attribute is not in the specification /* @@ -366,6 +244,9 @@ private boolean ckVarAttr(Variable dataVar, ArgoVariable specVar) { continue; } + // =========== + // CK_0022 1/2 + // =========== // ..check if the spec attribute is label "NOT_ALLOWED" error ArgoAttribute.AttrHandling specialHandling = specAttr.getHandling(); if (!checkAttributNotAllowed(varName, attrName, specialHandling)) { @@ -424,7 +305,9 @@ private boolean checkVarAttributeValue(Variable dataVar, String varName, Attribu || specialHandling == ArgoAttribute.AttrHandling.IGNORE_VALUE)) { String dataAttrValue = null; String specAttrValue = specAttr.getValue().toString(); - + // ======= + // CK_0017 + // ======= if (dataAttr.isString()) { try { dataAttrValue = dataAttr.getStringValue(); @@ -447,18 +330,20 @@ private boolean checkVarAttributeValue(Variable dataVar, String varName, Attribu if (!dataAttrValue.equals(specAttrValue)) { // ..data file attribute is not the same as the spec file attribute ArgoFileSpecification.AttrRegex regex = arFile.getFileSpec().getAttrRegex(varName, attrName); - if (regex == null) { - // ..no regex .. this is a format error - validationResult.addError( - "attribute: " + varName + ":" + attrName + ": Definitions differ " + "\n\tSpecification = '" - + specAttrValue + "'" + "\n\tData File = '" + dataAttrValue + "'"); - log.info("format error: {}:{} " + "attribute mismatch (no regex): spec, data = {}, {}", varName, - attrName, specAttrValue, dataAttrValue); - return false; + if (regex == null) { + // ..no regex .. this is a format error unless it is listed as a deprecated + // values + // ======= + // CK_0018 + // ======= + return checkDeprecatedAttrOrPropValue(varName, attrName, dataAttrValue, specAttrValue); } else { // ..regex defined ... does it match? + // ======= + // CK_0020 + // ======= if (!regex.pattern.matcher(dataAttrValue).matches()) { validationResult.addError("attribute: " + dataVar.getShortName() + ":" + dataAttr.getShortName() + ": Definitions differ " + "\n\tSpecification = '" + regex.pattern + "' (regex)" @@ -467,8 +352,11 @@ private boolean checkVarAttributeValue(Variable dataVar, String varName, Attribu return false; } else { + // ======= + // CK_0021 + // ======= if (regex.warn) { - validationResult.addError("attribute: " + dataVar.getShortName() + ":" + validationResult.addWarning("attribute: " + dataVar.getShortName() + ":" + dataAttr.getShortName() + ": Accepted; not standard value" + "\n\tSpecification = '" + specAttrValue + "'" + "\n\tException allowed = '" + regex.pattern + "' (regex)" + "\n\tData File = '" + dataAttrValue + "'"); @@ -487,6 +375,51 @@ private boolean checkVarAttributeValue(Variable dataVar, String varName, Attribu return true; } + /** + * check if an attribute or properties (data_type, category, extra_dim) value is + * listed in the deprecation versioned table. If so, add a warning or error + * message or pass depending on the status. return false if not found + * + * @param varName + * @param specAttrValue + * @return + */ + private boolean checkDeprecatedAttrOrPropValue(String varName, String attrName, String dataAttrValue, + String specAttrValue) { + List entries = arFile.getFileSpec().getDeprecatedPhysicalParamsEntries(); + + R03DeprecatedEntry entryFound = entries.stream().filter(e -> e.getParamName().equals(varName) + && e.getAttributeKey().equals(attrName) && e.getOldValue().equals(dataAttrValue)).findFirst() + .orElse(null); + + if (entryFound == null) { + // not found so not listed in deprecated table. add error and return false + validationResult.addError("attribute/property: " + varName + ":" + attrName + ": Definitions differ " + + "\n\tSpecification = '" + specAttrValue + "'" + "\n\tData File = '" + dataAttrValue + "'"); + log.info("format error: {}:{} " + "attribute mismatch (no regex): spec, data = {}, {}", varName, attrName, + specAttrValue, dataAttrValue); + + return false; + // ======= + // CK_0019 + // ======= + } else if (entryFound.getStatus().equals("warning")) { + validationResult.addWarning(entryFound.getMessage()); + return true; + } else if (entryFound.getStatus().equals("reject")) { + // found in the deprecatd table but listed with a status = "reject" + validationResult.addError(entryFound.getMessage()); + return false; + } else if (entryFound.getStatus().equals("pass")) { + // attribute found in deprecated table with "pass" status so no error nor + // warning. + return true; + } + + // if found but with unknown status, consider that as a "pass" + return true; + } + /** * Special case with wich for a same variable name have list of * units possble and may have different long_name. First, identify if the @@ -496,32 +429,61 @@ private boolean checkVarAttributeValue(Variable dataVar, String varName, Attribu */ private boolean checkSpecialTechParamVarAttributeValue(Variable dataVar, String varName, Attribute dataAttr, String attrName, ArgoAttribute specAttr, ArgoAttribute.AttrHandling specialHandling) { + boolean result = true; if (arFile.getFileSpec().ConfigTech != null && arFile.getFileSpec().ConfigTech.findTechParam(varName) != null) { // this variable is TECH_PARAM variable, check its attribut with list of units // and long_name. // dataAtt type already check in checkVarAttributeValue String dataAttrValue = dataAttr.getStringValue(); - if (attrName.equals("units") && !arFile.getFileSpec().ConfigTech.isConfigTechUnit(dataAttrValue) - && !arFile.getFileSpec().ConfigTech.isDeprecatedConfigTechUnit(dataAttrValue)) { - // dataAtt type already check in checkVarAttributeValue - // units not found in reference table ! - validationResult.addError("attribute: " + varName + ":" + attrName + ": Definitions differ " - + "\n\tSpecification = See argo-tech_units-spec units list" + "\n\tData File = '" - + dataAttrValue + "'"); - + // check units + if (attrName.equals("units")) { + result = checkTechParamUnitsAttribute(varName, attrName, dataAttrValue); } - List authorizedLongName = arFile.getFileSpec().ConfigTech.getParamAuthorizedLongName().get(varName); - if (attrName.equals("long_name") && authorizedLongName != null - && !authorizedLongName.contains(dataAttrValue)) { + // ======= + // CK_0096 + // ======= + // special case for long_name : should be varName_units + if (attrName.equals("long_name")) { + // TO DO : UNCOMMENT the following when UM3.45 is published to activate + // long_name check with rule _ (ADMT26 approved) +// result = checkTechParamLongNameAttribute(dataVar, varName, attrName, dataAttrValue); + } + + } - String specValueInErrorReport = authorizedLongName.size() == 1 ? "'" + authorizedLongName.get(0) + "'" - : "Multiple possibilities; see argo-tech_names-spec list, definition column"; + return result; + } - validationResult.addError( - String.format("attribute: %s:%s: Definitions differ\n\tSpecification = %s\n\tData File = '%s'", - varName, attrName, specValueInErrorReport, dataAttrValue)); - } + private boolean checkTechParamUnitsAttribute(String varName, String attrName, String dataAttrValue) { + // =========== + // CK_0095 2/2 + // =========== + if (!arFile.getFileSpec().ConfigTech.isConfigTechUnit(dataAttrValue) + && !arFile.getFileSpec().ConfigTech.isDeprecatedConfigTechUnit(dataAttrValue)) { + // units not found in reference table ! + validationResult.addError("attribute: " + varName + ":" + attrName + ": Definitions differ " + + "\n\tSpecification = See argo-tech_units-spec units list" + "\n\tData File = '" + + dataAttrValue + "'"); + return false; + + } + return true; + } + private boolean checkTechParamLongNameAttribute(Variable dataVar, String varName, String attrName, + String dataAttrValue) { + + // get unit value + Attribute unitAttribute = dataVar.findAttribute("units"); + String unitsValue = unitAttribute.getStringValue(); + // Build expected long_name + String expectedLonName = varName + "_" + unitsValue; + if (!dataAttrValue.equals(expectedLonName)) { + // long_name wrong ! + validationResult.addError("attribute: " + varName + ":" + attrName + ": Definitions differ " + + "\n\tSpecification : long_name = _ : " + expectedLonName + + "\n\tData File = '" + dataAttrValue + "'"); + return false; } return true; @@ -541,7 +503,9 @@ private boolean checkSpecialTechParamVarAttributeValue(Variable dataVar, String */ private boolean checkAttributeType(String varName, Attribute dataAttr, String attrName, ArgoAttribute specAttr) { DataType dataAttrType = dataAttr.getDataType(); - + // ======= + // CK_0015 + // ======= if (specAttr.isString()) { if (!dataAttr.isString()) { String err = String.format("attribute: %s:%s: Incorrect attribute value type. Must be string", varName, @@ -574,6 +538,9 @@ private boolean checkAttributeType(String varName, Attribute dataAttr, String at // log.debug("ckVarAttr: '{}': spec/data both Number", attrName); } else { + // ======= + // CK_0016 + // ======= // ..what the hell were you thinking? stderr.println("\n\n******\n" + "****** PROGRAM ERROR: ArgoDataFile(ckvarattr) " + varName + ":" + attrName + ": unknown specAttr type. TERMINATING.\n" + "******"); @@ -584,6 +551,7 @@ private boolean checkAttributeType(String varName, Attribute dataAttr, String at private boolean checkAttributNotAllowed(String varName, String attrName, ArgoAttribute.AttrHandling specialHandling) { + if (specialHandling == ArgoAttribute.AttrHandling.NOT_ALLOWED) { String err = String.format("attribute: %s:%s: Attribute is not allowed.", varName, attrName); // formatErrors.add(err) @@ -607,6 +575,9 @@ private boolean checkAttributNotAllowed(String varName, String attrName, * @return the boolean status. True - they are the same. False - they differ. */ private boolean ckVarDims(Variable dataVar, ArgoVariable specVar) { + // ======= + // CK_0013 + // ======= String specDims = specVar.getDimensionsString(); String dataDims = dataVar.getDimensionsString(); @@ -710,6 +681,9 @@ private boolean ckVarDims(Variable dataVar, ArgoVariable specVar) { */ private boolean ckVarTypes(Variable dataVar, ArgoVariable specVar) { + // ======= + // CK_0012 + // ======= // ..compare data type DataType specType = specVar.getType(); DataType dataType = dataVar.getDataType(); @@ -736,14 +710,19 @@ private boolean ckVarTypes(Variable dataVar, ArgoVariable specVar) { } // ..end ckVarTypes private void checkGlobalAttributeValue(String dacName, String name, ArgoAttribute specAttr, Attribute dataAttr) { + if (dataAttr.isString()) { String specValue = specAttr.getValue().toString(); String dataValue = dataAttr.getStringValue(); - + // ======= + // CK_0004 + // ======= if (!(specValue.startsWith(ArgoFileSpecification.ATTR_IGNORE) || specValue.startsWith(ArgoFileSpecification.ATTR_IGNORE_VALUE))) { // ..specAttr is not set for ignore - + // ======= + // CK_0003 + // ======= if (!dataValue.equals(specValue)) { // ..data file attribute is not the same as the spec file attribute @@ -777,7 +756,7 @@ private void checkGlobalAttributeValue(String dacName, String name, ArgoAttribut log.warn("TEMP WARNING: {}: {}: {}", dacName, arFile.getFileName(), err); } else { - if (regex.warn) { + if (regex.warn) { // useless as global attribute regex warn is always false validationResult.addWarning("global attribute: " + name + ": Accepted; not standard value" + "\n\tSpecification = '" + specValue + "'" + "\n\tException allowed = '" + regex.pattern + "' (regex)" @@ -846,7 +825,9 @@ private void checkGroupsCompleteness(HashSet dataElement, HashSet dataElement, HashSet dataGroup) { - + // ======= + // CK_0005 + // ======= List dimList = arFile.getNcReader().getDimensions(); if (dimList == null || dimList.isEmpty()) { @@ -1010,6 +1004,9 @@ private void verifyFileDimensions(HashSet dataElement, HashSet d } private void addElementToGroupIfDefinedInSpec(HashSet dataGroup, String elementName) { + // ======= + // CK_0009 + // ======= String group = arFile.getFileSpec().inGroup(elementName); if (group != null) { dataGroup.add(group); @@ -1017,6 +1014,9 @@ private void addElementToGroupIfDefinedInSpec(HashSet dataGroup, String } private void validateDimensionLength(Dimension dataDim, ArgoDimension specDim) { + // ======= + // CK_0007 + // ======= int specValue = specDim.getValue(); int dataValue = dataDim.getLength(); if (specValue > 0 && specValue != dataValue) { @@ -1030,6 +1030,9 @@ private void validateDimensionLength(Dimension dataDim, ArgoDimension specDim) { } private void handleExtraDimension(Dimension dataDim, String dimName) { + // ============ + // CK_0008 3/3 + // ============ ArgoDimension specDim; specDim = arFile.getFileSpec().addExtraDimension(dimName, dataDim.getLength()); @@ -1067,6 +1070,206 @@ private boolean checkDacNameArgument() { return true; } + // ========================= + // DATA validation + // ========================= + /** + * Before checking data, verify if the file had not failed the format + * validations and if a valid dac name hase been passed in command line. Nulls + * in the "char" variables are also checked. + * + * @param dacName name of the DAC for this file + * @param ckNulls true = check all strings for NULL values; false = skip + * @return success indicator. true - validation was performed. false - + * validation could not be performed (getMessage() will return the + * reason). + * @throws IOException If an I/O error occurs + */ + public boolean basicDataValidation(boolean ckNulls) throws IOException { + // before checking data, verify if the file had not failed the format validation + // : + if (!validationResult.isValid()) { + ValidationResult.lastMessage = new String( + "File must be verified (verifyFormat) " + "successfully before validation"); + return false; + } + + // check dacName passed in argument line: + if (!checkDacNameArgument()) { + ValidationResult.lastMessage = new String("Unknown DAC name = '" + arFile.getDacName() + "'"); + return false; + } + + if (ckNulls) { + validateStringNulls(); + } + + return true; + } + + protected void validateCreationUpdateDates(Date fileTime) { + long fileSec = fileTime.getTime(); + + String creation = arFile.readString("DATE_CREATION").trim(); + String update = arFile.readString("DATE_UPDATE").trim(); + arFile.setCreationDate(creation); + arFile.setUpdateDate(update); + + log.debug("DATE_CREATION: '{}'", creation); + log.debug("DATE_UPDATE: '{}'", update); + + // ...........creation date checks:............. + // ..set, after earliestDate, and before file time + Date dateCreation = null; + boolean haveCreation = false; + long creationSec = 0; + + // ======= + // CK_0024 + // ======= + if (creation.trim().length() <= 0) { + validationResult.addError("DATE_CREATION: Not set"); + + } else { + dateCreation = ArgoDate.get(creation); + haveCreation = true; + + if (dateCreation == null) { + haveCreation = false; + validationResult.addError("DATE_CREATION: '" + creation + "': Invalid date"); + + } else { + creationSec = dateCreation.getTime(); + // ======= + // CK_0025 + // ======= + if (dateCreation.before(earliestDate)) { + validationResult.addError("DATE_CREATION: '" + creation + "': Before earliest allowed date ('" + + ArgoDate.format(earliestDate) + "')"); + + } else if ((arFile.getCreationSec() - fileSec) > oneDaySec) { + // ======= + // CK_0026 + // ======= + validationResult.addError("DATE_CREATION: '" + creation + "': After GDAC receipt time ('" + + ArgoDate.format(fileTime) + "')"); + } + } + } + arFile.setHaveCreationDate(haveCreation); + arFile.setCreationSec(creationSec); + // ............update date checks:........... + // ..set, not before creation time, before file time + Date dateUpdate = null; + boolean haveUpdate = false; + long updateSec = 0; + // ======= + // CK_0027 + // ======= + if (update.trim().length() <= 0) { + validationResult.addError("DATE_UPDATE: Not set"); + } else { + dateUpdate = ArgoDate.get(update); + haveUpdate = true; + + if (dateUpdate == null) { + validationResult.addError("DATE_UPDATE: '" + update + "': Invalid date"); + haveUpdate = false; + + } else { + updateSec = dateUpdate.getTime(); + // ======= + // CK_0028 + // ======= + if (arFile.isHaveCreationDate() && dateUpdate.before(dateCreation)) { + validationResult + .addError("DATE_UPDATE: '" + update + "': Before DATE_CREATION ('" + creation + "')"); + } + + // ======= + // CK_0029 + // ======= + if ((updateSec - fileSec) > oneDaySec) { + validationResult.addError("DATE_UPDATE: '" + update + "': After GDAC receipt time ('" + + ArgoDate.format(fileTime) + "')"); + } + } + } + arFile.setHaveUpdateDate(haveUpdate); + arFile.setUpdateSec(updateSec); + } + + protected boolean validatePlatfomNumber(String platformNumberStr) { + log.debug("{}: '{}'", "PLATFORM_NUMBER", platformNumberStr); + + return platformNumberStr.matches("[1-9][0-9]{4}|[1-9]9[0-9]{5}"); + } + + protected void validateDataCentre(ArgoReferenceTable.DACS dac) { + String name = "DATA_CENTRE"; // ..ref table 4 (and valid for DAC) + String str = arFile.readString(name).trim(); + log.debug("{}: '{}'", name, str); + if (dac != null) { + // ======= + // CK_0039 + // ======= + if (!ArgoReferenceTable.DacCenterCodes.get(dac).contains(str)) { + validationResult.addError("DATA_CENTRE: '" + str + "': Invalid for DAC " + dac); + } + + } else { // ..incoming DAC not set + // ======= + // CK_0038 + // ======= + if (!ArgoReferenceTable.DacCenterCodes.containsValue(str)) { + validationResult.addError("DATA_CENTRE: '" + str + "': Invalid (for all DACs)"); + } + } + } + + /** + * Check if a String variable is empty. Error if empty + * + * @param varName : the variable name + */ + protected boolean checkStrVarEmpty(String varName) { + String str = arFile.readString(varName).trim(); + log.debug("{}: '{}'", varName, str); + if (str.length() <= 0) { + validationResult.addError(varName + ": Empty"); + return false; + } + return true; + } + + protected void validatePINAME() { + // first check if empty or not: + if (checkStrVarEmpty("PI_NAME")) { + // is not empty we can do next checks. + String piNamesStr = arFile.readString("PI_NAME").trim(); + // split the string to get the differents PI_NAME + List piNames = Arrays.stream(piNamesStr.split(",")).map(String::trim).filter(s -> !s.isEmpty()) + .collect(Collectors.toList()); + // for each PI_NAME check if in the NVS R40 table + for (String piName : piNames) { + SkosConcept piNameTableEntry = ArgoNVSReferenceTable.PI_NAME_TABLE.getConceptMembersByAltLabelMap() + .get(piName); + if (piNameTableEntry != null) { + if (piNameTableEntry.isDeprecated()) { + + validationResult + .addWarning("PI_NAME : '" + piName + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); + } + + } else { + + validationResult.addWarning("PI_NAME : '" + piName + "' Status: " + + SkosConcept.INVALID_ALTLABEL_MESSAGE + " (not in NVS R40 table)"); + } + } + } + } + // ......................................................... // ........... getGdacFileName .............. // ......................................................... @@ -1215,7 +1418,9 @@ public String getGdacFileName() { * @return true = file name conforms; false = file name non-conforming */ public boolean validateGdacFileName() { - + // ======= + // CK_0001 + // ======= String expected = getGdacFileName(); if (expected == null) { @@ -1386,7 +1591,6 @@ public void rudimentaryDateChecks() { // ..update date check // ..just check for valid date - String update = arFile.readString("DATE_UPDATE"); if (update.trim().length() <= 0) { diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoMetadataFileValidator.java b/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoMetadataFileValidator.java index d9a09f5..cfd3e64 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoMetadataFileValidator.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoMetadataFileValidator.java @@ -1,10 +1,12 @@ package fr.coriolis.checker.validators; import java.io.IOException; +import java.util.ArrayList; import java.util.Arrays; import java.util.Date; import java.util.HashMap; import java.util.HashSet; +import java.util.List; import java.util.Map; import java.util.Set; import java.util.function.Function; @@ -19,7 +21,8 @@ import fr.coriolis.checker.specs.ArgoConfigTechParam; import fr.coriolis.checker.specs.ArgoDate; import fr.coriolis.checker.specs.ArgoReferenceTable; -import fr.coriolis.checker.specs.ArgoReferenceTable.StringTable; +import fr.coriolis.checker.tables.ArgoNVSReferenceTable; +import fr.coriolis.checker.tables.SkosConcept; import ucar.ma2.ArrayChar; import ucar.nc2.Variable; @@ -132,7 +135,7 @@ public ArgoMetadataFileValidator(ArgoDataFile arFile) { * reason). * @throws IOException If an I/O error occurs */ - public boolean validateData(boolean ckNulls, boolean... optionalChecks) throws IOException { + public boolean validateData(boolean ckNulls) throws IOException { boolean basicsChecks = super.basicDataValidation(ckNulls); if (!basicsChecks) { return false; @@ -148,10 +151,8 @@ public boolean validateData(boolean ckNulls, boolean... optionalChecks) throws I validateOptionalParams(); validateConfigMission(); validateConfigParams(); + validateBattery(); - if ((optionalChecks.length > 0) && (optionalChecks[0] == true)) { - validateBattery(); - } } return true; @@ -159,7 +160,8 @@ public boolean validateData(boolean ckNulls, boolean... optionalChecks) throws I private void validateOptionalParams() { // PROGRAM_NAME - ref table 41 - checkOptionalParameterValueAgainstRefTable("PROGRAM_NAME", ArgoReferenceTable.PROGRAM_NAME, true); + checkOptionalParameterValueAgainstRefTable("PROGRAM_NAME", + ArgoNVSReferenceTable.PROGRAM_NAME_TABLE.getConceptMembersByAltLabelMap(), true); } /** @@ -223,6 +225,9 @@ public void validateDates() throws IOException { boolean haveLaunch = false; if (launch.trim().length() > 0) { + // ======= + // CK_0097 + // ======= dateLaunch = ArgoDate.get(launch); haveLaunch = true; @@ -231,6 +236,9 @@ public void validateDates() throws IOException { haveLaunch = false; } else { + // ======= + // CK_0098 + // ======= if (dateLaunch.before(earliestDate)) { validationResult.addError("LAUNCH_DATE: '" + launch + "': Before earliest allowed date ('" + ArgoDate.format(earliestDate) + "')"); @@ -244,7 +252,9 @@ public void validateDates() throws IOException { // ............start date checks:........... // ..if set, must be valid Date dateStart = null; - + // ======= + // CK_0099 + // ======= if (start.trim().length() > 0) { dateStart = ArgoDate.get(start); @@ -256,7 +266,9 @@ public void validateDates() throws IOException { // ............startup date checks:........... // ..if set, within 3 days of launch date (W) and launch data set (W) Date dateStartup = null; - + // ======= + // CK_0100 + // ======= if (startup.trim().length() > 0) { dateStartup = ArgoDate.get(startup); @@ -271,17 +283,25 @@ public void validateDates() throws IOException { if (end.trim().length() > 0) { dateEnd = ArgoDate.get(end); - + // ======= + // CK_0101 + // ======= if (dateEnd == null) { validationResult.addError("END_MISSION_DATE: '" + end + "': Invalid date"); } else { if (haveLaunch) { + // ======= + // CK_0102 + // ======= if (dateEnd.before(dateLaunch)) { validationResult - .addError("END_MISSION_DATE: '" + start + "': Before LAUNCH_DATE ('" + launch + "')"); + .addError("END_MISSION_DATE: '" + end + "': Before LAUNCH_DATE ('" + launch + "')"); } } else { + // ======= + // CK_0103 + // ======= validationResult.addWarning("END_MISSION_DATE: Set. LAUNCH_DATE missing"); } } @@ -317,6 +337,13 @@ public void validateHighlyDesirable_v2(ArgoReferenceTable.DACS dac) throws IOExc String name; String str; + // get NVS tables : +// SkosCollection qcFlagsTable = ArgoNVSReferenceTable.getNvsTableByName("DM_QC_FLAG"); +// SkosCollection positionningSystemTable = ArgoNVSReferenceTable.getNvsTableByName("POSITIONING_SYSTEM"); +// SkosCollection transSystemTable = ArgoNVSReferenceTable.getNvsTableByName("TRANS_SYSTEM"); + + SkosConcept tableEntry; + // ...........single valued variables.............. // ..CYCLE_TIME ---> see "per-cycle" checks below @@ -371,8 +398,9 @@ public void validateHighlyDesirable_v2(ArgoReferenceTable.DACS dac) throws IOExc ch = getChar(name); log.debug("{}: '{}'", name, ch); - if (!(info = ArgoReferenceTable.QC_FLAG.contains(ch)).isActive) { - validationResult.addWarning(name + ": '" + ch + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap().get(String.valueOf(ch)); + if (tableEntry == null) { + validationResult.addWarning(name + ": '" + ch + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } // ..PARAMETER --> see below @@ -395,8 +423,9 @@ public void validateHighlyDesirable_v2(ArgoReferenceTable.DACS dac) throws IOExc str = arFile.readString(name).trim(); log.debug("{}: '{}'", name, str); - if (!(info = ArgoReferenceTable.POSITIONING_SYSTEM.contains(str)).isActive) { - validationResult.addWarning(name + ": '" + str + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.POSITION_ACCURACY_TABLE.getConceptMembersByAltLabelMap().get(str); + if (tableEntry == null) { + validationResult.addWarning(name + ": '" + str + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } name = "PTT"; // ..not empty @@ -416,17 +445,17 @@ public void validateHighlyDesirable_v2(ArgoReferenceTable.DACS dac) throws IOExc name = "START_DATE_QC"; // ..valid ref table 2 value ch = getChar(name); log.debug("{}: '{}'", name, ch); - - if (!(info = ArgoReferenceTable.QC_FLAG.contains(ch)).isActive) { - validationResult.addWarning(name + ": '" + str + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap().get(String.valueOf(ch)); + if (tableEntry == null) { + validationResult.addWarning(name + ": '" + ch + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } name = "TRANS_SYSTEM"; // ..ref table 10 str = arFile.readString(name).trim(); log.debug("{}: '{}'", name, str); - - if (!(info = ArgoReferenceTable.TRANS_SYSTEM.contains(str)).isActive) { - validationResult.addWarning(name + ": '" + str + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.TRANS_SYSTEM_TABLE.getConceptMembersByAltLabelMap().get(str); + if (tableEntry == null) { + validationResult.addWarning(name + ": '" + str + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } name = "TRANS_SYSTEM_ID"; // ..not empty @@ -579,48 +608,48 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException String name; String str; - // ...........single valued variables.............. + // get nvs Tables : +// SkosCollection qcFlagsTable = ArgoNVSReferenceTable.getNvsTableByName("DM_QC_FLAG"); +// SkosCollection wmoInstTypeTable = ArgoNVSReferenceTable.getNvsTableByName("ARGO_WMO_INST_TYPE"); +// SkosCollection positioningSystemTable = ArgoNVSReferenceTable.getNvsTableByName("POSITIONING_SYSTEM"); +// SkosCollection transSystemTable = ArgoNVSReferenceTable.getNvsTableByName("TRANS_SYSTEM"); - name = "CONTROLLER_BOARD_SERIAL_NO_PRIMARY"; // ..not empty - str = arFile.readString(name).trim(); - log.debug("{}: '{}'", name, str); - if (str.length() <= 0) { - validationResult.addError(name + ": Empty"); - } + SkosConcept tableEntry; - name = "CONTROLLER_BOARD_TYPE_PRIMARY"; // ..not empty - str = arFile.readString(name).trim(); - log.debug("{}: '{}'", name, str); - if (str.length() <= 0) { - validationResult.addError(name + ": Empty"); - } + // ...........single valued variables.............. + // ======= + // CK_0104 + // ======= + super.checkStrVarEmpty("CONTROLLER_BOARD_SERIAL_NO_PRIMARY"); - name = "DAC_FORMAT_ID"; // ..not empty - str = arFile.readString(name).trim(); - log.debug("{}: '{}'", name, str); - if (str.length() <= 0) { - validationResult.addError(name + ": Empty"); - } + // ======= + // CK_0105 + // ======= + super.checkStrVarEmpty("CONTROLLER_BOARD_TYPE_PRIMARY"); + + // ======= + // CK_0106 + // ======= + super.checkStrVarEmpty("DAC_FORMAT_ID"); // DATA_CENTRE super.validateDataCentre(dac); - name = "FIRMWARE_VERSION"; // ..not empty - str = arFile.readString(name).trim(); - log.debug("{}: '{}'", name, str); - if (str.length() <= 0) { - validationResult.addError(name + ": Empty"); - } + // ======= + // CK_0107 + // ======= + super.checkStrVarEmpty("FIRMWARE_VERSION"); - name = "FLOAT_SERIAL_NO"; // ..not empty - str = arFile.readString(name).trim(); - log.debug("{}: '{}'", name, str); - if (str.length() <= 0) { - validationResult.addError(name + ": Empty"); - } + // ======= + // CK_0046 + // ======= + super.checkStrVarEmpty("FLOAT_SERIAL_NO"); // ..LAUNCH_DATE --> checked elsewhere + // ======= + // CK_0108 + // ======= name = "LAUNCH_LATITUDE"; // ..on the earth dVal = arFile.readDouble(name); log.debug("{}: {}", name, dVal); @@ -629,6 +658,9 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException validationResult.addError(name + ": " + dVal + ": Invalid"); } + // ======= + // CK_0109 + // ======= name = "LAUNCH_LONGITUDE"; // ..on the earth dVal = arFile.readDouble(name); log.debug("{}: {}", name, dVal); @@ -637,48 +669,57 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException validationResult.addError(name + ": " + dVal + ": Invalid"); } - name = "LAUNCH_QC"; // ..ref table 2 + name = "LAUNCH_QC"; // ..ref table NVS RD2 ch = getChar(name); log.debug("{}: '{}'", name, ch); - - if ((info = ArgoReferenceTable.QC_FLAG.contains(ch)).isValid()) { - if (info.isDeprecated) { - validationResult.addWarning(name + ": '" + ch + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap().get(String.valueOf(ch)); + if (tableEntry != null) { + if (tableEntry.isDeprecated()) { + // ======= + // CK_0111 + // ======= + validationResult.addWarning(name + ": '" + ch + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(name + ": '" + ch + "' Status: " + info.message); - } - - name = "MANUAL_VERSION"; // ..not empty - str = arFile.readString(name).trim(); - log.debug("{}: '{}'", name, str); - if (str.length() <= 0) { - validationResult.addError(name + ": Empty"); + // ======= + // CK_0110 + // ======= + validationResult.addError(name + ": '" + ch + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } + // ======= + // CK_0112 + // ======= + super.checkStrVarEmpty("MANUAL_VERSION"); // ..PARAMETER --> see below - name = "PI_NAME"; // ..not empty - str = arFile.readString(name).trim(); - log.debug("{}: '{}'", name, str); - if (str.length() <= 0) { - validationResult.addError(name + ": Empty"); - } + // ======= + // CK_0113 + // ======= + super.validatePINAME(); name = "PLATFORM_FAMILY"; // ..ref table 22 str = arFile.readString(name).trim(); log.debug("{}: '{}'", name, str); - - if ((info = ArgoReferenceTable.PLATFORM_FAMILY.contains(str)).isValid()) { - if (info.isDeprecated) { - validationResult.addWarning(name + ": '" + str + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.PLATFORM_FAMILY_TABLE.getConceptMembersByAltLabelMap().get(str); + if (tableEntry != null) { + if (tableEntry.isDeprecated()) { + // ======= + // CK_0115 + // ======= + validationResult.addWarning(name + ": '" + str + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(name + ": '" + str + "' Status: " + info.message); + // ======= + // CK_0114 + // ======= + validationResult.addError(name + ": '" + str + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } - + // ======= + // CK_0116 + // ======= name = "PLATFORM_NUMBER"; // ..valid wmo id str = arFile.readString(name).trim(); if (!super.validatePlatfomNumber(str)) { @@ -690,16 +731,25 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException String plfmMakerName = "PLATFORM_MAKER"; // ..ref table 24 String plfmMaker = arFile.readString(plfmMakerName).trim(); log.debug("{}: '{}'", plfmMakerName, plfmMaker); - - if ((info = ArgoReferenceTable.PLATFORM_MAKER.contains(plfmMaker)).isValid()) { + SkosConcept plfmMakerTableEntry = ArgoNVSReferenceTable.PLATFORM_MAKER_TABLE.getConceptMembersByAltLabelMap() + .get(plfmMaker); + if (plfmMakerTableEntry != null) { pmkrValid = true; - if (info.isDeprecated) { - validationResult.addWarning(plfmMakerName + ": '" + plfmMaker + "' Status: " + info.message); + if (plfmMakerTableEntry.isDeprecated()) { + // ======= + // CK_0118 + // ======= + validationResult + .addWarning(plfmMakerName + ": '" + plfmMaker + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(plfmMakerName + ": '" + plfmMaker + "' Status: " + info.message); + // ======= + // CK_0117 + // ======= + validationResult + .addError(plfmMakerName + ": '" + plfmMaker + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } boolean typValid = false; @@ -707,21 +757,33 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException String plfmTypeName = "PLATFORM_TYPE"; // ..ref table 23 String plfmType = arFile.readString(plfmTypeName).trim(); log.debug("{}: '{}'", plfmTypeName, plfmType); - - if ((info = ArgoReferenceTable.PLATFORM_TYPE.contains(plfmType)).isValid()) { + SkosConcept pltmTypeTableEntry = ArgoNVSReferenceTable.PLATFORM_TYPE_TABLE.getConceptMembersByAltLabelMap() + .get(plfmType); + if (pltmTypeTableEntry != null) { typValid = true; - if (info.isDeprecated) { - validationResult.addWarning(plfmTypeName + ": '" + plfmType + "' Status: " + info.message); + if (pltmTypeTableEntry.isDeprecated()) { + // ======= + // CK_0120 + // ======= + validationResult + .addWarning(plfmTypeName + ": '" + plfmType + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(plfmTypeName + ": '" + plfmType + "' Status: " + info.message); + // ======= + // CK_0119 + // ======= + validationResult + .addError(plfmTypeName + ": '" + plfmType + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } - + // ======= + // CK_0166 + // ======= if (pmkrValid && typValid) { if (!plfmType.equals("FLOAT")) { - if (!ArgoReferenceTable.PLATFORM_TYPExPLATFORM_MAKER.xrefContains(plfmType, plfmMaker)) { + + if (!pltmTypeTableEntry.checkRelatedReference(plfmMakerTableEntry.getId())) { validationResult.addError(plfmTypeName + "/" + plfmMakerName + ": Inconsistent: '" + plfmType + "'/'" + plfmMaker + "'"); log.debug("{}/{} xref inconsistent: plfmType, plfmMaker = '{}', '{}'", plfmTypeName, plfmMakerName, @@ -736,13 +798,10 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException // ..POSITIONING_SYSTEM --> see per-positioning_system below // ..PREDEPLOYMENT_CALIB_COEFFICIENT --> see per-param below // ..PREDEPLOYMENT_CALIB_EQUATION --> see per-param below - - name = "PTT"; - str = arFile.readString(name).trim(); - log.debug("{}: '{}'", name, str); - if (str.length() <= 0) { - validationResult.addError(name + ": Empty"); - } + // ======= + // CK_0121 + // ======= + super.checkStrVarEmpty("PTT"); // ..SENSOR --> see per-sensor below // ..SENSOR_MAKER --> see per-sensor below @@ -752,22 +811,26 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException name = "START_DATE_QC"; // ..ref table 2 ch = getChar(name); log.debug("{}: '{}'", name, ch); - - if ((info = ArgoReferenceTable.QC_FLAG.contains(ch)).isValid()) { - if (info.isDeprecated) { - validationResult.addWarning(name + ": '" + ch + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap().get(String.valueOf(ch)); + if (tableEntry != null) { + if (tableEntry.isDeprecated()) { + // ======= + // CK_0123 + // ======= + validationResult.addWarning(name + ": '" + ch + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(name + ": '" + ch + "' Status: " + info.message); + // ======= + // CK_0122 + // ======= + validationResult.addError(name + ": '" + ch + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } - name = "STANDARD_FORMAT_ID"; // ..not empty - str = arFile.readString(name).trim(); - log.debug("{}: '{}'", name, str); - if (str.length() <= 0) { - validationResult.addError(name + ": Empty"); - } + // ======= + // CK_0124 + // ======= + super.checkStrVarEmpty("STANDARD_FORMAT_ID"); // ..TRANS_FREQUENCY \ // ..TRANS_SYSTEM --> see per-trans_sys below @@ -778,27 +841,41 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException name = "WMO_INST_TYPE"; // ..ref table 8 str = arFile.readString(name).trim(); log.debug("{}: '{}'", name, str); - try { - int N = Integer.valueOf(str); - if ((info = ArgoReferenceTable.WMO_INST_TYPE.contains(N)).isValid()) { + SkosConcept wmoInstTypetableEntry = ArgoNVSReferenceTable.ARGO_WMO_INST_TYPE_TABLE + .getConceptMembersByAltLabelMap().get(str); + try { + // ======= + // CK_0125 + // ======= + Integer.valueOf(str); // check if can be converted to integer + if (wmoInstTypetableEntry != null) { wmoValid = true; - if (info.isDeprecated) { - validationResult.addWarning(name + ": '" + str + "' Status: " + info.message); + if (wmoInstTypetableEntry.isDeprecated()) { + // ======= + // CK_0127 + // ======= + validationResult.addWarning(name + ": '" + str + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(name + ": '" + str + "' Status: " + info.message); + // ======= + // CK_0126 + // ======= + validationResult.addError(name + ": '" + str + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } } catch (Exception e) { validationResult.addError(name + ": '" + str + "' Invalid. Must be integer."); } + // ======= + // CK_0167 + // ======= if (wmoValid && typValid) { if (!plfmType.equals("FLOAT")) { - if (!ArgoReferenceTable.PLATFORM_TYPExWMO_INST.xrefContains(plfmType, str)) { + if (!pltmTypeTableEntry.checkNarowerReference(wmoInstTypetableEntry.getId())) { validationResult .addError(plfmTypeName + "/" + name + ": Inconsistent: '" + plfmType + "'/'" + str + "'"); log.debug("{}/{} xref inconsistent: plfmType, wmo = '{}', '{}'", plfmTypeName, name, plfmType, str); @@ -820,20 +897,28 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException for (int n = 0; n < nParam; n++) { str = paramVar[n].trim(); log.debug(name + "[{}]: '{}'", n, str); + // ======= + // CK_0128 + // ======= if (!arFile.getFileSpec().isPhysicalParamName(str)) { validationResult.addError(name + "[" + (n + 1) + "]: '" + str + "': Invalid"); } } // check unicity in PARAMETER entries : + // ======= + // CK_0129 + // ======= Set duplicateParameters = checkForDuplicate(paramVar); if (duplicateParameters.size() > 0) { validationResult.addWarning( "PARAMETER variable contains duplicate values: [" + String.join(", ", duplicateParameters) + "]"); } + // ======= + // CK_0130 + // ======= name = "PARAMETER_UNITS"; // ..not empty paramVar = arFile.readStringArr(name); - for (int n = 0; n < nParam; n++) { str = paramVar[n].trim(); log.debug(name + "[{}]: '{}'", n, str); @@ -842,6 +927,9 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException } } + // ======= + // CK_0131 + // ======= name = "PARAMETER_SENSOR"; // ..not empty paramVar = arFile.readStringArr(name); @@ -853,6 +941,9 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException } } + // ======= + // CK_0132 + // ======= name = "PREDEPLOYMENT_CALIB_COEFFICIENT"; // ..not empty paramVar = arFile.readStringArr(name); @@ -865,6 +956,9 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException } } + // ======= + // CK_0133 + // ======= name = "PREDEPLOYMENT_CALIB_EQUATION"; // ..not empty paramVar = arFile.readStringArr(name); @@ -891,62 +985,85 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException String[] sensorModel = arFile.readStringArr(sensorModelName); for (int n = 0; n < nSensor; n++) { - ArgoReferenceTable.ArgoReferenceEntry mdlInfo; - ArgoReferenceTable.ArgoReferenceEntry mkrInfo; - ArgoReferenceTable.ArgoReferenceEntry snsrInfo; + SkosConcept sensorModelTableEntry; + SkosConcept sensorTableEntry; + SkosConcept sensorMakerTableEntry; // ..check SENSOR + // ================= + // CK_0134 & CK_0135 + // ================= String snsr = sensor[n].trim(); - snsrInfo = ArgoReferenceTable.SENSOR.contains(snsr); - boolean snsrValid = checkParameterValueAgainstRefTable(sensorName + "[" + (n + 1) + "]", snsr, - ArgoReferenceTable.SENSOR, false); + String normalizedSensorName = normalizeSensorName(snsr); + boolean snsrValid = checkParameterValueAgainstRefTable(sensorName + "[" + (n + 1) + "]", + normalizedSensorName, ArgoNVSReferenceTable.SENSOR_TABLE.getConceptMembersByAltLabelMap(), false); // ..check SENSOR_MAKER + // ================= + // CK_0136 & CK_0137 + // ================= String snsrMaker = sensorMaker[n].trim(); - mkrInfo = ArgoReferenceTable.SENSOR_MAKER.contains(snsrMaker); boolean smkrValid = checkParameterValueAgainstRefTable(sensorMakerName + "[" + (n + 1) + "]", snsrMaker, - ArgoReferenceTable.SENSOR_MAKER, false); + ArgoNVSReferenceTable.SENSOR_MAKER_TABLE.getConceptMembersByAltLabelMap(), false); log.debug(sensorMakerName + "[{}]: '{}'", n, snsrMaker); // ..check SENSOR_MODEL + // ================= + // CK_0138 & CK_0139 + // ================= String snsrModel = sensorModel[n].trim(); - mdlInfo = ArgoReferenceTable.SENSOR_MODEL.contains(snsrModel); boolean mdlValid = checkParameterValueAgainstRefTable(sensorModelName + "[" + (n + 1) + "]", snsrModel, - ArgoReferenceTable.SENSOR_MODEL, false); + ArgoNVSReferenceTable.SENSOR_MODEL_TABLE.getConceptMembersByAltLabelMap(), false); - // ..cross-reference SENSOR_MODEL / SENSOR_MAKER + // ..cross-reference SENSOR_MODEL R27 / SENSOR_MAKER R26 + // ======= + // CK_0164 + // ======= if (smkrValid && mdlValid) { + sensorModelTableEntry = ArgoNVSReferenceTable.SENSOR_MODEL_TABLE.getConceptMembersByAltLabelMap() + .get(snsrModel); + sensorMakerTableEntry = ArgoNVSReferenceTable.SENSOR_MAKER_TABLE.getConceptMembersByAltLabelMap() + .get(snsrMaker); if (!snsrModel.equals("UNKNOWN")) { - String mkr = mkrInfo.getColumn(1); - String mdl = mdlInfo.getColumn(1); - if (!ArgoReferenceTable.SENSOR_MODELxSENSOR_MAKER.xrefContains(mdl, mkr)) { + if (!sensorModelTableEntry.checkBroaderReference(sensorMakerTableEntry.getId())) { validationResult.addError(sensorModelName + "/" + sensorMakerName + "[" + (n + 1) + "]: " + "Inconsistent: '" + snsrModel + "'/'" + snsrMaker + "'"); - log.debug("SENSOR_MODEL/SENSOR_MAKER xref inconsistent: mdl, mkr = '{}', '{}'", mdl, mkr); + log.debug("SENSOR_MODEL/SENSOR_MAKER xref inconsistent: mdl, mkr = '{}', '{}'", + sensorModelTableEntry.getAltLabel(), sensorMakerTableEntry.getAltLabel()); } else { - log.debug("SENSOR_MODEL/SENSOR_MAKER xref valid: mdl, mkr = '{}', '{}'", mdl, mkr); + log.debug("SENSOR_MODEL/SENSOR_MAKER xref valid: mdl, mkr = '{}', '{}'", + sensorModelTableEntry.getAltLabel(), sensorMakerTableEntry.getAltLabel()); } } } - // ..cross-reference SENSOR_MODEL / SENSOR + // ..cross-reference SENSOR_MODEL R27 / SENSOR R25 + // ======= + // CK_0165 + // ======= if (snsrValid && mdlValid) { + sensorModelTableEntry = ArgoNVSReferenceTable.SENSOR_MODEL_TABLE.getConceptMembersByAltLabelMap() + .get(snsrModel); + sensorTableEntry = ArgoNVSReferenceTable.SENSOR_TABLE.getConceptMembersByAltLabelMap() + .get(normalizedSensorName); if (!snsrModel.equals("UNKNOWN")) { - String sn = snsrInfo.getColumn(1); - String mdl = mdlInfo.getColumn(1); - - if (!ArgoReferenceTable.SENSOR_MODELxSENSOR.xrefContains(mdl, sn)) { + if (!sensorModelTableEntry.checkRelatedReference(sensorTableEntry.getId())) { validationResult.addError(sensorModelName + "/" + sensorName + "[" + (n + 1) + "]: " + "Inconsistent: '" + snsrModel + "'/'" + snsr + "'"); - log.debug("SENSOR_MODEL/SENSOR xref inconsistent: mdl, sn = '{}', '{}'", mdl, sn); + log.debug("SENSOR_MODEL/SENSOR xref inconsistent: mdl, sn = '{}', '{}'", + sensorModelTableEntry.getAltLabel(), sensorTableEntry.getAltLabel()); } else { - log.debug("SENSOR_MODEL/SENSOR xref valid: mdl, sn = '{}', '{}'", mdl, sn); + log.debug("SENSOR_MODEL/SENSOR xref valid: mdl, sn = '{}', '{}'", + sensorModelTableEntry.getAltLabel(), sensorTableEntry.getAltLabel()); } } } } // check unicity in SENSOR entries : + // ======= + // CK_0140 + // ======= Set duplicateSensors = checkForDuplicate(sensor); if (duplicateSensors.size() > 0) { validationResult.addWarning( @@ -964,13 +1081,21 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException for (int n = 0; n < nPosit; n++) { str = positVar[n].trim(); log.debug(name + "[{}]: '{}'", n, str); - - if ((info = ArgoReferenceTable.POSITIONING_SYSTEM.contains(str)).isValid()) { - if (info.isDeprecated) { - validationResult.addWarning(name + "[" + (n + 1) + "]: '" + str + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.POSITIONING_SYSTEM_TABLE.getConceptMembersByAltLabelMap().get(str); + if (tableEntry != null) { + if (tableEntry.isDeprecated()) { + // ======= + // CK_0142 + // ======= + validationResult.addWarning( + name + "[" + (n + 1) + "]: '" + str + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(name + "[" + (n + 1) + "]: '" + str + "' Status: " + info.message); + // ======= + // CK_0141 + // ======= + validationResult.addError( + name + "[" + (n + 1) + "]: '" + str + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } } @@ -985,16 +1110,27 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException for (int n = 0; n < nTrans; n++) { str = transVar[n].trim(); log.debug(name + "[{}]: '{}'", n, str); - - if ((info = ArgoReferenceTable.TRANS_SYSTEM.contains(str)).isValid()) { - if (info.isDeprecated) { - validationResult.addWarning(name + "[" + (n + 1) + "]: '" + str + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.TRANS_SYSTEM_TABLE.getConceptMembersByAltLabelMap().get(str); + if (tableEntry != null) { + if (tableEntry.isDeprecated()) { + // ======= + // CK_0144 + // ======= + validationResult.addWarning( + name + "[" + (n + 1) + "]: '" + str + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(name + "[" + (n + 1) + "]: '" + str + "' Status: " + info.message); + // ======= + // CK_0143 + // ======= + validationResult.addError( + name + "[" + (n + 1) + "]: '" + str + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } } + // ======= + // CK_0145 + // ======= name = "TRANS_SYSTEM_ID"; // ..not empty transVar = arFile.readStringArr(name); @@ -1010,19 +1146,25 @@ public void validateMandatory_v3(ArgoReferenceTable.DACS dac) throws IOException } // ..end validateMandatory_v3 private boolean checkParameterValueAgainstRefTable(String parameterName, String parameterValue, - StringTable refTable, boolean warningOnly) { + Map refTable, boolean warningOnly) { ArgoReferenceTable.ArgoReferenceEntry info; log.debug("{}: '{}'", parameterName, parameterValue); - if ((info = refTable.contains(parameterValue)).isValid()) { - if (info.isDeprecated) { - validationResult.addWarning(parameterName + ": '" + parameterValue + "' Status: " + info.message); + + SkosConcept tableEntry = refTable.get(parameterValue); + + if (tableEntry != null) { + if (tableEntry.isDeprecated()) { + validationResult.addWarning( + parameterName + ": '" + parameterValue + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } return true; } else { - String resultMessage = parameterName + ": '" + parameterValue + "' Status: " + info.message - + " (not in reference table)"; + String resultMessage = parameterName + ": '" + parameterValue + "' Status: " + + SkosConcept.INVALID_ALTLABEL_MESSAGE + " (not in reference table)"; +// validationResult.addError(sensorMakerName + "[" + (n + 1) + "]: '" + snsrMaker + "' Status: " +// + SkosConcept.INVALID_ALTLABEL_MESSAGE); if (warningOnly) { validationResult.addWarning(resultMessage); } else { @@ -1033,14 +1175,16 @@ private boolean checkParameterValueAgainstRefTable(String parameterName, String } } - private boolean checkOptionalParameterValueAgainstRefTable(String parameterName, StringTable refTable, + private boolean checkOptionalParameterValueAgainstRefTable(String parameterName, Map refTable, boolean warningOnly) { Variable dataVar = arFile.getNcReader().findVariable(parameterName); if (dataVar != null) { String parameterValue = arFile.readString(parameterName).trim(); - return checkParameterValueAgainstRefTable(parameterName, parameterValue, refTable, warningOnly); + + checkParameterValueAgainstRefTable(parameterName, parameterValue, refTable, warningOnly); } + return true; } @@ -1085,85 +1229,93 @@ private Character getChar(String name) throws IOException { public void validateBattery() throws IOException { log.debug(".....validateBattery....."); - // .........battery_type............ - int nTypes = 0; - - String str = arFile.readString("BATTERY_TYPE"); - log.debug("BATTERY_TYPE: '{}'", str); - - if (str.length() <= 0) { - validationResult.addError("BATTERY_TYPE: Empty"); + // .....BATTERY_TYPE..... + List typesTablesEntries = checkBatteryType(); - } else { - - // ..not empty - // ..split multiple strings based on "+" + // .....BATTERY_PACKS..... + List packTypesTablesEntries = checkBatteryPacks(); - for (String substr : str.split("\\+")) { - nTypes++; - log.debug("battery_type substring: '{}'", substr); - - Matcher m = pBatteryType.matcher(substr); - - if (m.matches()) { - String manu = m.group("manufacturer"); - String type = m.group("type"); - String volt = m.group("volts"); - - log.debug("...matched pattern: manu, type, volt = '{}', '{}', '{}'", manu, type, volt); + // ............compare TYPES and PACKS............ + crossCheckBatteryPacksAndBatteryType(typesTablesEntries, packTypesTablesEntries); - if (!ArgoReferenceTable.BATTERY_TYPE_manufacturer.contains(manu)) { - String err = String.format("BATTERY_TYPE[%d]: Invalid manufacturer: '{%s}'", nTypes, manu); - // validationResult.addError(err); + }// ..end validateBattery - // ################# TEMPORARY WARNING ################ - validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); - log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); + private void crossCheckBatteryPacksAndBatteryType(List typesTablesEntries, + List packTypesTablesEntries) { - log.debug("...invalid manufacturer"); + int nPacks = packTypesTablesEntries.size(); + int nTypes = typesTablesEntries.size(); - } else { - log.debug("valid manufacturer"); - } + if (nPacks >= 0) { + // ======= + // CK_0157 + // ======= + // same number of entries + if (nTypes != nPacks) { + String err = String.format("Number of BATTERY_TYPES {%d} != number of BATTERY_PACKS {%d}", nTypes, + nPacks); + // validationResult.addError(err); - if (!ArgoReferenceTable.BATTERY_TYPE_type.contains(type)) { - String err = String.format("BATTERY_TYPE[%d]: Invalid type: '{%s}'", nTypes, type); - // validationResult.addError(err); + // ################# TEMPORARY WARNING ################ + validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); + log.warn("TEMP WARNING: {%s}: {%s}: {%s}", arFile.getDacName(), arFile.getFileName(), err); - // ################# TEMPORARY WARNING ################ - validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); - log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); + log.debug("number of types != number of packs => {%d} != {%d}", nTypes, nPacks); + } else { + checkBatteryTypesConsistency(typesTablesEntries, packTypesTablesEntries); + } - log.debug("invalid type"); + } // ..end if nPacks >=0 - } else { - log.debug("valid type"); - } +// if (nPacks >= 0) { +// +// if (nTypes != nPacks) { +// String err = String.format("Number of BATTERY_TYPES {%d} != number of BATTERY_PACKS {%d}", nTypes, +// nPacks); +// // validationResult.addError(err); +// +// // ################# TEMPORARY WARNING ################ +// validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); +// log.warn("TEMP WARNING: {%s}: {%s}: {%s}", arFile.getDacName(), arFile.getFileName(), err); +// +// log.debug("number of types != number of packs => {%d} != {%d}", nTypes, nPacks); +// } +// +// } // ..end if nPacks >= 0 + } - } else { - // ..did not match the expected pattern + private void checkBatteryTypesConsistency(List typesTablesEntries, + List packTypesTablesEntries) { + // ======= + // CK_0158 + // ======= + // same number of entries, for each entries, same concept should be found for + // "Battery" + for (int i = 0; i < packTypesTablesEntries.size(); i++) { + SkosConcept batteryTypeType = typesTablesEntries.get(i); + SkosConcept batteryPackType = packTypesTablesEntries.get(i); + if (batteryPackType != null && batteryTypeType != null) { + if (!batteryPackType.getId().equals(batteryTypeType.getId())) { + // not same type : inconsistencies String err = String.format( - "BATTERY_TYPE[%d]: Does not match template 'manufacturer type volts V': '%s'", nTypes, - substr.trim()); - // validationResult.addError(err); - - // ################# TEMPORARY WARNING ################ - validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); - log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); - - log.debug("...does not match template"); + "Inconsistent battery's type in BATTERY_TYPE[%d] and BATTERY_PACKS[%d]. BATTERY_TYPE's type ={%s}, BATTERY_PACKS's type = {%s}", + i + 1, i + 1, batteryTypeType.getAltLabel(), batteryPackType.getPrefLabel()); + validationResult.addWarning(err); } } - } // ..endif battery_type is filled + } + } - // .....battery_packs..... + private List checkBatteryPacks() { + String str; int nPacks = -1; + List typesTablesEntries = new ArrayList<>(); str = arFile.readString("BATTERY_PACKS"); log.debug("BATTERY_PACKS: '{}'", str); - if (str.length() <= 0) { + if (str.trim().length() <= 0) { // ..empty - allowed - optional variable log.debug("BATTERY_PACKS: empty (allowed)"); @@ -1178,6 +1330,10 @@ public void validateBattery() throws IOException { log.debug("battery_packs substring: '{}'", substr); if (substr.trim().equals("U")) { + typesTablesEntries.add(null); + // ======= + // CK_0152 + // ======= log.debug("battery_packs substring == U (undefined)"); } else { @@ -1193,7 +1349,23 @@ public void validateBattery() throws IOException { log.debug("...matched pattern: num, style, type = '{}', '{}', '{}", num, style, type); - if (!ArgoReferenceTable.BATTERY_PACKS_style.contains(style)) { + // ======= + // CK_0153 + // ======= + SkosConcept styleTableEntry = ArgoNVSReferenceTable.BATTERY_SIZE_TABLE + .getConceptMembersByAltLabelMap().get(style); + if (styleTableEntry != null) { + if (styleTableEntry.isDeprecated()) { + // ======= + // CK_0154 + // ======= + String err = String.format("BATTERY_PACKS[%d]: Deprecated style of battery: '{%s}'", + nPacks, style); + validationResult.addWarning(err); + } else { + log.debug("valid style"); + } + } else { String err = String.format("BATTERY_PACKS[%d]: Invalid style of battery: '{%s}'", nPacks, style); // validationResult.addError(err); @@ -1203,12 +1375,26 @@ public void validateBattery() throws IOException { log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); log.debug("invalid style"); - - } else { - log.debug("valid style"); } - if (!ArgoReferenceTable.BATTERY_PACKS_type.contains(type)) { + // ======= + // CK_0155 + // ======= + // BATTERY_TYPE pref label + SkosConcept typeTableEntry = ArgoNVSReferenceTable.BATTERY_TYPE_TABLE + .getConceptMembersByPrefLabelMap().get(type); + typesTablesEntries.add(typeTableEntry); + if (typeTableEntry != null) { + if (typeTableEntry.isDeprecated()) { + // ======= + // CK_0156 + // ======= + String err = String.format("BATTERY_PACKS[%d]: Deprecated type: '{%s}'", nPacks, type); + validationResult.addWarning(err); + } else { + log.debug("valid type"); + } + } else { String err = String.format("BATTERY_PACKS[%d]: Invalid type: '{%s}'", nPacks, type); // validationResult.addError(err); @@ -1217,12 +1403,10 @@ public void validateBattery() throws IOException { log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); log.debug("invalid type"); - - } else { - log.debug("valid type"); } } else { + typesTablesEntries.add(null); // ..did not match the expected pattern String err = String.format( "BATTERY_PACKS[%d]: Does not match template 'xStyle type (or U): '%s'", nPacks, @@ -1238,25 +1422,116 @@ public void validateBattery() throws IOException { } // ..end if undefined } // ..end for (battery_packs substrings) } // ..endif BATTERY_PACKS is filled + return typesTablesEntries; + } - // ............compare TYPES and PACKS............ + private List checkBatteryType() { + int nTypes = 0; + List typesTablesEntries = new ArrayList<>(); - if (nPacks >= 0) { + String str = arFile.readString("BATTERY_TYPE"); + log.debug("BATTERY_TYPE: '{}'", str); - if (nTypes != nPacks) { - String err = String.format("Number of BATTERY_TYPES {} != number of BATTERY_PACKS {}", nTypes, nPacks); - // validationResult.addError(err); + if (str.trim().length() <= 0) { + // ======= + // CK_0146 + // ======= + validationResult.addWarning("BATTERY_TYPE: Empty. *** WILL BECOME AN ERROR ***"); - // ################# TEMPORARY WARNING ################ - validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); - log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); + } else { - log.debug("number of types != number of packs => {} != {}", nTypes, nPacks); - } + // ..not empty + // ..split multiple strings based on "+" - } // ..end if nPacks >= 0 + for (String substr : str.split("\\+")) { + nTypes++; + log.debug("battery_type substring: '{}'", substr); - }// ..end validateBattery + Matcher m = pBatteryType.matcher(substr); + + if (m.matches()) { + String manu = m.group("manufacturer"); + String type = m.group("type"); + String volt = m.group("volts"); + + log.debug("...matched pattern: manu, type, volt = '{}', '{}', '{}'", manu, type, volt); + + // ======= + // CK_0148 + // ======= + SkosConcept manuTableEntry = ArgoNVSReferenceTable.BATTERY_MAKER_TABLE + .getConceptMembersByAltLabelMap().get(manu); + + if (manuTableEntry != null) { + if (manuTableEntry.isDeprecated()) { + // ======= + // CK_0149 + // ======= + String err = String.format("BATTERY_TYPE[%d]: Deprecated manufacturer: '{%s}'", nTypes, + manu); + validationResult.addWarning(err); + } else { + log.debug("valid manufacturer"); + } + } else { + String err = String.format("BATTERY_TYPE[%d]: Invalid manufacturer: '{%s}'", nTypes, manu); + // validationResult.addError(err); + + // ################# TEMPORARY WARNING ################ + validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); + log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); + + log.debug("...invalid manufacturer"); + } + + // ======= + // CK_0150 + // ======= + SkosConcept typeTableEntry = ArgoNVSReferenceTable.BATTERY_TYPE_TABLE + .getConceptMembersByAltLabelMap().get(type); + typesTablesEntries.add(typeTableEntry); + if (typeTableEntry != null) { + if (typeTableEntry.isDeprecated()) { + // ======= + // CK_0151 + // ======= + String err = String.format("BATTERY_TYPE[%d]: Deprecated type: '{%s}'", nTypes, type); + validationResult.addWarning(err); + } else { + log.debug("valid type"); + } + } else { + // ..did not match the expected pattern + String err = String.format("BATTERY_TYPE[%d]: Invalid type: '{%s}'", nTypes, type); + + // ################# TEMPORARY WARNING ################ + validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); + log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); + + log.debug("invalid type"); + } + + } else { + typesTablesEntries.add(null); + // ======= + // CK_0147 + // ======= + // ..did not match the expected pattern + String err = String.format( + "BATTERY_TYPE[%d]: Does not match template 'manufacturer type volts V': '%s'", nTypes, + substr.trim()); + // validationResult.addError(err); + + // ################# TEMPORARY WARNING ################ + validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); + log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); + + log.debug("...does not match template"); + } + } + } // ..endif battery_type is filled + return typesTablesEntries; + } /** * Validates the configuration mission in the meta-data file. The mission number @@ -1281,6 +1556,9 @@ public void validateConfigMission() throws IOException { log.debug("CONFIG_MISSION_NUMBER[{}] = {}", n, mission[n]); if (mission[n] == 99999) { + // ======= + // CK_0159 + // ======= validationResult.addWarning("CONFIG_MISSION_NUMBER: Missing at index: " + (n + 1)); log.debug("config_mission_number == 0 at {}", n); break; @@ -1324,6 +1602,9 @@ public void validateConfigParams() throws IOException { int index = full.lastIndexOf('_'); if (index <= 0) { + // ======= + // CK_0160 + // ======= // ..poorly formed name - only report if not already reported if (!nameAlreadyChecked.contains(full)) { @@ -1348,6 +1629,9 @@ public void validateConfigParams() throws IOException { // ..check name if (!nameAlreadyChecked.contains(param)) { + // ======= + // CK_0161 + // ======= // ..this parameter name has not been checked ArgoConfigTechParam.ArgoConfigTechParamMatch match = arFile.getFileSpec().ConfigTech @@ -1366,6 +1650,9 @@ public void validateConfigParams() throws IOException { } else { if (match.isDeprecated) { + // ======= + // CK_0162 + // ======= // ..IS a deprecated name --> warning validationResult.addWarning(varName + "[" + (n + 1) + "]: " + "Deprecated name '" + param); log.debug("parameter is deprecated: '{}'", param); @@ -1393,7 +1680,6 @@ public void validateConfigParams() throws IOException { if (match.nUnMatchedTemplates > 0) { // ..these Templates did not have values specified in the table - // ..check the generic template values: // .. shortsensorname, cyclephasename, param // ..all others are accepted as is - they matched their basic regex @@ -1401,58 +1687,105 @@ public void validateConfigParams() throws IOException { String str = match.unMatchedTemplates.get("shortsensorname"); if (str != null) { - if (!ArgoReferenceTable.GENERIC_TEMPLATE_short_sensor_name.contains(str)) { - String err = String.format("%s[%d]: Invalid short_sensor_name '%s' in '%s'", - varName, (n + 1), str); - // validationResult.addError(err); - - // ################# TEMPORARY WARNING ################ - validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); - log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), - err); - - log.debug("...generic short_sensor_name lookup: INVALID = '{}'", str); - } else { - log.debug("...generic short_sensor_name lookup: valid = '{}'", str); - } + // ======= + // CK_0163 + // ======= + + String err = String.format("%s[%d]: Invalid short_sensor_name '%s' in '%s'", varName, + (n + 1), str, param); + // validationResult.addError(err); + + // ################# TEMPORARY WARNING ################ + validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); + log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); + + log.debug("...generic short_sensor_name lookup: INVALID = '{}'", str); + // ========================================================================== + // 2026 / NVS / 3.0.0 : is it still usefull as all should be provided in the + // table / defintion field / Template values ? + // ========================================================================== +// if (!ArgoReferenceTable.GENERIC_TEMPLATE_short_sensor_name.contains(str)) { +// String err = String.format("%s[%d]: Invalid short_sensor_name '%s' in '%s'", +// varName, (n + 1), str, param); +// // validationResult.addError(err); +// +// // ################# TEMPORARY WARNING ################ +// validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); +// log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), +// err); +// +// log.debug("...generic short_sensor_name lookup: INVALID = '{}'", str); +// } else { +// log.debug("...generic short_sensor_name lookup: valid = '{}'", str); +// } } str = match.unMatchedTemplates.get("cyclephasename"); if (str != null) { - if (!ArgoReferenceTable.GENERIC_TEMPLATE_cycle_phase_name.contains(str)) { - String err = String.format("%s[%d]: Invalid cycle_phase_name '%s' in '%s'", varName, - (n + 1), str, param); - // validationResult.addError(err) - // ################# TEMPORARY WARNING ################ - validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); - log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), - err); + String err = String.format("%s[%d]: Invalid cycle_phase_name '%s' in '%s'", varName, + (n + 1), str, param); + // validationResult.addError(err) - log.debug("...generic cycle_phase_name lookup: INVALID = '{}'", str); + // ################# TEMPORARY WARNING ################ + validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); + log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); + + log.debug("...generic cycle_phase_name lookup: INVALID = '{}'", str); - } else { - log.debug("...generic cycle_phase_name lookup: valid = '{}'", str); - } + // ========================================================================== + // 2026 / NVS / 3.0.0 : is it still usefull as all should be provided in the + // table / defintion field / Template values ? + // ========================================================================== +// if (!ArgoReferenceTable.GENERIC_TEMPLATE_cycle_phase_name.contains(str)) { +// String err = String.format("%s[%d]: Invalid cycle_phase_name '%s' in '%s'", varName, +// (n + 1), str, param); +// // validationResult.addError(err) +// +// // ################# TEMPORARY WARNING ################ +// validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); +// log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), +// err); +// +// log.debug("...generic cycle_phase_name lookup: INVALID = '{}'", str); +// +// } else { +// log.debug("...generic cycle_phase_name lookup: valid = '{}'", str); +// } } str = match.unMatchedTemplates.get("param"); if (str != null) { - if (!ArgoReferenceTable.GENERIC_TEMPLATE_param.contains(str)) { - String err = String.format("%s[%d]: Invalid param '%s' in '%s'", varName, (n + 1), - str, param); + String err = String.format("%s[%d]: Invalid param '%s' in '%s'", varName, (n + 1), str, + param); - // validationResult.addError(err) + // validationResult.addError(err) + + // ################# TEMPORARY WARNING ################ + validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); + log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); - // ################# TEMPORARY WARNING ################ - validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); - log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), - err); + log.debug("...generic param: generic name lookup: INVALID = '{}'", str); - log.debug("...generic param: generic name lookup: INVALID = '{}'", str); - } else { - log.debug("...generic param: generic name lookup: valid = '{}'", str); - } + // ========================================================================== + // 2026 / NVS / 3.0.0 : is it still usefull as all should be provided in the + // table / defintion field / Template values ? + // ========================================================================== +// if (!ArgoReferenceTable.GENERIC_TEMPLATE_param.contains(str)) { +// String err = String.format("%s[%d]: Invalid param '%s' in '%s'", varName, (n + 1), +// str, param); +// +// // validationResult.addError(err) +// +// // ################# TEMPORARY WARNING ################ +// validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); +// log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), +// err); +// +// log.debug("...generic param: generic name lookup: INVALID = '{}'", str); +// } else { +// log.debug("...generic param: generic name lookup: valid = '{}'", str); +// } } } } @@ -1505,4 +1838,22 @@ public void validateConfigParams() throws IOException { } // ..end validateConfigParams + // =================== + // CONVENIENCE METHODS + // =================== + + /** + * Get base sensor name for table lookup // ADMT-2025 : duplicate SENSOR must be + * named _ // so if sensor finish by a number, the duplicate will be + * xxxx[number]_n // if sensor don't finish by a number, the duplicate will also + * be xxxx_n. + * + * @param snsr + * @return + */ + public static String normalizeSensorName(String snsr) { + // Matches something ending with "_number" (e.g., TEMP_2, CHLA_10) + return snsr.replaceFirst("_(\\d+)$", ""); + } + } // ..end class diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoProfileFileValidator.java b/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoProfileFileValidator.java index 5b352da..5b4cf5d 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoProfileFileValidator.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoProfileFileValidator.java @@ -14,6 +14,8 @@ import fr.coriolis.checker.core.ArgoDataFile.FileType; import fr.coriolis.checker.specs.ArgoDate; import fr.coriolis.checker.specs.ArgoReferenceTable; +import fr.coriolis.checker.tables.ArgoNVSReferenceTable; +import fr.coriolis.checker.tables.SkosConcept; import ucar.ma2.Array; import ucar.ma2.ArrayChar; import ucar.ma2.DataType; @@ -71,355 +73,6 @@ public ArgoProfileFileValidator(ArgoDataFile arFile) throws IOException { // METHODS // .......................................... // -// /** -// * Creates a new Argo profile file. The "template" for the file is the indicated -// * CDL specification file. The physical parameters ( variables) to be -// * included must be specified -- see the "parameters" argument. -// *

      -// * A few variables in the CDL spec can be float or double. These default to -// * double. -// * -// * @param fileName The name of the output file -// * @param specDir Path to the specification directory -// * @param version The version string of the spec file to use as a template -// * @param N_PROF N_PROF dimension of the new file -// * @param N_PARAM N_PARAM dimension of the new file (max number of params in -// * a single profile) -// * @param N_LEVELS N_LEVELS dimension of the new file -// * @param N_CALIB N_CALIB dimension of the new file -// * @param parameters The parameter names that will be in the new file -// * @throws IOException If problems creating the file are encountered -// * @throws NumberFormatException If problems converting certain values encoded -// * in the CDL attributes to number are -// * encountered. -// */ -// public static ArgoProfileFileValidator createNew(String fileName, String specDir, String version, -// ArgoDataFile.FileType fileType, int N_PROF, int N_PARAM, int N_LEVELS, int N_CALIB, -// Set inParameters) throws IOException, NumberFormatException { -// log.debug(".....createNew: start....."); -// -// ArgoProfileFileValidator arFile = new ArgoProfileFileValidator(); -// -// // ..create the template specification -// -// arFile.spec = ArgoDataFile.openSpecification(false, specDir, fileType, version); -// if (arFile.spec == null) { -// return null; -// } -// -// arFile.fileType = fileType; -// -// // ..remove any parameters that are not in this specification -// -// HashSet parameters = new HashSet(20); -// -// for (String p : inParameters) { -// if (arFile.spec.isPhysicalParamName(p)) { -// parameters.add(p); -// } else { -// log.debug("requested parameter '{}' not in spec: removed"); -// } -// } -// -// // ..create new file -// -// arFile.ncWriter = NetcdfFileWriter.createNew(NetcdfFileWriter.Version.netcdf3, fileName); -// arFile.ncWriter.setFill(true); -// -// // ..fill in object variables -// arFile.file = null; // ..don't know why I need this ..... yet -// arFile.fileType = fileType; -// arFile.format_version = version; -// arFile.ncFileName = fileName; -// // arFile.spec is filled in by openSpec... -// -// // .....add globabl attributes..... -// -// for (ArgoAttribute a : arFile.spec.getGlobalAttributes()) { -// String name = a.getName(); -// String value = (String) a.getValue(); -// -// if (value.matches(ArgoFileSpecification.ATTR_SPECIAL_REGEX)) { -// // ..the definition starts with one of the special ATTR_IGNORE codes -// -// if (value.length() > ArgoFileSpecification.ATTR_SPECIAL_LENGTH) { -// // ..there is more than just the code on the line -// // ..defining the default value, use it -// -// value = value.substring(ArgoFileSpecification.ATTR_SPECIAL_LENGTH); -// log.debug("global attribute with special code: '{}'", value); -// -// } else { -// // ..nothing but the code on the line -// // ..ignore the attribute -// value = null; -// } -// } -// -// if (name.equals("history")) { -// value = (new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'")).format(new Date()).toString(); -// log.debug("history global attribute: '{}'", value); -// } -// -// if (value != null) { -// arFile.ncWriter.addGroupAttribute(null, new Attribute(name, value)); -// log.debug("add global attribute: '{}' = '{}'", name, value); -// } -// //// 2014-11-24T10:31:58Z creation;2014-11-26T16:31:26Z update" ; -// } -// -// // .........add Dimensions............... -// // ..don't allow <= 0 dimensions -// if (N_PROF <= 0) { -// N_PROF = 1; -// } -// if (N_PARAM <= 0) { -// N_PARAM = 1; -// } -// if (N_LEVELS <= 0) { -// N_LEVELS = 1; -// } -// if (N_CALIB <= 0) { -// N_CALIB = 1; -// } -// -// for (ArgoDimension d : arFile.spec.getDimensions()) { -// String name = d.getName(); -// int value = d.getValue(); -// -// if (name.equals("N_PROF")) { -// value = N_PROF; -// } else if (name.equals("N_PARAM")) { -// value = N_PARAM; -// } else if (name.equals("N_LEVELS")) { -// value = N_LEVELS; -// } else if (name.equals("N_CALIB")) { -// value = N_CALIB; -// } -// -// if (!d.isAlternateDimension()) { -// log.debug("add dimension: '{}' = '{}'", name, value); -// -// if (name.equals("N_HISTORY")) { -// arFile.ncWriter.addUnlimitedDimension(name); -// } else { -// arFile.ncWriter.addDimension(null, name, value); -// } -// } else { -// log.debug("skip alternate dimension: '{}'", name); -// } -// } -// -// // .........add Variables............... -// -// // ......ordered list..... -// // ..this bit of code arranges the variables in the "expected order" -// // ..this is, technically, completely unecessary -// // ..the ordering of the variables in the file should not matter -// // ..however, at least one user is complaining about the current files -// // ..and I am guessing that variable ordering is the problem. -// -// // ..the way the "spec" files are parsed, the PARAM variables end up -// // ..at the end of the variables list -// // ..so I am trying to distribute the variables in the "expected order" -// -// // ..good coding by users would eliminate the need for this -// -// // ..the idea is to create an ordered list of variable names that are -// // ..then used in the next section -// -// log.debug("...build ordered list of variables..."); -// -// ArrayList orderedList = new ArrayList(200); -// -// for (ArgoVariable v : arFile.spec.getVariables()) { -// String name = v.getName(); -// -// if (v.isParamVar()) { -// // ..when we get to the PARAM variables, we are done -// // ..they are always at the end of the list and we handle -// // ..them separately in the if-blocks below -// break; -// } -// -// orderedList.add(v); -// log.debug("add {}", name); -// -// // ..insert the PROFILE__QC variables after POSITIONING_SYSTEM -// -// if (name.equals("POSITIONING_SYSTEM")) { -// log.debug("insert PROFILE_ here"); -// for (ArgoVariable w : arFile.spec.getVariables()) { -// if (w.getName().startsWith("PROFILE_")) { -// orderedList.add(w); -// log.debug("add {}", w.getName()); -// } -// } -// } -// -// // ..insert the variables after CONFIG_MISSION_NUMBER -// -// if (name.equals("CONFIG_MISSION_NUMBER")) { -// log.debug("insert here"); -// for (ArgoVariable w : arFile.spec.getVariables()) { -// if (w.isParamVar()) { -// if (!w.getName().startsWith("PROFILE_")) { -// orderedList.add(w); -// log.debug("add {}", w.getName()); -// } -// } -// } -// } -// } -// -// log.debug("...ordered list complete..."); -// -// // ....end ordered list.... -// -// Boolean keep; -// // ...if we didn't need the list to be ordered... -// // for (ArgoVariable v : arFile.spec.getVariables()) { -// -// for (ArgoVariable v : orderedList) { -// String name = v.getName(); -// String prm = v.getParamName(); -// -// if (prm != null) { -// // ..this is a physical parameter variable -// // ..is it's parameter name in the parameter list -// -// if (parameters.contains(prm)) { -// keep = true; -// } else { -// keep = false; -// log.debug("skip variable: '{}'", name); -// } -// -// } else { -// // ..not a physical parameter, so keep it -// keep = true; -// } -// -// if (keep) { -// DataType type = v.getType(); -// String dims = v.getDimensionsString(); -// -// if (type == DataType.OPAQUE) { -// // ..this is one of the float_or_double types -// // ..default it to double -// type = DataType.DOUBLE; -// } -// -// if (v.canHaveAlternateDimensions()) { -// // ..this variable has an alternate dimension -// // ..dim string will have a "|" in it must remove it -// String newDims = dims.replaceAll("\\|\\w+", ""); -// log.debug("modify alternate dims: before = '{}' after = '{}'", dims, newDims); -// dims = newDims; -// } -// -// Variable var = arFile.ncWriter.addVariable(null, name, type, dims); -// log.debug("add variable: '{}': '{}' '{}'", name, type, dims); -// -// // ..add attributes for this variable -// for (ArgoAttribute a : v.getAttributes()) { -// Attribute att = null; -// String aname = a.getName(); -// -// if (a.isNumeric()) { -// Number num = (Number) a.getValue(); -// -// if (num == null) { -// // ..see if there is a default -// String def = a.getDefaultValue(); -// -// if (def != null) { -// try { -// switch (type) { -// case INT: -// num = new Integer(def); -// break; -// case FLOAT: -// num = new Float(def); -// break; -// case DOUBLE: -// num = new Double(def); -// break; -// case LONG: -// num = new Long(def); -// break; -// } -// } catch (NumberFormatException e) { -// throw new NumberFormatException( -// "Attribute " + name + ":" + aname + ": Unable to convert to number"); -// } -// } -// } -// -// if (num != null) { -// var.addAttribute(new Attribute(aname, num)); -// log.debug("add attribute: '{}:{}' = '{}'", name, aname, num); -// } else { -// log.debug("attribute ignored (no value): '{}:{}'", name, aname); -// } -// -// } else if (a.isString()) { -// Object value = a.getValue(); -// String str = null; -// -// if (value == null) { -// // ..value is not set, see if there is a default -// str = a.getDefaultValue(); -// } else { -// str = value.toString(); -// } -// -// if (str != null) { -// var.addAttribute(new Attribute(aname, str)); -// log.debug("add attribute: '{}:{}' = '{}'", name, aname, str); -// } -// -// } else { -// log.error("attribute not Number or String: '{}:{}'", name, aname); -// continue; -// } -// -// } -// } -// } -// -// // .....create the file -- end "define mode" -// -// arFile.ncWriter.create(); -// arFile.ncWriter.close(); // ..having trouble exiting define mode so close/reopen -// -// arFile.ncWriter = NetcdfFileWriter.openExisting(fileName); -// arFile.ncWriter.setFill(true); -// -// arFile.ncReader = arFile.ncWriter.getNetcdfFile(); -// -// log.debug(".....createNew: end....."); -// return arFile; -// } - -// /** -// * Opens an existing file without opening the specification -// * -// * @param inFile the string name of the file to open -// * @return the file object reference. Returns null if the file is not opened -// * successfully. (ArgoProfileFile.getMessage() will return the reason -// * for the failure to open.) -// * @throws IOException If an I/O error occurs -// */ -// public static ArgoProfileFileValidator open(String inFile) throws IOException { -// try { -// return (ArgoProfileFileValidator.open(inFile, false)); -// -// } catch (IOException e) { -// throw e; -// } -// -// } // /** // * Opens an existing file without opening the specification and, @@ -551,6 +204,9 @@ public void validateDates(int nProf, int nParam, int nCalib, int nHistory) throw String ref = arFile.readString(name); log.debug(name + ": " + ref); + // ======= + // CK_0178 + // ======= if (!ref.matches(arFile.getFileSpec().getMeta(name))) { validationResult.addError(name + ": '" + ref + "': Does not match specification ('" + arFile.getFileSpec().getMeta(name) + "')"); @@ -584,6 +240,9 @@ public void validateDates(int nProf, int nParam, int nCalib, int nHistory) throw int qc_index = goodJuldQC.indexOf(qc); if (qc_index >= 0) { + // ======= + // CK_0048 + // ======= if (juld[n] > 999990.) { validationResult.addError("JULD[" + (n + 1) + "]: Missing when QC = " + qc); continue; @@ -595,6 +254,9 @@ public void validateDates(int nProf, int nParam, int nCalib, int nHistory) throw String juldDTG = ArgoDate.format(dateJuld); log.debug("JULD[{}]: {} = {} (qc = {})", n, juld[n], juldDTG, qc); + // ======= + // CK_0049 + // ======= if (dateJuld.before(earliestDate)) { validationResult.addError("JULD[" + (n + 1) + "]: " + juld[n] + " = '" + juldDTG + "': Before earliest allowed date ('" + earliestDate + "')"); @@ -602,11 +264,16 @@ public void validateDates(int nProf, int nParam, int nCalib, int nHistory) throw // ..check that JULD is before DATE_CREATION and before file time long juldSec = dateJuld.getTime(); - + // ======= + // CK_0050 + // ======= if (arFile.isHaveCreationDate() && (juldSec - arFile.getCreationSec()) > oneDaySec) { validationResult.addError("JULD[" + (n + 1) + "]: " + juld[n] + " = '" + juldDTG + "': After DATE_CREATION ('" + arFile.getCreationDate() + "')"); } + // ======= + // CK_0051 + // ======= if ((juldSec - fileSec) > oneDaySec) { validationResult.addError("JULD[" + (n + 1) + "]: " + juld[n] + " = '" + juldDTG + "': After GDAC receipt time ('" + ArgoDate.format(fileTime) + "')"); @@ -617,7 +284,9 @@ public void validateDates(int nProf, int nParam, int nCalib, int nHistory) throw log.debug("JULD_LOCATION[" + n + "]: " + juld_loc[n] + " = " + ArgoDate.format(ArgoDate.get(juld_loc[n]))); } - + // ======= + // CK_0053 + // ======= if (juld_loc[n] < 99990.d) { double max = 2.d; if (Math.abs(juld_loc[n] - juld[n]) > max) { @@ -625,10 +294,14 @@ public void validateDates(int nProf, int nParam, int nCalib, int nHistory) throw + max + " day of JULD (" + juld[n] + ")"); } - } else { // ..juld_location is missing - // ..if this is missing, position better be missing - // ..this is very rare -- spend the overhead to do it - // .. here each time + } else { + // ======= + // CK_0054 + // ======= + // ..juld_location is missing + // ..if this is missing, position better be missing + // ..this is very rare -- spend the overhead to do it + // .. here each time double lat = arFile.readDouble("LATITUDE", n); double lon = arFile.readDouble("LONGITUDE", n); @@ -657,6 +330,9 @@ public void validateDates(int nProf, int nParam, int nCalib, int nHistory) throw ndx.set(h, n, 0); String dateHist = hDate.getString(ndx).trim(); + // ======= + // CK_0179 + // ======= if (dateHist.length() > 0) { // ..HISTORY_DATE is set. Is it reasonable? if (log.isDebugEnabled()) { @@ -675,6 +351,9 @@ public void validateDates(int nProf, int nParam, int nCalib, int nHistory) throw } else if (arFile.isHaveUpdateDate()) { long dateSec = date.getTime(); + // ======= + // CK_0180 + // ======= if ((dateSec - arFile.getUpdateSec()) > oneDaySec) { validationResult.addError("HISTORY_DATE[" + (h + 1) + "," + (n + 1) + "]: '" + dateHist + "': After DATE_UPDATE ('" + arFile.getUpdateDate() + "')"); @@ -709,7 +388,9 @@ public void validateDates(int nProf, int nParam, int nCalib, int nHistory) throw for (int p = 0; p < nParam; p++) { ndx.set(n, c, p, 0); String dateCal = cDate.getString(ndx).trim(); - + // ======= + // CK_0181 + // ======= if (dateCal.length() > 0) { // ..SCI_CALIB_/CALIBRATION_DATE is set. Is it reasonable? if (log.isDebugEnabled()) { @@ -721,12 +402,10 @@ public void validateDates(int nProf, int nParam, int nCalib, int nHistory) throw validationResult.addError(calib_date + "[" + (n + 1) + "," + (c + 1) + "," + (p + 1) + "]: '" + dateCal + "': Invalid date"); - // } else if (haveCreation && date.before(dateCreation)) { - // validationResult.addError("CALIBRATION_DATE["+(n+1)+","+(c+1)+","+ - // (p+1)+"]: '"+dateCal+ - // "': Before DATE_CREATION ('"+creation+"')"); - } else if (arFile.isHaveUpdateDate()) { + // ======= + // CK_0182 + // ======= long dateSec = date.getTime(); if ((dateSec - arFile.getUpdateSec()) > oneDaySec) { validationResult.addError(calib_date + "[" + (n + 1) + "," + (c + 1) + "," + (p + 1) @@ -791,6 +470,9 @@ public void validateDMode(int nProf, int nParam, int nCalib, int nHist) throws I for (int n = 0; n < nProf; n++) { if (dMode.charAt(n) == 'D') { String state = dState[n].trim(); + // ======= + // CK_0042 + // ======= if (!(state.equals("2C") || state.equals("2C+"))) { validationResult.addError( "D-mode: DATA_STATE_INDICATOR[" + (n + 1) + "]: '" + state + "': Not set to \"2C\""); @@ -846,6 +528,9 @@ public void validateDMode(int nProf, int nParam, int nCalib, int nHist) throws I + "checked for PARAMETER '{}' due to missing PROFILE_param_QC"); } else { // if (pQC != ' ') { //....Qc manual pg 74. + // ======= + // CK_0191 + // ======= if (cmt.length() == 0) { // ################# TEMPORARY WARNING ################ validationResult.addWarning("D-mode: SCIENTIFIC_CALIB_COMMENT[" + (n + 1) + "," @@ -854,6 +539,9 @@ public void validateDMode(int nProf, int nParam, int nCalib, int nHist) throws I "TEMP WARNING: {}: D-mode: SCIENTIFIC_CALIB_COMMENT[{},{},{}] not set for {}", arFile.getFile().getName(), n, c, p, param); } + // ======= + // CK_0192 + // ======= if (date.length() == 0) { // ################# TEMPORARY WARNING ################ validationResult.addWarning("D-mode: " + calib_date + "[" + (n + 1) + "," + (c + 1) @@ -876,15 +564,16 @@ public void validateDMode(int nProf, int nParam, int nCalib, int nHist) throws I } } // ..end if (param.length) } // ..end for (nParam) - - // ..check that calibration info is set for all parameters + // ======= + // CK_0088 + // ======= + // ..check that calibration info is set for all parameters for (String prm : profParam.get(n)) { if (!calibParam.contains(prm)) { validationResult.addError("D-mode: PARAMETER[" + (n + 1) + "," + (c + 1) + ",*,*]: Parameter '" + prm + "' not included"); } } - // ..check that calibration info is set for all parameters for (String prm : calibParam) { if (!profParam.get(n).contains(prm)) { @@ -897,6 +586,9 @@ public void validateDMode(int nProf, int nParam, int nCalib, int nHist) throws I } else {// ..end if ('D') // ..either 'R' or 'A' String state = dState[n].trim(); + // ======= + // CK_0041 + // ======= if (state.startsWith("2C")) { validationResult.addError( "R/A-mode: DATA_STATE_INDICATOR[" + (n + 1) + "]: '" + state + "': Can not be \"2C...\""); @@ -932,7 +624,12 @@ public void validateDMode(int nProf, int nParam, int nCalib, int nHist) throws I */ public void validateHighlyDesirable(int nProf) throws IOException { log.debug(".....validateHighlyDesirable: start....."); + // get NVS tables : + SkosConcept tableEntry; + // ======= + // CK_0168 + // ======= if (arFile.getFileSpec().getVariable("INST_REFERENCE") != null) { // ..INST_REF is in spec, check that it is set @@ -955,11 +652,11 @@ public void validateHighlyDesirable(int nProf) throws IOException { for (int n = 0; n < nProf; n++) { log.debug("POSITIONING_SYSTEM[" + n + "]: '" + str[n] + "'"); - ArgoReferenceTable.ArgoReferenceEntry info = ArgoReferenceTable.POSITIONING_SYSTEM - .contains(str[n].trim()); - if (!info.isActive) { - validationResult.addWarning( - "POSITIONING_SYSTEM[" + (n + 1) + "]: '" + str[n] + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.POSITIONING_SYSTEM_TABLE.getConceptMembersByAltLabelMap() + .get(str[n].trim()); + if (tableEntry == null) { + validationResult.addWarning("POSITIONING_SYSTEM[" + (n + 1) + "]: '" + str[n] + "' Status: " + + SkosConcept.INVALID_ALTLABEL_MESSAGE); } } } @@ -1006,7 +703,8 @@ public boolean validateMetaData(int nProf, ArgoReferenceTable.DACS dac, boolean String firstNum = new String(plNum[0].trim()); int firstCyc = cyc[0]; - ArgoReferenceTable.ArgoReferenceEntry info; + // NVS table entry : + SkosConcept tableEntry; for (int n = 0; n < nProf; n++) { Boolean hasData = null; @@ -1019,7 +717,9 @@ public boolean validateMetaData(int nProf, ArgoReferenceTable.DACS dac, boolean if (!super.validatePlatfomNumber(s)) { validationResult.addError("PLATFORM_NUMBER[" + (n + 1) + "]: '" + s + "': Invalid"); } - + // ======= + // CK_0174 + // ======= if (singleCycle) { if (!s.equals(firstNum)) { // ..this isn't a single cycle file -- we're done @@ -1028,6 +728,9 @@ public boolean validateMetaData(int nProf, ArgoReferenceTable.DACS dac, boolean return false; } else { + // ======= + // CK_0036 + // ======= // ..platform numbers are the same -- check cycle if (cyc[n] != firstCyc) { // ..this isn't a single cycle file -- we're done @@ -1039,7 +742,9 @@ public boolean validateMetaData(int nProf, ArgoReferenceTable.DACS dac, boolean } // .....DIRECTION..... - + // ======= + // CK_0037 + // ======= log.debug("DIRECTION[{}]: '{}'", n, dir.charAt(n)); if (dir.charAt(n) != 'A' && dir.charAt(n) != 'D') { validationResult.addError("DIRECTION[" + (n + 1) + "]: '" + dir.charAt(n) + "': Invalid"); @@ -1050,7 +755,11 @@ public boolean validateMetaData(int nProf, ArgoReferenceTable.DACS dac, boolean log.debug("DATA_STATE_INDICATOR[{}]: '{}'", n, ds[n]); s = ds[n].trim(); + tableEntry = ArgoNVSReferenceTable.DATA_STATE_INDICATOR_TABLE.getConceptMembersByAltLabelMap().get(s); if (s.length() == 0) { + // ======= + // CK_0043 + // ======= // ..set to _FillValue --- data must be missing // ..use PRES as a proxy - if all PRES is missing assume all data is missing @@ -1075,20 +784,30 @@ public boolean validateMetaData(int nProf, ArgoReferenceTable.DACS dac, boolean validationResult.addError("DATA_STATE_INDICATOR[" + (n + 1) + "]: '" + s + "' Not set"); } - } else if (!(info = ArgoReferenceTable.DATA_STATE_INDICATOR.contains(s)).isActive) { - validationResult.addError("DATA_STATE_INDICATOR[" + (n + 1) + "]: '" + s + "' Invalid"); + } else if (tableEntry == null) { + // ======= + // CK_0040 + // ======= + validationResult.addError( + "DATA_STATE_INDICATOR[" + (n + 1) + "]: '" + s + "' " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } // .....DATA_CENTRE..... log.debug("DATA_CENTRE[{}]: '{}' DAC: '{}'", n, dc[n], dac); if (dac != null) { + // ======= + // CK_0039 + // ======= if (!ArgoReferenceTable.DacCenterCodes.get(dac).contains(dc[n].trim())) { validationResult .addError("DATA_CENTRE[" + (n + 1) + "]: '" + dc[n] + "': Invalid for DAC '" + dac + "'"); } } else { // ..incoming DAC not set + // ======= + // CK_0038 + // ======= if (!ArgoReferenceTable.DacCenterCodes.containsValue(dc[n].trim())) { validationResult.addError("DATA_CENTRE[" + (n + 1) + "]: '" + dc[n] + "': Invalid (for all DACs)"); } @@ -1102,16 +821,19 @@ public boolean validateMetaData(int nProf, ArgoReferenceTable.DACS dac, boolean validationResult.addError("WMO_INST_TYPE[" + (n + 1) + "]: Not set"); } else { try { + // =========================== + // CK_0089 & CK_0090 & CK_0091 + // =========================== int N = Integer.valueOf(s); - - if ((info = ArgoReferenceTable.WMO_INST_TYPE.contains(N)).isValid()) { - if (info.isDeprecated) { - validationResult - .addWarning("WMO_INST_TYPE[" + (n + 1) + "]: '" + s + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.ARGO_WMO_INST_TYPE_TABLE.getConceptMembersByAltLabelMap().get(s); + if (tableEntry != null) { + if (tableEntry.isDeprecated()) { + validationResult.addWarning("WMO_INST_TYPE[" + (n + 1) + "]: '" + s + "' Status: " + + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult - .addError("WMO_INST_TYPE[" + (n + 1) + "]: '" + s + "' Status: " + info.message); + validationResult.addError("WMO_INST_TYPE[" + (n + 1) + "]: '" + s + "' Status: " + + SkosConcept.INVALID_ALTLABEL_MESSAGE); } } catch (Exception e) { @@ -1120,10 +842,12 @@ public boolean validateMetaData(int nProf, ArgoReferenceTable.DACS dac, boolean } // end if (wmo) // .....VERTICAL_SAMPLING_SCHEME..... - log.debug("VERTICAL_SAMPLING_SCHEME[{}]: '{}'", n, vert[n]); // ..ref_table 16 s = vert[n].trim(); if (s.length() == 0) { + // ======= + // CK_0068 + // ======= // ..set to _FillValue --- data must be missing // ..use PRES as a proxy - if all PRES is missing assume all data is missing @@ -1155,14 +879,27 @@ public boolean validateMetaData(int nProf, ArgoReferenceTable.DACS dac, boolean } } else { - - if ((info = ArgoReferenceTable.VERTICAL_SAMPLING_SCHEME.contains(s)).isValid()) { - if (info.isDeprecated) { - validationResult.addWarning("VERTICAL_SAMPLING_SCHEME[" + (n + 1) + "]: Status: " + info.message - + ": '" + s.trim() + "'"); + // need to delete optionnal free text ([free text]) : + s = s.replaceAll("\\s*\\[[^\\]]*\\]\\s*", "").trim(); + + tableEntry = ArgoNVSReferenceTable.VERTICAL_SAMPLING_SCHEME_TABLE.getConceptMembersByPrefLabelMap() + .get(s); + // ======= + // CK_0176 + // ======= + if (tableEntry != null) { + // ======= + // CK_0177 + // ======= + if (tableEntry.isDeprecated()) { + validationResult.addWarning("VERTICAL_SAMPLING_SCHEME[" + (n + 1) + "]: Status: " + + SkosConcept.DEPRECATED_CONCEPT + ": '" + s.trim() + "'"); } if (n == 0) { + // ======= + // CK_0067 + // ======= if (!s.startsWith("Primary sampling")) { String err = String.format( "VERTICAL_SAMPLING_SCHEME[%d]: Profile number 1 must be 'Primary sampling': '%s'", @@ -1174,6 +911,9 @@ public boolean validateMetaData(int nProf, ArgoReferenceTable.DACS dac, boolean log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFile().getName(), err); } } else { + // ======= + // CK_0066 + // ======= if (s.startsWith("Primary sampling")) { String err = String.format( "VERTICAL_SAMPLING_SCHEME[%d]: Not profile 1. Must NOT be 'Primary sampling': '%s'", @@ -1271,7 +1011,9 @@ public void validateParams(int nProf, int nParam, int nLevel) throws IOException log.debug("...profile #" + profNum); log.debug("DATA_MODE[{}]: '{}'", profNum, mode); } - + // ======= + // CK_0044 + // ======= if (mode != 'A' && mode != 'D' && mode != 'R') { validationResult.addError("DATA_MODE[" + (profNum + 1) + "]: '" + mode + "': Invalid"); } @@ -1290,6 +1032,9 @@ public void validateParams(int nProf, int nParam, int nLevel) throws IOException for (int paramNum = 0; paramNum < nParam; paramNum++) { char md = param_mode.charAt(paramNum); + // ======= + // CK_0170 + // ======= if (md != 'A' && md != 'D' && md != 'R' && md != ' ') { validationResult.addError("PARAMETER_DATA_MODE[" + (profNum + 1) + "," + (paramNum + 1) + "]: '" + md + "': Invalid"); @@ -1312,8 +1057,10 @@ public void validateParams(int nProf, int nParam, int nLevel) throws IOException } } + // ======= + // CK_0173 + // ======= // ..check bio-prof file: PARAM_DATA_MODE("PRES") == "R" - if (arFile.fileType() == FileType.BIO_PROFILE && stParam[paramNum].trim().startsWith("PRES")) { if (md != 'R') { log.debug("PRES[{}]: PARAMETER_DATA_MODE[{},{}] = '{}'. must be 'R'", profNum, profNum, @@ -1324,8 +1071,10 @@ public void validateParams(int nProf, int nParam, int nLevel) throws IOException } } // ..end for (paramNum) + // ================= + // CK_0171 & CK_0172 + // ================= // ..check for conformity of DATA_MODE and PARAMETER_DATA_MODE - if (final_mode == ' ') { // ..all param_data_mode = ' '. data_mode better be 'R' if (mode != 'R') { @@ -1344,7 +1093,9 @@ public void validateParams(int nProf, int nParam, int nLevel) throws IOException } // ..end if (param_mode != null) // .........check CONFIG_MISSION_NUMBER............ - + // ======= + // CK_0069 + // ======= int msnNum = arFile.readInt("CONFIG_MISSION_NUMBER", profNum); log.debug("CONFIG_MISSION_NUMBER[{}]: '{}'", profNum, msnNum); @@ -1395,9 +1146,14 @@ public void validateParams(int nProf, int nParam, int nLevel) throws IOException } // ..check if this is legal + // ======= + // CK_0183 + // ======= if (allowedParam.contains(param)) { // .. is allowed - + // ======= + // CK_0034 + // ======= if (profParam.get(profNum).contains(param)) { // ..this is a duplicate entry @@ -1409,7 +1165,9 @@ public void validateParams(int nProf, int nParam, int nLevel) throws IOException profParam.get(profNum).add(param); nParamUsed++; } - + // ======= + // CK_0184 + // ======= if (arFile.getFileSpec().isDeprecatedPhysicalParam(param)) { // ..this is a deprecated parameter name @@ -1450,12 +1208,18 @@ public void validateParams(int nProf, int nParam, int nLevel) throws IOException maxParamUsed = nParamUsed; } + // ======= + // CK_0035 + // ======= // ..report errors and warnings if (embeddedEmpty) { validationResult.addWarning("STATION_PARAMETERS[" + (profNum + 1) + ",*]: Empty entries in list" + "\n\tList: " + paramList); } + // ======= + // CK_0033 + // ======= // ..check that all required parameters are defined in STATION_PARAMETERS // ..the parameters are only required in profile 0 if (profNum == 0) { @@ -1468,6 +1232,9 @@ public void validateParams(int nProf, int nParam, int nLevel) throws IOException } // ..end for (required parameters) } + // ======= + // CK_0031 + // ======= // ......check that all STATION_PARAMETERS have variable........ for (String p : profParam.get(profNum)) { Variable var = arFile.findVariable(p); @@ -1478,11 +1245,12 @@ public void validateParams(int nProf, int nParam, int nLevel) throws IOException } } // ..end profParam + // ======= + // CK_0032 + // ======= // ...check whether all with data are in STATION_PARAMETERS... - origin2[0] = profNum; // ..origin2 = {profNum, 0}; // ..shape2 = {1, nLevel}; - for (String p : allowedParam) { if (!profParam.get(profNum).contains(p)) { // ..STATION_PARAMETERS does NOT include this param, @@ -1829,6 +1597,9 @@ else if (data != Float.MAX_VALUE) { for (int k = 0; k < prm.length; k++) { // if (! ArgoDataFile.is_99_999_FillValue(prm[k]) && k > maxLevelUsed) // maxLevelUsed = k; + // ================= + // CK_0064 & CK_0065 + // ================= if (Float.isNaN(prm[k])) { nan++; } @@ -1837,15 +1608,23 @@ else if (data != Float.MAX_VALUE) { inf++; } - ArgoReferenceTable.ArgoReferenceEntry info; + SkosConcept qcFlagsTableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(prm_qc[k])); - if ((info = ArgoReferenceTable.QC_FLAG.contains(prm_qc[k])).isValid()) { + // ======= + // CK_0073 + // ======= + if (qcFlagsTableEntry != null) { // ..valid QC flag (NOT " ") - - if (info.isDeprecated) { + // ======= + // CK_0185 + // ======= + if (qcFlagsTableEntry.isDeprecated()) { depQC++; } - + // ======= + // CK_0074 + // ======= if (ArgoFileValidator.is_FillValue(fValue, prm[k])) { // ..data is missing - QC better be too if (prm_qc[k] != '9' && prm_qc[k] != '0') { @@ -1854,6 +1633,9 @@ else if (data != Float.MAX_VALUE) { } else { // ..data not missing - check QC value + // ========== + // CHECK_0075 + // ========== if (prm_qc[k] == '0') { if (!arFile.getFileSpec().isOptional(varName)) { @@ -1873,9 +1655,15 @@ else if (data != Float.MAX_VALUE) { } else if (prm_qc[k] == '0') { n_noqc++; } - + // ========== + // CHECK_0074 + // ========== } else { // ..QC not is ref table 2, handle " " special case + // ======= + // CK_0186 + // ======= if (prm_qc[k] == ' ') { + // ..qc set to NOT MEASURED, data better be missing if (!ArgoFileValidator.is_FillValue(fValue, prm[k])) { notNotMeas++; @@ -1926,6 +1714,9 @@ else if (data != Float.MAX_VALUE) { .addError(varName + "_QC[" + (profNum + 1) + "]: Blank (' ') QC when data is not missing at " + notNotMeas + " levels (of " + prm.length + ")"); } + // ======= + // CK_0076 + // ======= if (arFile.fileType() == FileType.PROFILE) { // ..in a core-file, only intermediate params can have 0 QC if (!arFile.getFileSpec().isInterPhysParam(varName)) { @@ -2155,8 +1946,8 @@ else if (data != Float.MAX_VALUE) { log.debug("mode = '{}'", mode); if (mode == 'R') { - paramErr = checkParamAdjusted_When_DataModeIsR_CHECK_PROFILE_0021(prm_adj, prm_adj_err, prm_adj_qc, - fValue, mode, varName, profNum, prm); + paramErr = checkParamAdjusted_When_DataModeIsR(prm_adj, prm_adj_err, prm_adj_qc, fValue, mode, + varName, profNum, prm); // ..... do checks for A and D files ........ } else { @@ -2189,6 +1980,9 @@ else if (data != Float.MAX_VALUE) { */ for (int k = 0; k < prm_adj.length; k++) { + // ================= + // CK_0187 & CK_0188 + // ================= if (Float.isNaN(prm_adj[k])) { nan++; } @@ -2203,12 +1997,18 @@ else if (data != Float.MAX_VALUE) { infErr++; } + // ======== + // CK_0077 + // ======== // ..check the per level QC flag - ArgoReferenceTable.ArgoReferenceEntry info; - - info = ArgoReferenceTable.QC_FLAG.contains(prm_adj_qc[k]); - if (info.isValid()) { - if (info.isDeprecated) { + SkosConcept qcFlagsTableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE + .getConceptMembersByAltLabelMap().get(String.valueOf(prm_adj_qc[k])); + + if (qcFlagsTableEntry != null) { + // ======== + // CK_0189 + // ======== + if (qcFlagsTableEntry.isDeprecated()) { depQC++; } @@ -2219,6 +2019,9 @@ else if (data != Float.MAX_VALUE) { } } + // ================= + // CK_0078 & CK_0079 + // ================= // ..check special case of adj_qc = ' ' if (prm_qc[k] == ' ' || prm_adj_qc[k] == ' ') { // ..one is missing, both must be @@ -2232,6 +2035,9 @@ else if (data != Float.MAX_VALUE) { } } else { + // ======= + // CK_0081 + // ======= // ..check if param (not param_adj!) is missing if (ArgoFileValidator.is_FillValue(fValue, prm[k])) { // .....param is missing..... @@ -2253,36 +2059,46 @@ else if (data != Float.MAX_VALUE) { // .....param is NOT missing...... if (ArgoFileValidator.is_FillValue(fValue, prm_adj[k])) { + // ======= + // CK_0082 + // ======= // ..param_adj is missing - QC must be 4 or 9 if (prm_adj_qc[k] != '4') { if (prm_adj_qc[k] != '9') { // ..adj_qc is NOT 4 or 9 missAdj++; - } else { // ..adj_qc is 9, qc better be too + } else { + // =============== + // CHECK_0083_PROF + // =============== + // ..adj_qc is 9, qc better be too if (prm_qc[k] != '9') { missMiss++; } } } + // ======= + // CK_0087 + // ======= if (!ArgoFileValidator.is_FillValue(fValue, prm_adj_err[k])) { errNotMiss++; } } else { // ..param_adj is NOT missing - if (prm_adj_qc[k] == '4' || prm_adj_qc[k] == '9') { - if (mode == 'D') { - missNot++; - } else { // ..mode == 'A' - if (prm_adj_qc[k] == '9') { - missNot++; - } - } + // ================= + // CK_0084 & CK_0085 + // ================= + if ((prm_adj_qc[k] == '4' && mode == 'D') || prm_adj_qc[k] == '9') { + missNot++; } else { if (mode == 'D') { + // ===================== + // CK_0086 & CK_0087 2/2 + // ===================== if (is_99_999_FillValue(prm_adj_err[k])) { errMiss++; } @@ -2430,16 +2246,25 @@ else if (data != Float.MAX_VALUE) { // ............check PROFILE_param_QC............. char expProfQC = 'x'; - ArgoReferenceTable.ArgoReferenceEntry info; - - info = ArgoReferenceTable.PROFILE_QC_FLAG.contains(profQC); - if (!info.isValid()) { - validationResult.addError("PROFILE_" + param + "_QC[" + (profNum + 1) + "]: '" + profQC + "': Invalid"); + char profileQCFillValue = ' '; + + SkosConcept tableEntry; + tableEntry = ArgoNVSReferenceTable.PROF_QC_FLAG_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(profQC)); + // ======= + // CK_0058 + // ======= + if (profQC != profileQCFillValue && tableEntry == null) { + validationResult.addError("PROFILE_" + param + "_QC[" + (profNum + 1) + "]: '" + profQC + ": " + + SkosConcept.INVALID_ALTLABEL_MESSAGE); } else { - if (info.isDeprecated) { - validationResult.addWarning( - "PROFILE_" + param + "_QC[" + (profNum + 1) + "]: '" + profQC + "': Deprecated"); + // ======= + // CK_190 + // ======= + if (tableEntry != null && tableEntry.isDeprecated()) { + validationResult.addWarning("PROFILE_" + param + "_QC[" + (profNum + 1) + "]: '" + profQC + "': " + + SkosConcept.DEPRECATED_CONCEPT); } if (paramErr || param_adjErr) { @@ -2447,10 +2272,13 @@ else if (data != Float.MAX_VALUE) { + "] not checked due to errors in " + param + " data"); } else { + // ======= + // CK_0061 + // ======= double pctGood = (double) n_good / (double) n_data * 100.f; - expProfQC = ' '; + expProfQC = profileQCFillValue; if (n_noqc == n_data) { - expProfQC = ' '; + expProfQC = profileQCFillValue; } else if (n_good == n_data) { expProfQC = 'A'; } else if (pctGood >= 75.d) { @@ -2479,9 +2307,8 @@ else if (data != Float.MAX_VALUE) { } /** - * CHECK_PROFILE_0011 : Check when DATA_MODE = ‘R’ then _ADJUSTED and - * _ADJUSTED_QC are All FillValue (including *_QC and *_ERROR). ERROR if - * not tge + * Check when DATA_MODE = ‘R’ then _ADJUSTED and _ADJUSTED_QC are + * All FillValue (including *_QC and *_ERROR). ERROR if not tge * * @param prm_adj : _ADJUSTED data * @param prm_adj_err : _ADJUSTED_ERROR data @@ -2495,13 +2322,15 @@ else if (data != Float.MAX_VALUE) { * * @return : True if an error has been encountered */ - private boolean checkParamAdjusted_When_DataModeIsR_CHECK_PROFILE_0021(float[] prm_adj, float[] prm_adj_err, - char[] prm_adj_qc, float fValue, char mode, String varName, int profNum, float[] prm) { + private boolean checkParamAdjusted_When_DataModeIsR(float[] prm_adj, float[] prm_adj_err, char[] prm_adj_qc, + float fValue, char mode, String varName, int profNum, float[] prm) { int errNotMiss = 0; // ..count of ERROR not missing int missNot = 0; // ..count of param_adj not missing int qcNotMiss = 0; // ..count of ADJ_QC not missing boolean paramErr = false; - + // ======= + // CK_0062 + // ======= for (int k = 0; k < prm_adj.length; k++) { if (!ArgoFileValidator.is_FillValue(fValue, prm_adj[k])) { missNot++; @@ -2557,30 +2386,51 @@ public void validateQC(int nProf, int nParam, int nLevel) throws IOException { String juldQC = arFile.readString("JULD_QC", true);// ..true -> return NULLs if present String posQC = arFile.readString("POSITION_QC", true);// ..true -> return NULLs if present - + // NVS table entry: + SkosConcept tableEntry; // ...........loop over each profile in the file............. for (int n = 0; n < nProf; n++) { - ArgoReferenceTable.ArgoReferenceEntry info; Character ch; - ch = juldQC.charAt(n); - if ((info = ArgoReferenceTable.QC_FLAG.contains(ch)).isValid()) { - if (info.isDeprecated) { - validationResult.addWarning("JULD_QC[" + (n + 1) + "]: '" + ch + "' Status: " + info.message); + + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(ch)); + + // ======= + // CK_0052 + // ======= + if (tableEntry != null) { + // ======= + // CK_0169 + // ======= + if (tableEntry.isDeprecated()) { + validationResult.addWarning( + "JULD_QC[" + (n + 1) + "]: '" + ch + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError("JULD_QC[" + (n + 1) + "]: '" + ch + "' Status: " + info.message); + validationResult.addError( + "JULD_QC[" + (n + 1) + "]: '" + ch + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } + // ======= + // CK_0055 + // ======= ch = posQC.charAt(n); - if ((info = ArgoReferenceTable.QC_FLAG.contains(ch)).isValid()) { - if (info.isDeprecated) { - validationResult.addWarning("POSITION_QC[" + (n + 1) + "]: '" + ch + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(ch)); + if (tableEntry != null) { + // ======= + // CK_0175 + // ======= + if (tableEntry.isDeprecated()) { + validationResult.addWarning( + "POSITION_QC[" + (n + 1) + "]: '" + ch + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError("POSITION_QC[" + (n + 1) + "]: '" + ch + "' Status: " + info.message); + validationResult.addError( + "POSITION_QC[" + (n + 1) + "]: '" + ch + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } } } diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoTechnicalFileValidator.java b/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoTechnicalFileValidator.java index 3bb104a..782ee5c 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoTechnicalFileValidator.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoTechnicalFileValidator.java @@ -188,7 +188,9 @@ public void validateTechParams() throws IOException { for (int n = 0; n < nParam; n++) { String full = full_name[n].trim(); int index = full.lastIndexOf('_'); - + // ======= + // CK_0194 + // ======= if (index <= 0) { // ..poorly formed name - only report if not already reported @@ -217,7 +219,9 @@ public void validateTechParams() throws IOException { ArgoConfigTechParam.ArgoConfigTechParamMatch match = arFile.getFileSpec().ConfigTech .findTechParam(param); - + // ======= + // CK_0195 + // ======= if (match == null) { // ..NOT an active name, NOT a deprecated name --> error String err = String.format("%s[%d]: Invalid name '%s'", nName, (n + 1), param); @@ -230,12 +234,17 @@ public void validateTechParams() throws IOException { log.debug("invalid param (not active or deprecated): '{}'", param); } else { + // ======= + // CK_0196 + // ======= if (match.isDeprecated) { // ..IS a deprecated name --> warning validationResult.addWarning(nName + "[" + (n + 1) + "]: " + "Deprecated name '" + param); log.debug("parameter is deprecated: '{}'", param); } - + // ======= + // CK_0197 + // ======= if (match.nFailedMatchedTemplates > 0) { // ..these Templates failed to match the values specified in the table // ..they are errors @@ -257,6 +266,11 @@ public void validateTechParams() throws IOException { } if (match.nUnMatchedTemplates > 0) { + // ========================================================================== + // 2026 / NVS / 3.0.0 : not usefull anymore as all must be provided in the + // table / definition field / Template values + // ========================================================================== + // ..these Templates did not have values specified in the table // ..check the generic template values: @@ -264,22 +278,32 @@ public void validateTechParams() throws IOException { // ..all others are accepted as is - they matched their basic regex // ..- assume they are good - String str = match.unMatchedTemplates.get("shortsensorname"); - if (str != null) { - if (!ArgoReferenceTable.GENERIC_TEMPLATE_short_sensor_name.contains(str)) { - String err = String.format("%s[%d]: Invalid short_sensor_name '%s' in '%s'", nName, - (n + 1), str, param); - // validationResult.addError(err); - - // ################# TEMPORARY WARNING ################ - validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); - log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); - - log.debug("...generic short_sensor_name lookup: INVALID = '{}'", str); - } else { - log.debug("...generic short_sensor_name lookup: valid = '{}'", str); - } - } +// String str = match.unMatchedTemplates.get("shortsensorname"); +// if (str != null) { +// String err = String.format("%s[%d]: Invalid short_sensor_name '%s' in '%s'", nName, (n + 1), +// str, param); +// // validationResult.addError(err); +// +// // ################# TEMPORARY WARNING ################ +// validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); +// log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); +// +// log.debug("...generic short_sensor_name lookup: INVALID = '{}'", str); + +// if (!ArgoReferenceTable.GENERIC_TEMPLATE_short_sensor_name.contains(str)) { +// String err = String.format("%s[%d]: Invalid short_sensor_name '%s' in '%s'", nName, +// (n + 1), str, param); +// // validationResult.addError(err); +// +// // ################# TEMPORARY WARNING ################ +// validationResult.addWarning(err + " *** WILL BECOME AN ERROR ***"); +// log.warn("TEMP WARNING: {}: {}: {}", arFile.getDacName(), arFile.getFileName(), err); +// +// log.debug("...generic short_sensor_name lookup: INVALID = '{}'", str); +// } else { +// log.debug("...generic short_sensor_name lookup: valid = '{}'", str); +// } +// } } } @@ -292,10 +316,14 @@ public void validateTechParams() throws IOException { if (!unitAlreadyChecked.containsKey(unit)) { // ..this unit name has NOT been checked - + // ======= + // CK_0198 + // ======= if (!arFile.getFileSpec().ConfigTech.isConfigTechUnit(unit)) { // ..NOT an active unit - + // ======= + // CK_0199 + // ======= if (arFile.getFileSpec().ConfigTech.isDeprecatedConfigTechUnit(unit)) { // ..IS a deprecated unit --> warning diff --git a/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoTrajectoryFileValidator.java b/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoTrajectoryFileValidator.java index e966b10..f6fcba4 100644 --- a/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoTrajectoryFileValidator.java +++ b/file_checker_exec/src/main/java/fr/coriolis/checker/validators/ArgoTrajectoryFileValidator.java @@ -15,6 +15,8 @@ import fr.coriolis.checker.core.ArgoDataFile.FileType; import fr.coriolis.checker.specs.ArgoDate; import fr.coriolis.checker.specs.ArgoReferenceTable; +import fr.coriolis.checker.tables.ArgoNVSReferenceTable; +import fr.coriolis.checker.tables.SkosConcept; import ucar.ma2.Array; import ucar.ma2.DataType; import ucar.ma2.Index; @@ -60,405 +62,6 @@ public ArgoTrajectoryFileValidator(ArgoDataFile arFile) throws IOException { super(arFile); } -// protected ArgoTrajectoryFileValidator(String specDir, String version) { -// // super(specDir, FileType.TRAJECTORY, version); -// } - - // .......................................... - // METHODS - // .......................................... - -// /** Retrieve the NetcdfFileWriter reference */ -// public NetcdfFileWriter getNetcdfFileWriter() { -// return ncWriter; -// } - - /** - * Retrieve a list of variables in the associated file - */ -// public List getVariableNames() { -// LinkedList varNames = new LinkedList(); -// -// if (ncReader != null) { -// for (Variable var : ncReader.getVariables()) { -// varNames.add(var.getShortName()); -// } -// -// } else if (ncWriter != null) { -// for (Variable var : ncWriter.getNetcdfFile().getVariables()) { -// varNames.add(var.getShortName()); -// } -// -// } else { -// varNames = null; -// } -// -// return varNames; -// } - - /** - * Convenience method to add to String list for "pretty printing". - * - * @param list the StringBuilder list - * @param add the String to add - */ -// @Override -// private void addToList(StringBuilder list, String add) { -// if (list.length() == 0) { -// list.append("'" + add + "'"); -// } else { -// list.append(", '" + add + "'"); -// } -// } - - /** - * Convenience method to add to String list for "pretty printing". - * - * @param list the StringBuilder list - * @param add the String to add - */ - - /** - * Creates a new Argo trajectory file. The "template" for the file is the - * indicated CDL specification file. - * - * @param fileName The name of the output file - * @param specDir Path to the specification directory - * @param version The version string of the spec file to use as a template - * @param N_PROF N_PROF dimension of the new file - * @param N_PARAM N_PARAM dimension of the new file - * @param N_LEVELS N_LEVELS dimension of the new file - * @param N_CALIB N_CALIB dimension of the new file - * @param parameters The parameter names that will be in the new file - * @throws IOException If problems creating the file are encountered - * @throws NumberFormatException If problems converting certain values encoded - * in the CDL attributes to number are - * encountered. - */ -// public static ArgoTrajectoryFileValidator createNew(String fileName, String specDir, String version, int N_PARAM, -// int N_CYCLE, int N_HISTORY, Set parameters) throws IOException, NumberFormatException { -// log.debug(".....createNew: start....."); -// -// ArgoTrajectoryFileValidator arFile = new ArgoTrajectoryFileValidator(); -// -// // ..create the template specification -// arFile.spec = ArgoDataFile.openSpecification(false, specDir, ArgoDataFile.FileType.TRAJECTORY, version); -// if (arFile.spec == null) { -// return null; -// } -// -// arFile.fileType = ArgoDataFile.FileType.TRAJECTORY; -// -// // ..remove any parameters that are not in this specification -// -// Iterator i = parameters.iterator(); -// while (i.hasNext()) { -// String p = i.next(); -// if (!arFile.spec.isPhysicalParamName(p)) { -// i.remove(); -// // arFile.validationResult.addWarning("Parameter: '"+p+ -// // "' not in specification. Removed."); -// log.debug("requested parameter '{}' not in spec: removed"); -// } -// } -// -// N_PARAM = parameters.size(); -// -// // ..create new file -// -// arFile.ncWriter = NetcdfFileWriter.createNew(NetcdfFileWriter.Version.netcdf3, fileName); -// arFile.ncWriter.setFill(true); -// -// // ..fill in object variables -// arFile.file = null; // ..don't know why I need this ..... yet -// arFile.fileType = ArgoDataFile.FileType.TRAJECTORY; -// arFile.format_version = version; -// arFile.ncFileName = fileName; -// // arFile.spec is filled in by openSpec... -// -// // .....add globabl attributes..... -// -// for (ArgoAttribute a : arFile.spec.getGlobalAttributes()) { -// String name = a.getName(); -// String value = (String) a.getValue(); -// -// if (value.matches(ArgoFileSpecification.ATTR_SPECIAL_REGEX)) { -// // ..the definition starts with one of the special ATTR_IGNORE codes -// -// if (value.length() > ArgoFileSpecification.ATTR_SPECIAL_LENGTH) { -// // ..there is more than just the code on the line -// // ..defining the default value, use it -// -// value = value.substring(ArgoFileSpecification.ATTR_SPECIAL_LENGTH); -// log.debug("global attribute with special code: '{}'", value); -// -// } else { -// // ..nothing but the code on the line -// // ..ignore the attribute -// value = null; -// } -// } -// -// if (name.equals("history")) { -// value = (new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'")).format(new Date()).toString(); -// log.debug("history global attribute: '{}'", value); -// } -// -// if (value != null) { -// arFile.ncWriter.addGroupAttribute(null, new Attribute(name, value)); -// log.debug("add global attribute: '{}' = '{}'", name, value); -// } -// } -// -// // .........add Dimensions............... -// // ..don't allow <= 0 dimensions -// if (N_PARAM <= 0) { -// N_PARAM = 1; -// } -// if (N_CYCLE <= 0) { -// N_CYCLE = 1; -// } -// if (N_HISTORY <= 0) { -// N_HISTORY = 1; -// } -// -// for (ArgoDimension d : arFile.spec.getDimensions()) { -// String name = d.getName(); -// int value = d.getValue(); -// -// if (name.equals("N_PARAM")) { -// value = N_PARAM; -// } else if (name.equals("N_CYCLE")) { -// value = N_CYCLE; -// } else if (name.equals("N_HISTORY")) { -// value = N_HISTORY; -// } -// -// if (name.equals("N_MEASUREMENT")) { -// arFile.ncWriter.addUnlimitedDimension(name); -// } else { -// arFile.ncWriter.addDimension(null, name, value); -// } -// -// log.debug("add dimension: '{}' = '{}'", name, value); -// } -// -// // .........add Variables............... -// -// // ......ordered list..... -// // ..this bit of code arranges the variables in the "expected order" -// // ..this is technically completely unnecessary -// // ..the ordering of the variables in the file should not matter -// // ..however, at least one user is complaining about the current files -// // ..and I am guessing that variable ordering is the problem. -// -// // ..the way the "spec" files are parsed, the PARAM variables end up -// // ..at the end of the variables list -// // ..so I am trying to distribute the variables in the "expected order" -// -// // ..good coding by users would eliminate the need for this -// -// // ..the idea is to create an ordered list of variable names that are -// // ..then used in the next section -// -// log.debug("...build ordered list of variables..."); -// -// ArrayList orderedList = new ArrayList(200); -// -// for (ArgoVariable v : arFile.spec.getVariables()) { -// String name = v.getName(); -// -// if (v.isParamVar()) { -// // ..when we get to the PARAM variables, we are done -// // ..they are always at the end of the list and we handle -// // ..them separately in the if-blocks below -// break; -// } -// -// orderedList.add(v); -// log.debug("add {}", name); -// -// // ..insert the variables after MEASUREMENT_CODE -// -// if (name.equals("MEASUREMENT_CODE")) { -// log.debug("insert here"); -// for (ArgoVariable w : arFile.spec.getVariables()) { -// if (w.isParamVar()) { -// log.debug("isParamVar"); -// orderedList.add(w); -// log.debug("add {}", w.getName()); -// } -// } -// } -// } -// -// log.debug("...ordered list complete..."); -// -// // ....end ordered list.... -// -// Boolean keep; -// // ...if we didn't need the list to be ordered... -// // for (ArgoVariable v : arFile.spec.getVariables()) { -// -// for (ArgoVariable v : orderedList) { -// String name = v.getName(); -// String prm = v.getParamName(); -// -// if (prm != null) { -// // ..this is a physical parameter variable -// // ..is it's parameter name in the parameter list -// -// if (parameters.contains(prm)) { -// keep = true; -// } else { -// keep = false; -// log.debug("skip variable: '{}'", name); -// } -// -// } else { -// // ..not a physical parameter, so keep it -// keep = true; -// } -// -// if (keep) { -// DataType type = v.getType(); -// String dims = v.getDimensionsString(); -// -// Variable var = arFile.ncWriter.addVariable(null, name, type, dims); -// log.debug("add variable: '{}': '{}' '{}'", name, type, dims); -// -// // ..add attributes for this variable -// for (ArgoAttribute a : v.getAttributes()) { -// String aname = a.getName(); -// -// if (a.isNumeric()) { -// var.addAttribute(new Attribute(aname, (Number) a.getValue())); -// log.debug("add attribute: '{}:{}' = '{}'", name, aname, a.getValue()); -// -// } else if (a.isString()) { -// String value = (String) a.getValue(); -// Object def = null; -// -// if (value.matches(ArgoFileSpecification.ATTR_SPECIAL_REGEX)) { -// // ..the definition starts with one of the special ATTR_IGNORE codes -// -// if (value.length() > ArgoFileSpecification.ATTR_SPECIAL_LENGTH) { -// // ..there is more than just the code on the line -// // ..defining the default value, use it -// -// String val = value.substring(ArgoFileSpecification.ATTR_SPECIAL_LENGTH); -// log.debug("attribute with special code: '{}' '{}'", value, val); -// -// if (val.startsWith("numeric:")) { -// // ..this should be encoded as a number -// -// val = val.substring("numeric:".length()); -// log.debug("...number: '{}'", val); -// -// try { -// switch (v.getType()) { -// case DOUBLE: -// def = Double.valueOf(val); -// var.addAttribute(new Attribute(aname, (Number) def)); -// break; -// case FLOAT: -// def = Float.valueOf(val); -// var.addAttribute(new Attribute(aname, (Number) def)); -// break; -// case INT: -// def = Integer.valueOf(val); -// var.addAttribute(new Attribute(aname, (Number) def)); -// break; -// case SHORT: -// def = Short.valueOf(val); -// var.addAttribute(new Attribute(aname, (Number) def)); -// break; -// default: // ..assume it is a string -// def = val; -// var.addAttribute(new Attribute(aname, (String) def)); -// } -// } catch (NumberFormatException e) { -// throw new NumberFormatException( -// "Attribute " + name + ":" + aname + ": Unable to convert to number"); -// } -// -// } else { -// // ..default value is a string -// var.addAttribute(new Attribute(aname, val)); -// } -// -// // } else { -// // ..nothing but the special code on the line -// // ..ignore the attribute -// // def = null; -// } -// -// } else { -// // ..not a special value -- insert as is -// var.addAttribute(new Attribute(aname, value)); -// log.debug("add attribute: '{}:{}' = '{}'", name, aname, value); -// } -// -// } else { -// log.error("attribute not Number or String: '{}:{}'", name, aname); -// continue; -// } -// -// } -// } -// } -// -// // .....create the file -- end "define mode" -// -// arFile.ncWriter.create(); -// arFile.ncWriter.close(); -// -// log.debug(".....createNew: end....."); -// return arFile; -// } -// -// /** -// * Opens an existing file without opening the specification -// * -// * @param inFile the string name of the file to open -// * @return the file object reference. Returns null if the file is not opened -// * successfully. (ArgoTrajectoryFile.getMessage() will return the reason -// * for the failure to open.) -// * @throws IOException If an I/O error occurs -// */ -// public static ArgoTrajectoryFileValidator open(String inFile) throws IOException { -// ArgoDataFile arFile = ArgoDataFile.open(inFile); -// if (!(arFile instanceof ArgoTrajectoryFileValidator)) { -// ValidationResult.lastMessage = "ERROR: '" + inFile + "' not an Argo TRAJECTORY file"; -// return null; -// } -// -// return (ArgoTrajectoryFileValidator) arFile; -// } -// -// /** -// * Opens an existing file and the associated Argo specification). -// * -// * @param inFile the string name of the file to open -// * @param specDir the string name of the directory containing the format -// * specification files -// * @param fullSpec true = open the full specification; false = open the template -// * specification -// * @return the file object reference. Returns null if the file is not opened -// * successfully. (ArgoTrajectoryFile.getMessage() will return the reason -// * for the failure to open.) -// * @throws IOException If an I/O error occurs -// */ -// public static ArgoTrajectoryFileValidator open(String inFile, String specDir, boolean fullSpec) throws IOException { -// ArgoDataFile arFile = ArgoDataFile.open(inFile, specDir, fullSpec); -// if (!(arFile instanceof ArgoTrajectoryFileValidator)) { -// ValidationResult.lastMessage = "ERROR: '" + inFile + "' not an Argo TRAJECTORY file"; -// return null; -// } -// -// return (ArgoTrajectoryFileValidator) arFile; -// } - /** * Validates the data in the trajectory file. This is a driver routine that * performs all types of validations (see other validate* routines). @@ -641,11 +244,15 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha if (core) { numAdj = cycleIndexAdj[n]; } - + // ======= + // CK_0213 + // ======= if (num < 0) { invCyc.increment(n, "invalid CYCLE_NUMBER_INDEX"); } - + // ======= + // CK_0214 + // ======= if (core && numAdj < 0) { invAdjCyc.increment(n, "invalid CYCLE_NUMBER_INDEX_ADJUSTED"); } @@ -653,13 +260,18 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha if (overallDM == 'R') { // .....file only contains R-mode data....... - + // =========== + // CK_0215 1/2 + // =========== if (num == fillCycNum) { // ..cycle_number_index missing in r-mode <--- error missRCyc.increment(n, "r-mode: CYCLE_NUMBER_INDEX is missing"); } + // =========== + // CK_0216 1/2 + // =========== if (core && numAdj != fillCycNum) { // ..cycle_number_index_adjusted_index set in r-mode <---- error adjSet.increment(n, "r-mode: CYCLE_NUMBER_INDEX_ADJUSTED is set"); @@ -670,11 +282,16 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha if (data_mode[n] != 'D') { // ...r/a-mode cycle - + // =========== + // CK_0215 2/2 + // =========== if (num == fillCycNum) { // ..missing in r-mode <--- this is an error missRCyc.increment(n, "r-mode: CYCLE_NUMBER_INDEX is missing"); } + // =========== + // CK_0216 2/2 + // =========== if (core && numAdj != fillCycNum) { // ..numAdj set in r-mode <--- this is an error adjSet.increment(n, "r-mode: CYCLE_NUMBER_INDEX_ADJUSTED is set"); @@ -682,7 +299,9 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha } else { // ..d-mode cycle - + // ======= + // CK_0217 + // ======= if (core && numAdj == fillCycNum) { // ..*_adjusted is missing too this is an error missDCyc.increment(n, "d-mode:CYCLE_NUMBER_INDEX_ADJUSTED is missing"); @@ -690,6 +309,9 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha } } // ..endif (overallDM) + // ======= + // CK_0218 + // ======= // ..check for duplicates --- build the lookup table int finalNum = -1; if (numAdj != fillCycNum) { @@ -775,8 +397,10 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha numAdj = cycleAdj[n]; } + // ======= + // CK_0219 + // ======= // ..check "launch cycle" - if (num < 0) { // ..cycle_num == -1 is allowed in index 0 // ..anything else is an error @@ -790,6 +414,9 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha invCyc.increment(n); } } + // ======= + // CK_0220 + // ======= if (core && numAdj < 0) { // ..cycle_num_adjusted == -1 is allowed in index 0 // ..anything else is an error @@ -809,13 +436,17 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha if (overallDM == 'R') { // .....file only contains R-mode data....... - + // =========== + // CK_0221 1/2 + // =========== if (num == fillCycNum) { // ..cycle_number is missing in r-mode <--- error missRCyc.increment(n); } - + // =========== + // CK_0222 1/2 + // =========== if (core && numAdj != fillCycNum) { // ..cycle_number_index_adjusted_index set in r-mode <---- error @@ -851,11 +482,16 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha if (!isD) { // ..r-mode cycle - + // =========== + // CK_0221 2/2 + // =========== if (num == fillCycNum) { // ..cycle_number is missing in r-mode <--- error missRCyc.increment(n); } + // =========== + // CK_0222 2/2 + // =========== if (core && numAdj != fillCycNum && numAdj > -1) { // ..numAdj set in r-mode <--- this is an error adjSet.increment(n); @@ -863,7 +499,9 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha } else { // ..d-mode cycle - + // ======= + // CK_0223 + // ======= if (core && numAdj == fillCycNum) { // ..*_adjusted is missing too this is an error missDCyc.increment(n); @@ -918,6 +556,9 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha // ..............check that all cycle numbers in ................. // ..............CYCLE_NUMBER are in _INDEX ................. // ..build the mode[nMeasurement] array + // ======= + // CK_0224 + // ======= log.debug("cyc_num-in-cyc_num_ind: start"); HashSet cycNumSet = new HashSet(200); @@ -993,6 +634,9 @@ public boolean validateCycleNumber(int nMeasure, int nCycle, char overallDM, cha // .................check that all of the cycle number in ............. // .................CYCLE_NUMBER_INDEX are in CYCLE_NUMBER............. + // ======= + // CK_0225 + // ======= log.debug("cyc_num-in-cyc_num_ind: end"); log.debug("cyc_num_ind-in-cyc_num: start"); @@ -1063,7 +707,9 @@ public char validateDataMode(char[] mode) throws IOException { ErrorTracker invalid = new ErrorTracker(); char overallDM = 'R'; - + // ======= + // CK_0283 + // ======= for (int n = 0; n < data_mode.length(); n++) { char m = data_mode.charAt(n); @@ -1117,6 +763,9 @@ public void validateDates(int nParam, int nHistory) throws IOException { String ref = arFile.readString(name); log.debug(name + ": " + ref); + // ======= + // CK_0210 + // ======= if (!ref.matches(arFile.getFileSpec().getMeta(name))) { validationResult.addError(name + ": '" + ref + "': Does not match specification ('" + arFile.getFileSpec().getMeta(name) + "')"); @@ -1138,11 +787,17 @@ public void validateDates(int nParam, int nHistory) throws IOException { // ..HISTORY_DATE is set. Is it reasonable? log.debug("HISTORY_DATE[{}]: '{}'", h, dateHist[h]); + // ======= + // CK_0211 + // ======= Date date = ArgoDate.get(d); if (date == null) { validationResult.addError("HISTORY_DATE[" + (h + 1) + "]: '" + dateHist[h] + "': Invalid date"); } else if (arFile.isHaveUpdateDate()) { + // ======= + // CK_0212 + // ======= long dateSec = date.getTime(); if ((dateSec - arFile.getUpdateSec()) > oneDaySec) { validationResult.addError("HISTORY_DATE[" + (h + 1) + "]: '" + dateHist[h] @@ -1189,6 +844,9 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, boolean core = false; ArgoReferenceTable.ArgoReferenceEntry info; + // NVS tables entry : + SkosConcept tableEntry; + if (arFile.fileType() == FileType.TRAJECTORY) { // ..implies this is 1) a v3.2+ or 2) a pre-v3.2 core-file (NOT a bio-file) core = true; @@ -1254,6 +912,9 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, int rem = m_code[n] % 50; int rel = rem - 50; + // ======= + // CK_0226 + // ======= if (m_code[n] == 0) { // ..this is valid @@ -1272,17 +933,20 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, // ..this is NOT a valid relative code // ..is it a valid "specfic code"? - info = ArgoReferenceTable.MEASUREMENT_CODE_specific.contains(m_code[n]); - if (info.isValid()) { - if (info.isDeprecated) { + // ======= + // CK_0227 + // ======= + tableEntry = ArgoNVSReferenceTable.MEASUREMENT_CODE_ID_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(m_code[n])); + if (tableEntry != null) { + // ======= + // CK_0228 + // ======= + if (tableEntry.isDeprecated()) { depCode.increment(n); log.debug("m_code[{}]: deprecated code = {}, rem = {}, rel = {}", n, m_code[n], rem, rel); } - } else if (info.isDeleted) { - delCode.increment(n); - log.debug("m_code[{}]: deleted code = {}, rem = {}, rel = {}", n, m_code[n], rem, rel); - } else { invCode.increment(n); log.debug("m_code[{}]: invalid code = {}, rem = {}, rel = {}", n, m_code[n], rem, rel); @@ -1334,9 +998,18 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, ErrorTracker noQC = new ErrorTracker(); // ..count of juld set & QC set to missing for (int n = 0; n < nMeasure; n++) { + if (juld_qc[n] != ' ') { - if ((info = ArgoReferenceTable.QC_FLAG.contains(juld_qc[n])).isValid()) { - if (info.isDeprecated) { + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(juld_qc[n])); + // ======= + // CK_0229 + // ======= + if (tableEntry != null) { + // ======= + // CK_0230 + // ======= + if (tableEntry.isDeprecated()) { depQC.increment(n); } } else { @@ -1345,9 +1018,16 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, } if (juld_status[n] != ' ') { - info = ArgoReferenceTable.STATUS_FLAG.contains(juld_status[n]); - if (info.isValid()) { - if (info.isDeprecated) { + tableEntry = ArgoNVSReferenceTable.STATUS_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(juld_status[n])); + // ======= + // CK_0231 + // ======= + if (tableEntry != null) { + // ======= + // CK_0232 + // ======= + if (tableEntry.isDeprecated()) { depStatus.increment(n); } @@ -1355,7 +1035,9 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, invStatus.increment(n); } } - + // ======= + // CK_0233 + // ======= if ((juld_qc[n] == ' ') ^ (juld_status[n] == ' ')) { incStatus.increment(n); log.debug("qc/status inconsistent: " + "n = {}: juld, juld_status, juld_qc = {}, '{}', '{}'", n, @@ -1374,7 +1056,9 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, * "n = {}: juld, juld_status, juld_qc = {}, '{}', '{}'", n, juld[n], * juld_status[n], juld_qc[n]); } } */ - + // ======= + // CK_0234 + // ======= if (ArgoFileValidator.is_999_999_FillValue(juld[n])) { // ..data is missing - QC better be too if (!(juld_qc[n] == '9' || juld_qc[n] == ' ')) { @@ -1383,7 +1067,9 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, } else { // ..data not missing - check QC value - + // ======= + // CK_0235 + // ======= if (juld_qc[n] == ' ' || juld_qc[n] == '9') { noQC.increment(n); } @@ -1499,9 +1185,16 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, for (int n = 0; n < nMeasure; n++) { if (juld_adj_qc[n] != ' ') { - info = ArgoReferenceTable.QC_FLAG.contains(juld_adj_qc[n]); - if (info.isValid()) { - if (info.isDeprecated) { + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(juld_adj_qc[n])); + // ======= + // CK_0238 + // ======= + if (tableEntry != null) { + // ======= + // CK_0239 + // ======= + if (tableEntry.isDeprecated()) { depQC.increment(n); } @@ -1511,19 +1204,26 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, } if (juld_adj_status[n] != ' ') { - if (juld_adj_status[n] != ' ') { - info = ArgoReferenceTable.STATUS_FLAG.contains(juld_adj_status[n]); - if (info.isValid()) { - if (info.isDeprecated) { - depStatus.increment(n); - } - - } else { - invStatus.increment(n); + tableEntry = ArgoNVSReferenceTable.STATUS_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(juld_adj_status[n])); + // ======= + // CK_0240 + // ======= + if (tableEntry != null) { + // ======= + // CK_0241 + // ======= + if (tableEntry.isDeprecated()) { + depStatus.increment(n); } + + } else { + invStatus.increment(n); } } - + // ======= + // CK_0242 + // ======= if ((juld_adj_qc[n] == ' ') ^ (juld_adj_status[n] == ' ')) { incStatus.increment(n); log.debug("qc/status inconsistent: " + "n = {}: juld, juld_status, juld_qc = {}, '{}', '{}'", n, @@ -1551,7 +1251,9 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, * "n = {}: juld_adj, juld_adj_status, juld_adj_qc = {}, '{}', '{}'", n, * juld_adj[n], juld_adj_status[n], juld_adj_qc[n]); } } */ - + // ======= + // CK_0243 + // ======= if (ArgoFileValidator.is_999_999_FillValue(juld_adj[n])) { // ..data is missing - QC better be too if (!(juld_adj_qc[n] == '9' || juld_adj_qc[n] == ' ')) { @@ -1560,7 +1262,9 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, } else { // ..juld_adj not missing - check QC value - + // ======= + // CK_0244 + // ======= if (juld_adj_qc[n] == ' ' || juld_adj_qc[n] == '9') { noQC.increment(n); } @@ -1577,9 +1281,9 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, // ..but ignore the "launch cycle" (-1) if (finalCycle[n] > 0) { - // Integer ndx = - // CycNumIndex_cycle2index.get(Integer.valueOf(finalCycle[n])); - + // ======= + // CK_0245 + // ======= if (mode[n] != 'A' && mode[n] != 'D') { adjNotAorD.increment(n); } @@ -1698,13 +1402,17 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, // String dtg = ArgoDate.format(date); // log.debug("JULD[{}]: {} = {} (qc = {})", n, juld[n], juldDTG, qc); - + // ======= + // CK_0236 + // ======= if (date.before(earliestDate)) { juldBeforeEarliest.increment(n); } long sec = date.getTime(); - + // ======= + // CK_0237 + // ======= if ((sec - updateSec) > oneDaySec) { juldAfterUpdate.increment(n); } @@ -1723,13 +1431,17 @@ public boolean validateMC_and_JULD(int nMeasure, char[] mode_nMeasure, // ..check that JULD_ADJUSTED is after earliestDate and before DATE_UPDATE Date date = ArgoDate.get(juld_adj[n]); - + // ======= + // CK_0246 + // ======= if (date.before(earliestDate)) { juld_adjBeforeEarliest.increment(n); } long sec = date.getTime(); - + // ======= + // CK_0247 + // ======= if ((sec - updateSec) > oneDaySec) { juld_adjAfterUpdate.increment(n); } @@ -1820,6 +1532,9 @@ public boolean validateMetaData(ArgoReferenceTable.DACS dac) throws IOException String name; String str; + // NVS tables entry : + SkosConcept tableEntry; + name = "PLATFORM_NUMBER"; // ..valid wmo id str = arFile.readString(name).trim(); if (!super.validatePlatfomNumber(str)) { @@ -1833,15 +1548,24 @@ public boolean validateMetaData(ArgoReferenceTable.DACS dac) throws IOException str = arFile.readString(name).trim(); log.debug("{}: '{}'", name, str); - info = ArgoReferenceTable.DATA_STATE_INDICATOR.contains(str); - if (info.isValid()) { - if (info.isDeprecated) { - validationResult.addWarning(name + ": '" + str + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.DATA_STATE_INDICATOR_TABLE.getConceptMembersByAltLabelMap().get(str); + // ======= + // CK_0200 + // ======= + if (tableEntry != null) { + // ======= + // CK_0201 + // ======= + if (tableEntry.isDeprecated()) { + validationResult.addWarning(name + ": '" + str + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(name + ": '" + str + "' Status: " + info.message); + validationResult.addError(name + ": '" + str + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } + // ======= + // CK_0202 + // ======= name = "FIRMWARE_VERSION"; // ..not empty str = arFile.readString(name).trim(); log.debug("{}: '{}'", name, str); @@ -1849,6 +1573,9 @@ public boolean validateMetaData(ArgoReferenceTable.DACS dac) throws IOException validationResult.addError(name + ": Empty"); } + // ======= + // CK_0203 + // ======= name = "FLOAT_SERIAL_NO"; // ..not empty str = arFile.readString(name).trim(); log.debug("{}: '{}'", name, str); @@ -1860,49 +1587,71 @@ public boolean validateMetaData(ArgoReferenceTable.DACS dac) throws IOException str = arFile.readString(name).trim(); log.debug("{}: '{}'", name, str); - info = ArgoReferenceTable.PLATFORM_TYPE.contains(str); - if (info.isValid()) { - if (info.isDeprecated) { - validationResult.addWarning(name + ": '" + str + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.PLATFORM_TYPE_TABLE.getConceptMembersByAltLabelMap().get(str); + // ======= + // CK_0045 + // ======= + if (tableEntry != null) { + // ======= + // CK_0047 + // ======= + if (tableEntry.isDeprecated()) { + validationResult.addWarning(name + ": '" + str + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(name + ": '" + str + "' Status: " + info.message); + validationResult.addError(name + ": '" + str + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } name = "POSITIONING_SYSTEM"; // ..ref table 9 str = arFile.readString(name).trim(); log.debug(name + ": '{}'", str); - - info = ArgoReferenceTable.POSITIONING_SYSTEM.contains(str); - if (info.isValid()) { - if (info.isDeprecated) { - validationResult.addWarning(name + ": '" + str + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.POSITIONING_SYSTEM_TABLE.getConceptMembersByAltLabelMap().get(str); + // ======= + // CK_0204 + // ======= + if (tableEntry != null) { + // ======= + // CK_0205 + // ======= + if (tableEntry.isDeprecated()) { + validationResult.addWarning(name + ": '" + str + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(name + ": '" + str + "' Status: " + info.message); + validationResult.addError(name + ": '" + str + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } name = "WMO_INST_TYPE"; str = arFile.readString(name).trim(); log.debug("{}: '{}'", name, str); - + // ======= + // CK_0206 + // ======= if (str.length() == 0) { validationResult.addError(name + ": Not set"); } else { try { + // ======= + // CK_0207 + // ======= int N = Integer.valueOf(str); - info = ArgoReferenceTable.WMO_INST_TYPE.contains(N); - if (info.isValid()) { - if (info.isDeprecated) { - validationResult.addWarning(name + ": '" + str + "' Status: " + info.message); + tableEntry = ArgoNVSReferenceTable.ARGO_WMO_INST_TYPE_TABLE.getConceptMembersByAltLabelMap().get(str); + // ======= + // CK_0208 + // ======= + if (tableEntry != null) { + // ======= + // CK_0209 + // ======= + if (tableEntry.isDeprecated()) { + validationResult.addWarning(name + ": '" + str + "' Status: " + SkosConcept.DEPRECATED_CONCEPT); } } else { - validationResult.addError(name + ": '" + str + "' Status: " + info.message); + validationResult.addError(name + ": '" + str + "' Status: " + SkosConcept.INVALID_ALTLABEL_MESSAGE); } } catch (Exception e) { validationResult.addError(name + ": '" + str + "' Invalid. Must be integer."); @@ -1926,7 +1675,6 @@ public void validateNCycle(int nCycle, char[] mode) { String varName; ErrorTracker dep = new ErrorTracker(); ErrorTracker inv = new ErrorTracker(); - ArgoReferenceTable.ArgoReferenceEntry info; // ..bio-traj exception: GROUNDED not in bio-traj files @@ -1935,9 +1683,16 @@ public void validateNCycle(int nCycle, char[] mode) { String g = arFile.readString(varName, true); // ..true -> include any NULLs for (int n = 0; n < nCycle; n++) { - info = ArgoReferenceTable.GROUNDED.contains(g.charAt(n)); - if (info.isValid()) { - if (info.isDeprecated) { + SkosConcept tableEntry = ArgoNVSReferenceTable.GROUNDED_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(g.charAt(n))); + // ======= + // CK_0289 + // ======= + if (tableEntry != null) { + // ======= + // CK_0290 + // ======= + if (tableEntry.isDeprecated()) { dep.increment(n); } @@ -1963,9 +1718,15 @@ public void validateNCycle(int nCycle, char[] mode) { ErrorTracker set = new ErrorTracker(); for (int n = 1; n < nCycle; n++) { + // ======= + // CK_0291 + // ======= if (c[n] < 1) { inv.increment(n); } + // ======= + // CK_0292 + // ======= if (mode[n] == 'D' && c[n] == 99999) { set.increment(n); } @@ -2074,7 +1835,9 @@ public void validateNCycleJuld(int nMeasure, int nCycle, // char[] mode, int mc = -1; // ..loop - + // ========================= + // CK_0284 1/2 & CK_0285 1/2 + // ========================= for (int n = startNMeasureLoop; n < nMeasure; n++) { int cycNum = finalNMVar[n].cycle_number; @@ -2099,7 +1862,9 @@ public void validateNCycleJuld(int nMeasure, int nCycle, // char[] mode, // ..carry on with this iteration mc = finalNMVar[n].measurement_code; - + // ======= + // CK_0288 + // ======= if (mc == M_CODE) { // ..this is the one we are validating // ..find the index of this cycNum in N_CYCLE arrays @@ -2165,6 +1930,9 @@ public void validateNCycleJuld(int nMeasure, int nCycle, // char[] mode, int notJuld_s = 0, a_notJuld_s = -1; for (int n = 0; n < nCycle; n++) { + // ======= + // CK_0286 + // ======= if (!juldCheck.checked[n]) { // ..this value wasn't compared to a JULD value @@ -2175,7 +1943,9 @@ public void validateNCycleJuld(int nMeasure, int nCycle, // char[] mode, log.debug("unchecked {}[{}] not missing", var, n); } } - + // ======= + // CK_0287 + // ======= if (!(juldVar_status[n] == '9' || juldVar_status[n] == ' ')) { notJuld_s++; if (a_notJuld_s < 0) { @@ -2377,28 +2147,44 @@ public void validateParams(int nMeasure, char[] mode_nMeasure, ArrayList boolean fail = false; ArgoReferenceTable.ArgoReferenceEntry info; + // NVS table entry + SkosConcept tableEntry; ErrorTracker depQC = new ErrorTracker(); ErrorTracker invQC = new ErrorTracker(); ErrorTracker missQC = new ErrorTracker(); ErrorTracker nan = new ErrorTracker(); + ErrorTracker inf = new ErrorTracker(); ErrorTracker notMiss = new ErrorTracker(); for (int n = 0; n < nMeasure; n++) { - if (prm[n] == Float.NaN) { + // ======= + // CK_0260 + // ======= + if (Float.isNaN(prm[n])) { nan.increment(n); } + if (Float.isInfinite(prm[n])) { + inf.increment(n); + } if (prm_qc != null) { - info = ArgoReferenceTable.QC_FLAG.contains(prm_qc[n]); - - if (prm_qc[n] == ' ' || info.isValid()) { + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(prm_qc[n])); + // ======= + // CK_0261 + // ======= + if (prm_qc[n] == ' ' || tableEntry != null) { // ..valid QC flag or " " - - if (info.isDeprecated) { + // ======= + // CK_0262 + // ======= + if (tableEntry != null && tableEntry.isDeprecated()) { depQC.increment(n); } - + // ======= + // CK_0263 + // ======= if (ArgoFileValidator.is_FillValue(fValue, prm[n])) { // ..data is missing - QC better be too if (prm_qc[n] != '9' && prm_qc[n] != ' ') { @@ -2406,6 +2192,9 @@ public void validateParams(int nMeasure, char[] mode_nMeasure, ArrayList } } else { + // ======= + // CK_0264 + // ======= // ..data not missing - check QC value if (prm_qc[n] == ' ' || prm_qc[n] == '9') { @@ -2587,6 +2376,7 @@ public void validateParams(int nMeasure, char[] mode_nMeasure, ArrayList ErrorTracker missAdj = new ErrorTracker(); nan.reset(); ErrorTracker nanErr = new ErrorTracker(); + ErrorTracker infErr = new ErrorTracker(); ErrorTracker notMissAdj = new ErrorTracker(); ErrorTracker notMissAdjQc = new ErrorTracker(); ErrorTracker notMissErr = new ErrorTracker(); @@ -2596,26 +2386,49 @@ public void validateParams(int nMeasure, char[] mode_nMeasure, ArrayList ErrorTracker rQcNotMiss = new ErrorTracker(); for (int n = 0; n < nMeasure; n++) { - if (prm_adj[n] == Float.NaN) { + // ======= + // CK_0265 + // ======= + if (Float.isNaN(prm_adj[n])) { nan.increment(n); } - - if (prm_adj_err[n] == Float.NaN) { + // ======= + // CK_0267 + // ======= + if (Float.isNaN(prm_adj_err[n])) { nanErr.increment(n); } + // ======= + // CK_0266 + // ======= + if (Float.isInfinite(prm_adj[n])) { + inf.increment(n); + } + // ======= + // CK_0268 + // ======= + if (Float.isInfinite(prm_adj_err[n])) { + infErr.increment(n); + } if (mode[n] == 'R') { // ........... r-mode ............ - + // ======= + // CK_0269 + // ======= if (!ArgoFileValidator.is_FillValue(fValue, prm_adj[n])) { rNotMiss.increment(n); } - + // ======= + // CK_0270 + // ======= if (prm_adj_qc[n] != ' ' && prm_adj_qc[n] != '0' && prm_adj_qc[n] != '9') { rQcNotMiss.increment(n); } - + // ======= + // CK_0271 + // ======= if (!ArgoFileValidator.is_FillValue(fValue, prm_adj_err[n])) { rErrNotMiss.increment(n); } @@ -2628,9 +2441,16 @@ public void validateParams(int nMeasure, char[] mode_nMeasure, ArrayList if (prm_adj_qc[n] != ' ') { - info = ArgoReferenceTable.QC_FLAG.contains(prm_adj_qc[n]); - if (info.isValid()) { - if (info.isDeprecated) { + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(prm_adj_qc[n])); + // ======= + // CK_0272 + // ======= + if (tableEntry != null) { + // ======= + // CK_0273 + // ======= + if (tableEntry.isDeprecated()) { depQC.increment(n); } @@ -2639,6 +2459,9 @@ public void validateParams(int nMeasure, char[] mode_nMeasure, ArrayList } } + // ======= + // CK_0274 + // ======= // ..check special case of adj_qc = ' ' if (prm_qc[n] == ' ' || prm_adj_qc[n] == ' ') { // ..one is "not measured", both must be @@ -2646,6 +2469,9 @@ public void validateParams(int nMeasure, char[] mode_nMeasure, ArrayList incNotMeas.increment(n); } else { + // ======= + // CK_0275 + // ======= if (!ArgoFileValidator.is_FillValue(fValue, prm_adj[n])) { notNotMeas.increment(n); } @@ -2657,16 +2483,24 @@ public void validateParams(int nMeasure, char[] mode_nMeasure, ArrayList if (ArgoFileValidator.is_FillValue(fValue, prm[n])) { // .....param is missing..... - + // ======= + // CK_0276 + // ======= if (!ArgoFileValidator.is_FillValue(fValue, prm_adj[n])) { // ..param_adjusted is NOT missing - error notMissAdj.increment(n); } + // ======= + // CK_0278 + // ======= if (!ArgoFileValidator.is_FillValue(fValue, prm_adj_err[n])) { // ..param_adjusted_error is NOT missing - error notMissErr.increment(n); } + // ======= + // CK_0277 + // ======= if (prm_adj_qc[n] != '9') { // ..param_adjusted_qc is NOT missing - error notMissAdjQc.increment(n); @@ -2676,33 +2510,41 @@ public void validateParams(int nMeasure, char[] mode_nMeasure, ArrayList // .....param is NOT missing...... if (ArgoFileValidator.is_FillValue(fValue, prm_adj[n])) { + // ======= + // CK_0279 + // ======= // ..param_adj is missing - QC must be 4 or 9 if (prm_adj_qc[n] != '4' && prm_adj_qc[n] != '9') { missAdj.increment(n); } - + // ======= + // CK_0280 + // ======= if (!ArgoFileValidator.is_FillValue(fValue, prm_adj_err[n])) { errNotMiss.increment(n); } } else { // ..param_adj is NOT missing - - if (prm_adj_qc[n] == '4' || prm_adj_qc[n] == '9') { - if (mode[n] == 'D') { - adjNotMiss.increment(n); - - } else { // ..mode == 'A' - if (prm_adj_qc[n] == '9') { - adjNotMiss.increment(n); - } - } + // ======= + // CK_0281 + // ======= + if ((prm_adj_qc[n] == '4' && mode[n] == 'D') || prm_adj_qc[n] == '9') { + adjNotMiss.increment(n); } else { if (mode[n] == 'D') { + // ======= + // CK_0282 + // ======= if (is_FillValue(fValue, prm_adj_err[n])) { errNotSetDmode.increment(n); } + + // =================================================== + // CHECK_0077 & CK_0080 (not implemented) + // =================================================== + // } else { // //.. mode == 'A' @@ -2763,6 +2605,12 @@ public void validateParams(int nMeasure, char[] mode_nMeasure, ArrayList nanErr.addMessage(validationResult.getWarnings(), // will be.. formatErrors, varName + "_ERROR: NaN at ", "measurements"); + inf.addMessage(validationResult.getWarnings(), // will be.. formatErrors, + varName + ": Inf at ", "measurements"); + + infErr.addMessage(validationResult.getWarnings(), // will be.. formatErrors, + varName + "_ERROR: Inf at ", "measurements"); + notMissAdj.addMessage(validationResult.getWarnings(), // will be.. formatErrors, varName + ": Not FillValue where PARAM is FillValue at", "measurements"); @@ -2898,12 +2746,21 @@ public void validatePosition(int nMeasure) throws IOException { ErrorTracker depCode = new ErrorTracker(); ErrorTracker invCode = new ErrorTracker(); ArgoReferenceTable.ArgoReferenceEntry info; + // NVS table entry + SkosConcept tableEntry; for (int n = 0; n < nMeasure; n++) { if (pos_qc[n] != ' ') { - info = ArgoReferenceTable.QC_FLAG.contains(pos_qc[n]); - if (info.isValid()) { - if (info.isDeprecated) { + tableEntry = ArgoNVSReferenceTable.DM_QC_FLAG_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(pos_qc[n])); + // ======= + // CK_0248 + // ======= + if (tableEntry != null) { + // ======= + // CK_0249 + // ======= + if (tableEntry.isDeprecated()) { depCode.increment(n); } @@ -2926,9 +2783,16 @@ public void validatePosition(int nMeasure) throws IOException { for (int n = 0; n < nMeasure; n++) { if (pos_acc[n] != ' ') { - info = ArgoReferenceTable.LOCATION_CLASS.contains(pos_acc[n]); - if (info.isValid()) { - if (info.isDeprecated) { + // ======= + // CK_0250 + // ======= + tableEntry = ArgoNVSReferenceTable.POSITION_ACCURACY_TABLE.getConceptMembersByAltLabelMap() + .get(String.valueOf(pos_acc[n])); + if (tableEntry != null) { + // ======= + // CK_0251 + // ======= + if (tableEntry.isDeprecated()) { depCode.increment(n); } @@ -2947,6 +2811,9 @@ public void validatePosition(int nMeasure) throws IOException { ErrorTracker notMissQC = new ErrorTracker(); ErrorTracker notMissPos = new ErrorTracker(); for (int n = 0; n < nMeasure; n++) { + // ======= + // CK_0252 + // ======= if (is_99_999_FillValue(lat[n]) || is_99_999_FillValue(lon[n])) { // ..lat or lon is FillValue, QC better be missing or FillValue @@ -2954,7 +2821,9 @@ public void validatePosition(int nMeasure) throws IOException { if (!(pos_qc[n] == '9' || pos_qc[n] == ' ')) { notMissQC.increment(n); } - + // ======= + // CK_0253 + // ======= } else if (pos_qc[n] == '9' || pos_qc[n] == ' ') { // ..QC is missing or FillValue, lat/lon is NOT FillValue @@ -3025,10 +2894,15 @@ public ArrayList validateTrajectoryParameters(int nParam) throws IOExcep last_empty = -1; } + // ======= + // CK_0254 + // ======= // ..check if this is legal if (allowedParam.contains(param)) { // .. is allowed - + // ======= + // CK_0256 + // ======= if (paramList.contains(param)) { // ..this is a duplicate entry @@ -3039,7 +2913,9 @@ public ArrayList validateTrajectoryParameters(int nParam) throws IOExcep } else { log.debug("param #{}: '{}': accepted", paramNum, param); } - + // ======= + // CK_0257 + // ======= if (arFile.getFileSpec().isDeprecatedPhysicalParam(param)) { // ..this is a deprecated parameter name @@ -3060,11 +2936,16 @@ public ArrayList validateTrajectoryParameters(int nParam) throws IOExcep log.debug("paramList: " + paramList); + // ======= + // CK_0257 + // ======= // ..report errors and warnings if (embeddedEmpty) { validationResult.addWarning("TRAJECTORY_PARAMETERS: Empty entries in list" + "\n\tList: " + paramList); } - + // ======= + // CK_0258 + // ======= // ......check that all TRAJECTORY_PARAMETERS have variable........ for (String p : paramList) { if (p.length() == 0) { @@ -3077,7 +2958,9 @@ public ArrayList validateTrajectoryParameters(int nParam) throws IOExcep // fatalError = true; } } - + // ======= + // CK_0259 + // ======= // ...check whether all with data are in TRAJECTORY_PARAMETERS... for (String p : allowedParam) { if (!paramList.contains(p)) { @@ -3313,12 +3196,16 @@ public void check(int ndx, double juld, char juld_status, int ndxIndex, double j char juldIndex_status) { checked[ndxIndex] = true; - + // =========== + // CK_0284 2/2 + // =========== if (Math.abs(juld - juldIndex) > 1.e-6) { // ..these don't match incJuld.increment(ndx, ndxIndex); } - + // =========== + // CK_0285 2/2 + // =========== if (juld_status != juldIndex_status) { // ..these don't match incJuld_s.increment(ndx, ndxIndex); diff --git a/file_checker_exec/src/main/resources/Application.properties b/file_checker_exec/src/main/resources/Application.properties index a6f63cf..d1dd56e 100644 --- a/file_checker_exec/src/main/resources/Application.properties +++ b/file_checker_exec/src/main/resources/Application.properties @@ -1 +1,3 @@ -Version = @project.version@ \ No newline at end of file +Version = @project.version@ + +nvs.baseurl.default=https://vocab.nerc.ac.uk/collection/ \ No newline at end of file diff --git a/file_checker_exec/src/main/resources/file_checker_spec/Makefile b/file_checker_exec/src/main/resources/file_checker_spec/Makefile new file mode 100644 index 0000000..d88e19c --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/Makefile @@ -0,0 +1,22 @@ +# $Id $ +# +# Simply makes the VersionInfo.properties file with the current revision number in it +# + +VersionInfo.properties: force + set -x ;\ + cd ../spec ;\ + f=VersionInfo.properties ;\ + if [[ ! -f $$f ]] ;\ + then echo "Version = unknown" > $$f ;\ + fi ;\ + if svn info ;\ + then \ + v=$$(svnversion -n -c . | sed 's/^.*://') ;\ + sed "/Version/c \Version = -r$$v" $$f >| $$f.new ;\ + mv $$f.new $$f ;\ + else \ + echo -e "\nNO SVNVERSION INFO for spec\n" ;\ + fi + +force: diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R01.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R01.jsonld new file mode 100644 index 0000000..d30227b --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R01.jsonld @@ -0,0 +1,400 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/2/" + }, + "dce:identifier": "SDN:R01::BTRAJ", + "pav:version": "2", + "skos:notation": "SDN:R01::BTRAJ", + "skos:altLabel": "BTRAJ", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "B-Argo trajectory" + }, + "dc:identifier": "SDN:R01::BTRAJ", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float trajectory file containing CTD pressure data and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TRAJ/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TRAJ/1/" + }, + "dce:identifier": "SDN:R01::TRAJ", + "pav:version": "1", + "skos:notation": "SDN:R01::TRAJ", + "skos:altLabel": "TRAJ", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo trajectory" + }, + "dc:identifier": "SDN:R01::TRAJ", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float trajectory file containing CTD sensors data (pressure, temperature, conductivity, salinity)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/1/" + }, + "pav:authoredOn": "2020-04-04 16:03:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/2/" + }, + "dce:identifier": "SDN:R01::MTRAJ", + "pav:version": "2", + "skos:notation": "SDN:R01::MTRAJ", + "skos:altLabel": "MTRAJ", + "dc:date": "2020-04-04 16:03:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo trajectory merged" + }, + "dc:identifier": "SDN:R01::MTRAJ", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float trajectory file containing CTD sensors data (pressure, temperature, conductivity, salinity) and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance), retaining all temporal sampling schemes." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/1/" + }, + "pav:authoredOn": "2023-10-06 12:38:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/2/" + }, + "dce:identifier": "SDN:R01::META", + "pav:version": "2", + "skos:notation": "SDN:R01::META", + "skos:altLabel": "META", + "dc:date": "2023-10-06 12:38:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo meta-data" + }, + "dc:identifier": "SDN:R01::META", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "File containing descriptive information about an Argo float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/1/" + }, + "pav:authoredOn": "2020-04-04 16:03:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/2/" + }, + "dce:identifier": "SDN:R01::MPROF", + "pav:version": "2", + "skos:notation": "SDN:R01::MPROF", + "skos:altLabel": "MPROF", + "dc:date": "2020-04-04 16:03:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo profile merged" + }, + "dc:identifier": "SDN:R01::MPROF", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD sensors data (pressure, temperature, conductivity, salinity) and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance), retaining all vertical sampling schemes." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/SPROF/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/SPROF/1/" + }, + "dce:identifier": "SDN:R01::SPROF", + "pav:version": "1", + "skos:notation": "SDN:R01::SPROF", + "skos:altLabel": "SPROF", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo synthetic profile" + }, + "dc:identifier": "SDN:R01::SPROF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD sensors data (pressure, temperature, conductivity, salinity) and one or more biogeochemical (BGC) parameters data (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance), interpolated onto common pressure levels." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BPROF/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BPROF/1/" + }, + "dce:identifier": "SDN:R01::BPROF", + "pav:version": "1", + "skos:notation": "SDN:R01::BPROF", + "skos:altLabel": "BPROF", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "B-Argo profile" + }, + "dc:identifier": "SDN:R01::BPROF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD pressure data and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TECH/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TECH/1/" + }, + "dce:identifier": "SDN:R01::TECH", + "pav:version": "1", + "skos:notation": "SDN:R01::TECH", + "skos:altLabel": "TECH", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo technical data" + }, + "dc:identifier": "SDN:R01::TECH", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "File containing technical information about an Argo float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/METAAUX/", + "pav:authoredOn": "2024-09-11 11:40:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/METAAUX/1/" + }, + "dce:identifier": "SDN:R01::METAAUX", + "pav:version": "1", + "skos:notation": "SDN:R01::METAAUX", + "skos:altLabel": "", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo auxiliary meta-data" + }, + "dc:identifier": "SDN:R01::METAAUX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "File containing descriptive information about an Argo float, for floats reporting non standard auxiliary features." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/PROF/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/PROF/1/" + }, + "dce:identifier": "SDN:R01::PROF", + "pav:version": "1", + "skos:notation": "SDN:R01::PROF", + "skos:altLabel": "PROF", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo profile" + }, + "dc:identifier": "SDN:R01::PROF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD sensors data (pressure, temperature, conductivity, salinity)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TRAJ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/SPROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BPROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TECH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/PROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/METAAUX/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing the type of data contained in an Argo netCDF file. Argo netCDF variable DATA_TYPE is populated by R01 prefLabel.", + "dc:title": "Argo data type", + "skos:prefLabel": "Argo data type", + "owl:versionInfo": "4", + "dc:date": "2024-09-13 03:00:00.0", + "skos:altLabel": "DATA_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "DATA_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R03.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R03.jsonld new file mode 100644 index 0000000..f6aaaf0 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R03.jsonld @@ -0,0 +1,4732 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_DURAFET", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of DURAFET samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_DURAFET", + "skos:notation": "SDN:R03::NB_SAMPLE_DURAFET", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_DURAFET", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_OCR", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of OCR samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_OCR", + "skos:notation": "SDN:R03::NB_SAMPLE_OCR", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_OCR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_ISUS", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of ISUS samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_ISUS", + "skos:notation": "SDN:R03::NB_SAMPLE_ISUS", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_ISUS", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_STM", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of STM samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_STM", + "skos:notation": "SDN:R03::NB_SAMPLE_STM", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_STM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_MCOMS", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of MCOMS samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_MCOMS", + "skos:notation": "SDN:R03::NB_SAMPLE_MCOMS", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_MCOMS", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SFET/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SFET/1/" + }, + "pav:authoredOn": "2025-11-25 10:14:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SFET/2/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_SFET", + "pav:version": "2", + "skos:notation": "SDN:R03::NB_SAMPLE_SFET", + "skos:altLabel": "NB_SAMPLE_SFET", + "dc:date": "2025-11-25 10:14:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of samples in each pressure bin for the SFET" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_SFET", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of SFET samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin for the SFET; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ib; data_type:short}" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_OPTODE", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of optode samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_OPTODE", + "skos:notation": "SDN:R03::NB_SAMPLE_OPTODE", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_OPTODE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of CTD samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin for the CTD; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_CTD", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of samples in each pressure bin for the CTD" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "NB_SAMPLE_CTD", + "skos:notation": "SDN:R03::NB_SAMPLE_CTD", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_CTD", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_SUNA", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of SUNA samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-15 16:32:25.0", + "skos:altLabel": "NB_SAMPLE_SUNA", + "skos:notation": "SDN:R03::NB_SAMPLE_SUNA", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_SUNA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/3/" + }, + "pav:authoredOn": "2026-01-15 16:32:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_ECO", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of ECO samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_ECO", + "skos:notation": "SDN:R03::NB_SAMPLE_ECO", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_ECO", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_CROVER", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of c-Rover samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_CROVER", + "skos:notation": "SDN:R03::NB_SAMPLE_CROVER", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_CROVER", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Chlorophyll fluorescence in relative unit with factory calibration Local_Attributes:{long_name:Chlorophyll fluorescence with factory calibration; standard_name:-; units:ru; valid_min:-0.2f; valid_max:100.f; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CHLA_FLUORESCENCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Chlorophyll fluorescence with factory calibration" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "CHLA_FLUORESCENCE", + "skos:notation": "SDN:R03::CHLA_FLUORESCENCE", + "pav:version": "3", + "dce:identifier": "SDN:R03::CHLA_FLUORESCENCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:02.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_CYC", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of CYCLOPS samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_CYC", + "skos:notation": "SDN:R03::NB_SAMPLE_CYC", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_CYC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Internal temperature of the conductivity cell. Local_Attributes:{long_name:Internal temperature of the conductivity cell; standard_name:-; units:degree_Celsius; valid_min:-2.f; valid_max:40.f; fill_value:99999.f}. Properties:{category:ic; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_CNDC", + "skos:prefLabel": { + "@language": "en", + "@value": "Internal temperature of the conductivity cell" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TEMP_CNDC", + "skos:notation": "SDN:R03::TEMP_CNDC", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TMESCNDC/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_CNDC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUPH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH against the free scale (pH based on free proton concentration). Local_Attributes:{long_name:pH; standard_name:-; units:dimensionless; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PH_IN_SITU_FREE", + "skos:prefLabel": { + "@language": "en", + "@value": "pH (free scale)" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "PH_IN_SITU_FREE", + "skos:notation": "SDN:R03::PH_IN_SITU_FREE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PHFRWCAL/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PH_IN_SITU_FREE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUPH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH against the total scale (pH based on free proton concentration and proton associated with SO4 2- ion). Local_Attributes:{long_name:pH; standard_name:sea_water_ph_reported_on_total_scale; units:dimensionless; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PH_IN_SITU_TOTAL", + "skos:prefLabel": { + "@language": "en", + "@value": "pH (total scale)" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "PH_IN_SITU_TOTAL", + "skos:notation": "SDN:R03::PH_IN_SITU_TOTAL", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PHMASSXX/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PH_IN_SITU_TOTAL", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUPH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH against the seawater scale (pH based on free proton concentration and proton associated with SO4 2- and F- ions). Local_Attributes:{long_name:pH; standard_name:-; units:dimensionless; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PH_IN_SITU_SEAWATER", + "skos:prefLabel": { + "@language": "en", + "@value": "pH (seawater scale)" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "PH_IN_SITU_SEAWATER", + "skos:notation": "SDN:R03::PH_IN_SITU_SEAWATER", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PHSWWCAL/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PH_IN_SITU_SEAWATER", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UMES/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling Photosynthetically Available Radiation (PAR). Local_Attributes:{long_name:Downwelling photosynthetic available radiation; standard_name:downwelling_photosynthetic_photon_flux_in_sea_water; units:microMoleQuanta/m^2/sec; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWNWELLING_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling photosynthetic available radiation" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "DOWNWELLING_PAR", + "skos:notation": "SDN:R03::DOWNWELLING_PAR", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRRXUD/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWNWELLING_PAR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw temperature signal (voltage) from the thermistor of dissolved oxygen sensor, reported by the SBE63 sensor. Local_Attributes:{long_name:Thermistor voltage reported by oxygen sensor; standard_name:-; units:volt; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_VOLTAGE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Thermistor voltage reported by oxygen sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "TEMP_VOLTAGE_DOXY", + "skos:notation": "SDN:R03::TEMP_VOLTAGE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TCNTOPTT/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::TEMP_VOLTAGE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal from pH sensor, equating to the potential between the transistor source and the reference electrode. Local_Attributes:{long_name:Voltage difference between reference and source from pH sensor; standard_name:-; units:volt; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::VRS_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Voltage difference between reference and source from pH sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "VRS_PH", + "skos:notation": "SDN:R03::VRS_PH", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PVLTGC01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::VRS_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Counter electrode signal from pH sensor. Local_Attributes:{long_name:Counter electrode voltage of pH sensor; standard_name:-; units:volt; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::VK_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Counter electrode voltage of pH sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "VK_PH", + "skos:notation": "SDN:R03::VK_PH", + "pav:version": "3", + "dce:identifier": "SDN:R03::VK_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:01.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal from dissolved oxygen sensor. Local_Attributes:{long_name:Voltage reported by oxygen sensor; standard_name:-; units:volt; valid_min:0.f; valid_max:100.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::VOLTAGE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Voltage reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "VOLTAGE_DOXY", + "skos:notation": "SDN:R03::VOLTAGE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYOCPVL/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::VOLTAGE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/NAMP/" + }, + "skos:definition": { + "@language": "en", + "@value": "Counter electrode current from pH sensor. Local_Attributes:{long_name:Counter electrode current of pH sensor; standard_name:-; units:nanoampere; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::IK_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Counter electrode current of pH sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "IK_PH", + "skos:notation": "SDN:R03::IK_PH", + "pav:version": "3", + "dce:identifier": "SDN:R03::IK_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:02.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/NAMP/" + }, + "skos:definition": { + "@language": "en", + "@value": "Base current of pH sensor chip. Local_Attributes:{long_name:Base current of pH sensor; standard_name:-; units:nanoampere; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::IB_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Base current of pH sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "IB_PH", + "skos:notation": "SDN:R03::IB_PH", + "pav:version": "3", + "dce:identifier": "SDN:R03::IB_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/USEC/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw phase delay by optode, reported by SBE63 optode sensor. Local_Attributes:{long_name:Phase delay reported by oxygen sensor; standard_name:-; units:microsecond; valid_min:0.f; valid_max:99999.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PHASE_DELAY_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Phase delay reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "PHASE_DELAY_DOXY", + "skos:notation": "SDN:R03::PHASE_DELAY_DOXY", + "pav:version": "3", + "dce:identifier": "SDN:R03::PHASE_DELAY_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPBB/" + }, + "skos:definition": { + "@language": "en", + "@value": "Oxygen partial pressure, alternative oxygen quantity of oxygen optodes (for in-air measurements). Local_Attributes:{long_name:Partial pressure of oxygen; standard_name:-; units:millibar; valid_min:-5.f; valid_max:5000.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PPOX_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Partial pressure of oxygen" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "PPOX_DOXY", + "skos:notation": "SDN:R03::PPOX_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PPOXZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PPOX_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPDB/" + }, + "skos:definition": { + "@language": "en", + "@value": "The force per unit area exerted by the water column on a pressure sensor, corrected to read zero at sea level. Local_Attributes:{long_name:Sea water pressure, equals 0 at sea-level; standard_name:sea_water_pressure; units:decibar; valid_min:0.f; valid_max:12000.f; fill_value:99999.f}. Properties:{category:c; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PRES", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea water pressure, equals 0 at sea-level" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "PRES", + "skos:notation": "SDN:R03::PRES", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PRESPR01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PRES", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:13:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UECA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Measure of seawater electrical conductivity. Local_Attributes:{long_name:Electrical conductivity; standard_name:sea_water_electrical_conductivity; units:mhos/m; valid_min:0.f; valid_max:8.5f; fill_value:99999.f}. Properties:{category:ic; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CNDC", + "skos:prefLabel": { + "@language": "en", + "@value": "Electrical conductivity" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "CNDC", + "skos:notation": "SDN:R03::CNDC", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/CNDCST01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::CNDC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UTAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Fractional day of the individual measurement relative to JULD of the station. Local_Attributes:{long_name:Fractional day of the individual measurement relative to JULD of the station; standard_name:-; units:days; valid_min:-3; valid_max:3; fill_value:999999}. Properties:{category:ic; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MTIME", + "skos:prefLabel": { + "@language": "en", + "@value": "Fractional day of the individual measurement relative to JULD of the station" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "MTIME", + "skos:notation": "SDN:R03::MTIME", + "pav:version": "3", + "dce:identifier": "SDN:R03::MTIME", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle beam attenuation at 660 nm wavelength, reported by C-Rover sensor. Local_Attributes:{long_name:Particle beam attenuation at 660 nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CP660", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle beam attenuation at 660 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "CP660", + "skos:notation": "SDN:R03::CP660", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/ATT650AC/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::CP660", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle beam attenuation at unspecified wavelength, reported by C-Rover sensor. Local_Attributes:{long_name:Particle beam attenuation at x nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CP", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle beam attenuation at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "CP", + "skos:notation": "SDN:R03::CP", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/ATTNZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::CP", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance at 555 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Upwelling radiance at 555 nanometers; standard_name:upwelling_radiance_in_sea_water; units:W/m^2/nm/sr; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 555 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UP_RADIANCE555", + "skos:notation": "SDN:R03::UP_RADIANCE555", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU555L/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UP_RADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance at unspecified wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Upwelling radiance at x nanometers; standard_name:upwelling_radiance_in_sea_water; units:W/m^2/nm/sr; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UP_RADIANCE", + "skos:notation": "SDN:R03::UP_RADIANCE", + "pav:version": "3", + "dce:identifier": "SDN:R03::UP_RADIANCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:01.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance at 443 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Upwelling radiance at 443 nanometers; standard_name:upwelling_radiance_in_sea_water; units:W/m^2/nm/sr; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 443 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UP_RADIANCE443", + "skos:notation": "SDN:R03::UP_RADIANCE443", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU443L/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UP_RADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance at 412 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Upwelling radiance at 412 nanometers; standard_name:upwelling_radiance_in_sea_water; units:W/m^2/nm/sr; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 412 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UP_RADIANCE412", + "skos:notation": "SDN:R03::UP_RADIANCE412", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU412L/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UP_RADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance at 490 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Upwelling radiance at 490 nanometers; standard_name:upwelling_radiance_in_sea_water; units:W/m^2/nm/sr; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 490 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UP_RADIANCE490", + "skos:notation": "SDN:R03::UP_RADIANCE490", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU490L/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UP_RADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPPB/" + }, + "skos:definition": { + "@language": "en", + "@value": "Coloured dissolved organic matter (CDOM) concentration. Local_Attributes:{long_name:Concentration of coloured dissolved organic matter in sea water; standard_name:-; units:ppb; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CDOM", + "skos:prefLabel": { + "@language": "en", + "@value": "Concentration of coloured dissolved organic matter in sea water" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "CDOM", + "skos:notation": "SDN:R03::CDOM", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/CDOMZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::CDOM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:13:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at unspecified wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at x nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "DOWN_IRRADIANCE", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXED/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at 412 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at 412 nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 412 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "DOWN_IRRADIANCE412", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE412", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD412E/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at 490 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at 490 nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 490 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "DOWN_IRRADIANCE490", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE490", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD490E/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at 443 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at 443 nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 443 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "DOWN_IRRADIANCE443", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE443", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD443E/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at 380 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at 380 nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE380", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 380 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "DOWN_IRRADIANCE380", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE380", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD380E/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE380", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at 555 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at 555 nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 555 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "DOWN_IRRADIANCE555", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE555", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD555E/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UTHZ/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal from dissolved oxygen sensor. Local_Attributes:{long_name:Frequency reported by oxygen sensor; standard_name:-; units:hertz; valid_min:0.f; valid_max:25000.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FREQUENCY_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Frequency reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "FREQUENCY_DOXY", + "skos:notation": "SDN:R03::FREQUENCY_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYOCPFR/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::FREQUENCY_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:13:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering at 700 nm wavelength, reported by ECO3 sensor. Local_Attributes:{long_name:Particle backscattering at 700 nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP700", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at 700 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "BBP700", + "skos:notation": "SDN:R03::BBP700", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BB117NIR/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BBP700", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering at unspecified wavelength, reported by ECO3 sensor. Local_Attributes:{long_name:Particle backscattering at x nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BBP", + "skos:notation": "SDN:R03::BBP", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BSXXXVSF/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BBP", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering at 532 nm wavelength, reported by ECO3 sensor. Local_Attributes:{long_name:Particle backscattering at 532 nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP532", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at 532 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "BBP532", + "skos:notation": "SDN:R03::BBP532", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BB117G01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BBP532", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering at 470 nm wavelength, reported by ECO3 sensor. Local_Attributes:{long_name:Particle backscattering at 470 nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP470", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at 470 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "BBP470", + "skos:notation": "SDN:R03::BBP470", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BB117B01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BBP470", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Spectrometer temperature of nitrate sensor, reported by the SUNA sensor from Remocean floats. Local_Attributes:{long_name:Temperature of the spectrometer; standard_name:-; units:degree_Celsius; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Temperature of the spectrometer" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TEMP_SPECTROPHOTOMETER_NITRATE", + "skos:notation": "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE", + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature from thermistor on dissolved oxygen sensor, expressed against the International Temperature Scale 1990 (ITS-90) calibration standard. Local_Attributes:{long_name:Sea temperature from oxygen sensor ITS-90 scale; standard_name:temperature_of_sensor_for_oxygen_in_sea_water; units:degree_Celsius; valid_min:-2.f; valid_max:40.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea temperature from oxygen sensor ITS-90 scale" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "TEMP_DOXY", + "skos:notation": "SDN:R03::TEMP_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYTAAOP/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature of seawater, reported by the pH sensor. Local_Attributes:{long_name:Sea temperature from pH sensor; standard_name:-; units:degree_Celsius; valid_min:-2.f; valid_max:40.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea temperature from pH sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TEMP_PH", + "skos:notation": "SDN:R03::TEMP_PH", + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal temperature of the nitrate sensor, reported by the SUNA sensor from Remocean floats. Local_Attributes:{long_name:Internal temperature of the SUNA sensor; standard_name:-; units:degree_Celsius; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Internal temperature of the SUNA sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TEMP_NITRATE", + "skos:notation": "SDN:R03::TEMP_NITRATE", + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPCT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Relative humidity inside the nitrate sensor (If > 50% there is a leak), reported by the SUNA sensor from Remocean floats. Local_Attributes:{long_name:Relative humidity inside the SUNA sensor (If > 50% There is a leak); standard_name:-; units:percent; valid_min:0.f; valid_max:100.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::HUMIDITY_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Relative humidity inside the SUNA sensor (If > 50% There is a leak)" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "HUMIDITY_NITRATE", + "skos:notation": "SDN:R03::HUMIDITY_NITRATE", + "pav:version": "3", + "dce:identifier": "SDN:R03::HUMIDITY_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift, reported by Aanderaa optode 4330/4330F sensor. Local_Attributes:{long_name:Uncalibrated phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:10.f; valid_max:70.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::C1PHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift reported by Aanderaa optode 4330/4330F" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "C1PHASE_DOXY", + "skos:notation": "SDN:R03::C1PHASE_DOXY", + "pav:version": "4", + "dce:identifier": "SDN:R03::C1PHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/4/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated temperature compensated phase shift, reported by Aanderaa 4330 and 4330F optode sensors. Local_Attributes:{long_name:Uncalibrated phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:10.f; valid_max:70.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated phase shift reported by oxygen sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TPHASE_DOXY", + "skos:notation": "SDN:R03::TPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHTC/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::TPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Inclination of the float axis in respect to the local vertical. Local_Attributes:{long_name:Inclination of the float axis in respect to the local vertical; standard_name:-; units:degree; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TILT", + "skos:prefLabel": { + "@language": "en", + "@value": "Inclination of the float axis in respect to the local vertical" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TILT", + "skos:notation": "SDN:R03::TILT", + "pav:version": "3", + "dce:identifier": "SDN:R03::TILT", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated red excitation light phase shift, reported by Aanderaa optode 4330/4330F sensor. Local_Attributes:{long_name:Uncalibrated phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:0.f; valid_max:15.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::C2PHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated red excitation light phase shift reported by Aanderaa optode 4330/4330F" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "C2PHASE_DOXY", + "skos:notation": "SDN:R03::C2PHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAR/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::C2PHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/3/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated red excitation light phase shift, reported by Aanderaa optode 3830. Local_Attributes:{long_name:Uncalibrated red phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:10.f; valid_max:70.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated red phase shift reported by oxygen sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "RPHASE_DOXY", + "skos:notation": "SDN:R03::RPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAR/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::RPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift, reported by Aanderaa optode 3830 sensor. Local_Attributes:{long_name:Uncalibrated phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:10.f; valid_max:70.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift reported by Aanderaa optode 3830" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "BPHASE_DOXY", + "skos:notation": "SDN:R03::BPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAB/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::BPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Calibrated phase, reported by Aanderaa optode 3830 sensor. Local_Attributes:{long_name:Calibrated phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:10.f; valid_max:70.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Calibrated phase shift reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "DPHASE_DOXY", + "skos:notation": "SDN:R03::DPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAC/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPOX/" + }, + "skos:definition": { + "@language": "en", + "@value": "Dissolved oxygen concentration uncorrected for salinity and pressure effects. Local_Attributes:{long_name:Uncompensated (pressure and salinity) oxygen concentration reported by the oxygen sensor; standard_name:mole_concentration_of_dissolved_molecular_oxygen_in_sea_water; units:micromole/l; valid_min:0.f; valid_max:650.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MOLAR_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncompensated (pressure and salinity) oxygen concentration reported by the oxygen sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "MOLAR_DOXY", + "skos:notation": "SDN:R03::MOLAR_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DOXYMMOP/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::MOLAR_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPOX/" + }, + "skos:definition": { + "@language": "en", + "@value": "Nitrate concentration, reported by the SUNA sensor. Local_Attributes:{long_name:Nitrate; standard_name:-; units:micromole/l; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MOLAR_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Molar nitrate" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "MOLAR_NITRATE", + "skos:notation": "SDN:R03::MOLAR_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NTRZMC01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::MOLAR_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal from backscattering meter at 700 nm wavelength, reported by ECO3 or FLBB sensors. Local_Attributes:{long_name:Total angle specific volume from backscattering sensor at 700 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING700", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at 700 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BETA_BACKSCATTERING700", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING700", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING700", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal from backscattering meter at 470 nm wavelength, reported by ECO3 or FLBB sensors. Local_Attributes:{long_name:Total angle specific volume from backscattering sensor at 470 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING470", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at 470 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BETA_BACKSCATTERING470", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING470", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING470", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw turbidity signal from side scattering sensor, reported by FLNTU sensor. Local_Attributes:{long_name:Turbidity signal from side scattering sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::SIDE_SCATTERING_TURBIDITY", + "skos:prefLabel": { + "@language": "en", + "@value": "Turbidity signal from side scattering sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "SIDE_SCATTERING_TURBIDITY", + "skos:notation": "SDN:R03::SIDE_SCATTERING_TURBIDITY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NCNTTUR1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::SIDE_SCATTERING_TURBIDITY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Practical salinity of the water body by conductivity cell and computation using the UNESCO 1983 algorithm. Local_Attributes:{long_name:Practical salinity; standard_name:sea_water_salinity; units:psu; valid_min:2.f; valid_max:41.f; fill_value:99999.f}. Properties:{category:c; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PSAL", + "skos:prefLabel": { + "@language": "en", + "@value": "Practical salinity" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "PSAL", + "skos:notation": "SDN:R03::PSAL", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PSALST01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PSAL", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw beam attenuation signal from transmissometer sensor at unspecified wavelength. Local_Attributes:{long_name:Beam attenuation from transmissometer sensor at x nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "skos:prefLabel": { + "@language": "en", + "@value": "Beam attenuation from transmissometer sensor at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "skos:notation": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NCNTATT1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal at 412 nm wavelength, reported by OCR504 sensor. Local_Attributes:{long_name:Raw upwelling radiance at 412 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 412 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "RAW_UPWELLING_RADIANCE412", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE412", + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:02.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal from dissolved oxygen sensor. Local_Attributes:{long_name:Count reported by oxygen sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::COUNT_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Count reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "COUNT_DOXY", + "skos:notation": "SDN:R03::COUNT_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYOOPCT/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::COUNT_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at 490 nm wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at 490 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 490 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE490", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw beam attenuation signal from transmissometer sensor at 660 nm wavelength. Local_Attributes:{long_name:Beam attenuation from transmissometer sensor at 660 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "skos:prefLabel": { + "@language": "en", + "@value": "Beam attenuation from transmissometer sensor at 660 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "skos:notation": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NCNTATT1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw ultra-violet (UV) flux signal in darkness from nitrate sensor. Average of all 256 dark counts, reported by the SUNA sensor. Local_Attributes:{long_name:Intensity of ultra violet flux dark measurement from nitrate sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UV_INTENSITY_DARK_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Intensity of ultra violet flux dark measurement from nitrate sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UV_INTENSITY_DARK_NITRATE", + "skos:notation": "SDN:R03::UV_INTENSITY_DARK_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/UVDAZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UV_INTENSITY_DARK_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Light-Emitting Diode (LED) flashing frequency from dissolved oxygen sensor, reported by ARO-FT optode sensor. Local_Attributes:{long_name:Number of times oxygen sensor flashing to measure oxygen; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::LED_FLASHING_COUNT_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of times oxygen sensor flashing to measure oxygen" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "LED_FLASHING_COUNT_DOXY", + "skos:notation": "SDN:R03::LED_FLASHING_COUNT_DOXY", + "pav:version": "3", + "dce:identifier": "SDN:R03::LED_FLASHING_COUNT_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:01.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw ultra-violet (UV) flux signal from nitrate sensor. Measurement in counts proportional to light intensity. Multi-spectral parameter requiring an extra N_VALUESxxx dimension in the NetCDF files; xxx is a number between 0 and 255 representing the number of wavelengths transmitted. Local_Attributes:{long_name:Intensity of ultra violet flux from nitrate sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float; extra_dim:[N_VALUES]}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UV_INTENSITY_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Intensity of ultra violet flux from nitrate sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UV_INTENSITY_NITRATE", + "skos:notation": "SDN:R03::UV_INTENSITY_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/UVINZZ01/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::UV_INTENSITY_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw fluorescence signal from coloured dissolved organic matter (CDOM) sensor, reported by ECO3 sensor. Local_Attributes:{long_name:Raw fluorescence from coloured dissolved organic matter sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FLUORESCENCE_CDOM", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw fluorescence from coloured dissolved organic matter sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "FLUORESCENCE_CDOM", + "skos:notation": "SDN:R03::FLUORESCENCE_CDOM", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/FLUOCDOM/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::FLUORESCENCE_CDOM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal at 555 nm wavelength, reported by OCR504 sensor. Local_Attributes:{long_name:Raw upwelling radiance at 555 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 555 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "RAW_UPWELLING_RADIANCE555", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE555", + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/3/" + }, + "pav:authoredOn": "2025-11-25 10:13:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/2/" + } + ], + "pav:authoredOn": "2025-11-26 10:16:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of samples in bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:03.0", + "skos:altLabel": "NB_SAMPLE", + "skos:notation": "SDN:R03::NB_SAMPLE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NUMVALES/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at 380 nm wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at 380 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 380 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE380", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at 412 nm wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at 412 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 412 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE412", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at unspecified wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at x nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal from backscattering meter at unspecified wavelength, reported by ECO3 or FLBB sensors. Local_Attributes:{long_name:Total angle specific volume from backscattering sensor at x nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BETA_BACKSCATTERING", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal at unspecified wavelength, reported by OCR504 sensor. Local_Attributes:{long_name:Raw upwelling radiance at x nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "RAW_UPWELLING_RADIANCE", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE", + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal at 443 nm wavelength, reported by OCR504 sensor. Local_Attributes:{long_name:Raw upwelling radiance at 443 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 443 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "RAW_UPWELLING_RADIANCE443", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE443", + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/3/" + }, + "pav:authoredOn": "2025-11-25 10:13:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at 443 nm wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at 443 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 443 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE443", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw ultra-violet (UV) flux signal in seawater and darkness from nitrate sensor. From light absorption on pixels at shortest wavelengths of array, reported by the SUNA sensor. Local_Attributes:{long_name:Intensity of ultra-violet flux dark sea water from nitrate sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Intensity of ultra-violet flux dark sea water from nitrate sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UV_INTENSITY_DARK_SEAWATER_NITRATE", + "skos:notation": "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/UVSDZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw fluorescence signal from chlorophyll-a fluorometer, reported by ECO3, FLNTU and FLBB sensors. Local_Attributes:{long_name:Chlorophyll-A signal from fluorescence sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FLUORESCENCE_CHLA", + "skos:prefLabel": { + "@language": "en", + "@value": "Chlorophyll-A signal from fluorescence sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "FLUORESCENCE_CHLA", + "skos:notation": "SDN:R03::FLUORESCENCE_CHLA", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/FCNTRW01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::FLUORESCENCE_CHLA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Calibration fit error of nitrate, SUNA sensro key variable in QC. Local_Attributes:{long_name:Nitrate fit error; standard_name:-; units:dimensionless; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FIT_ERROR_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Nitrate fit error" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "FIT_ERROR_NITRATE", + "skos:notation": "SDN:R03::FIT_ERROR_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NTFEZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::FIT_ERROR_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling photosynthetically available radiation (PAR) signal. Local_Attributes:{long_name:Raw downwelling photosynthetic available radiation; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling photosynthetic available radiation" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "RAW_DOWNWELLING_PAR", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_PAR", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRRXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_PAR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at 555 nm wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at 555 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 555 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE555", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw temperature signal from thermistor on dissolved oxygen sensor. Local_Attributes:{long_name:Count which is expressive of uncalibrated temperature value reported by oxygen sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_COUNT_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Count which is expressive of uncalibrated temperature value reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "TEMP_COUNT_DOXY", + "skos:notation": "SDN:R03::TEMP_COUNT_DOXY", + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_COUNT_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal at 490 nm wavelength, reported by OCR504 sensor. Local_Attributes:{long_name:Raw upwelling radiance at 490 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 490 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "RAW_UPWELLING_RADIANCE490", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE490", + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/3/" + }, + "pav:authoredOn": "2025-11-25 10:13:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal from backscattering meter at 532 nm wavelength, reported by ECO3 or FLBB sensors. Local_Attributes:{long_name:Total angle specific volume from backscattering sensor at 532 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING532", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at 532 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BETA_BACKSCATTERING532", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING532", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING532", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/3/" + } + ], + "pav:authoredOn": "2025-11-25 10:13:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw temperature signalfrom thermistor on backscattering meter and/or fluorometer, reported by FLBB sensor. Local_Attributes:{long_name:Thermistor signal from backscattering sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_CPU_CHLA", + "skos:prefLabel": { + "@language": "en", + "@value": "Thermistor signal from backscattering sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "TEMP_CPU_CHLA", + "skos:notation": "SDN:R03::TEMP_CPU_CHLA", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TCNTICPU/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::TEMP_CPU_CHLA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/KGUM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Dissolved oxygen concentration. Local_Attributes:{long_name:Dissolved oxygen; standard_name:moles_of_oxygen_per_unit_mass_in_sea_water; units:micromole/kg; valid_min:-5.f; valid_max:600.f; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Dissolved oxygen" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "DOXY", + "skos:notation": "SDN:R03::DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DOXMZZXX/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/KGUM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Nitrate concentration. Local_Attributes:{long_name:Nitrate; standard_name:moles_of_nitrate_per_unit_mass_in_sea_water; units:micromole/kg; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Nitrate" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "NITRATE", + "skos:notation": "SDN:R03::NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/MDMAP005/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/KGUM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Bisulfide concentration (umol/kg). Local_Attributes:{long_name:Bisulfide; standard_name:-; units:micromole/kg; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BISULFIDE", + "skos:prefLabel": { + "@language": "en", + "@value": "Bisulfide" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BISULFIDE", + "skos:notation": "SDN:R03::BISULFIDE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/H2SXZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BISULFIDE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UMLL/" + }, + "skos:definition": { + "@language": "en", + "@value": "Dissolved oxygen concentration uncorrected for salinity and pressure effects. Local_Attributes:{long_name:Oxygen concentration reported by the oxygen sensor; standard_name:-; units:ml/l; valid_min:0.f; valid_max:650.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MLPL_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Oxygen concentration reported by the oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "MLPL_DOXY", + "skos:notation": "SDN:R03::MLPL_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DOXYZZXX/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::MLPL_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/USTU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Turbidity of seawater. Local_Attributes:{long_name:Sea water turbidity; standard_name:sea_water_turbidity; units:ntu; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TURBIDITY", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea water turbidity" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TURBIDITY", + "skos:notation": "SDN:R03::TURBIDITY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TURBXXXX/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TURBIDITY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:13:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UMMC/" + }, + "skos:definition": { + "@language": "en", + "@value": "Chlorophyll-a concentration (mg/m^3), reported by ECO3 sensor. Local_Attributes:{long_name:Chlorophyll-A; standard_name:mass_concentration_of_chlorophyll_a_in_sea_water; units:mg/m3; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CHLA", + "skos:prefLabel": { + "@language": "en", + "@value": "Chlorophyll-A" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "CHLA", + "skos:notation": "SDN:R03::CHLA", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/CPHLPR01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::CHLA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature of the water body expressed against the International Temperature Scale 1990 (ITS-90) calibration standard. Local_Attributes:{long_name:Sea temperature in-situ ITS-90 scale; standard_name:sea_water_temperature; units:degree_Celsius; valid_min:-2.5f; valid_max:40.f; fill_value:99999.f}. Properties:{category:c; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea temperature in-situ ITS-90 scale" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "TEMP", + "skos:notation": "SDN:R03::TEMP", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TEMPST01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing individual measured parameters or phenomena, used to mark up sets of data in Argo netCDF arrays. Argo netCDF variables PARAMETER, STATION_PARAMETERS, HISTORY_PARAMETER and TRAJECTORY_PARAMETERS are populated by R03 altLabel. R03 altLabel is also used to name netCDF variables. Detailed information (incl. about Local_Attributes and Properties) is in the user manual (https://dx.doi.org/10.13155/29825), in the Reference Table 3 section.", + "dc:title": "Argo parameter codes", + "skos:prefLabel": "Argo parameter codes", + "owl:versionInfo": "13", + "dc:date": "2026-01-16 02:00:00.0", + "skos:altLabel": "PARAMETER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PARAMETER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R05.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R05.jsonld new file mode 100644 index 0000000..c18ce42 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R05.jsonld @@ -0,0 +1,576 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/2/" + }, + "dce:identifier": "SDN:R05::G", + "pav:version": "2", + "skos:notation": "SDN:R05::G", + "skos:altLabel": "G", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GPS positioning accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::G", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Global Positioning System (GPS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/2/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/2/1/" + }, + "dce:identifier": "SDN:R05::2", + "pav:version": "1", + "skos:notation": "SDN:R05::2", + "skos:altLabel": "2", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy <500m radius" + }, + "dc:identifier": "SDN:R05::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of less than 500m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/Z/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/Z/1/" + }, + "dce:identifier": "SDN:R05::Z", + "pav:version": "1", + "skos:notation": "SDN:R05::Z", + "skos:altLabel": "Z", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos invalid location" + }, + "dc:identifier": "SDN:R05::Z", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The location accuracy radius from Argos positioning system cannot be estimated due to invalid location measurements." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/3/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/3/1/" + }, + "dce:identifier": "SDN:R05::3", + "pav:version": "1", + "skos:notation": "SDN:R05::3", + "skos:altLabel": "3", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy <250m radius" + }, + "dc:identifier": "SDN:R05::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of less than 250m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/1/" + }, + "dce:identifier": "SDN:R05::1", + "pav:version": "1", + "skos:notation": "SDN:R05::1", + "skos:altLabel": "1", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy <1500m radius" + }, + "dc:identifier": "SDN:R05::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of less than 1500m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/2/" + }, + "dce:identifier": "SDN:R05::H", + "pav:version": "2", + "skos:notation": "SDN:R05::H", + "skos:altLabel": "H", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GNSS accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::H", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Global Navigation Satellite System (GNSS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/2/" + }, + "dce:identifier": "SDN:R05::E", + "pav:version": "2", + "skos:notation": "SDN:R05::E", + "skos:altLabel": "E", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GLONASS accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::E", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from GLObal NAvigation Satellite System (GLONASS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/R/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/R/1/" + }, + "dce:identifier": "SDN:R05::R", + "pav:version": "1", + "skos:notation": "SDN:R05::R", + "skos:altLabel": "R", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RAFOS location accuracy" + }, + "dc:identifier": "SDN:R05::R", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from RAFOS positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/U/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/U/1/" + }, + "dce:identifier": "SDN:R05::U", + "pav:version": "1", + "skos:notation": "SDN:R05::U", + "skos:altLabel": "U", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated location accuracy" + }, + "dc:identifier": "SDN:R05::U", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from manual computation as not received by the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/1/" + }, + "dce:identifier": "SDN:R05::B", + "pav:version": "1", + "skos:notation": "SDN:R05::B", + "skos:altLabel": "B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos no location accuracy estimation (one or two messages received)" + }, + "dc:identifier": "SDN:R05::B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The location accuracy radius from Argos positioning system cannot be estimated as only one or two messages were received." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/1/" + }, + "dce:identifier": "SDN:R05::0", + "pav:version": "1", + "skos:notation": "SDN:R05::0", + "skos:altLabel": "0", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy >1500m radius" + }, + "dc:identifier": "SDN:R05::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of over 1500m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/2/" + }, + "dce:identifier": "SDN:R05::I", + "pav:version": "2", + "skos:notation": "SDN:R05::I", + "skos:altLabel": "I", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Iridium accuracy (not better than 5 km)" + }, + "dc:identifier": "SDN:R05::I", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Iridium positioning system of less than 5000m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/2/" + }, + "dce:identifier": "SDN:R05::D", + "pav:version": "2", + "skos:notation": "SDN:R05::D", + "skos:altLabel": "D", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Beidou accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::D", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from BeiDou Navigation Satellite System (BDS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/1/" + }, + "dce:identifier": "SDN:R05::A", + "pav:version": "1", + "skos:notation": "SDN:R05::A", + "skos:altLabel": "A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos no location accuracy estimation (three messages received)" + }, + "dc:identifier": "SDN:R05::A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The location accuracy radius from Argos positioning system cannot be estimated as only three messages were received." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/2/" + }, + "dce:identifier": "SDN:R05::F", + "pav:version": "2", + "skos:notation": "SDN:R05::F", + "skos:altLabel": "F", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GALILEO accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::F", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Galileo positioning system of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/Z/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/R/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/U/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Accuracy in latitude and longitude measurements received from the positioning system, grouped by location accuracy classes.", + "dc:title": "Argo position accuracy", + "skos:prefLabel": "Argo position accuracy", + "owl:versionInfo": "1", + "dc:date": "2024-09-13 03:00:00.0", + "skos:altLabel": "POSITION_ACCURACY", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "POSITION_ACCURACY", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R06.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R06.jsonld new file mode 100644 index 0000000..aaead39 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R06.jsonld @@ -0,0 +1,320 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3B/1/" + }, + "dce:identifier": "SDN:R06::3B", + "pav:version": "1", + "skos:notation": "SDN:R06::3B", + "skos:altLabel": "3B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 3, class B processing stage" + }, + "dc:identifier": "SDN:R06::3B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have been processed with assumptions about the scales of variability or thermodynamic relationships; the data are normally reduced to regular space, time intervals with enhanced signal to noise (Level 3). Moreover, the data have been scrutinized and evaluated against a defined and documented set of measures; the process is often automated, and the measures are published and widely available (Class B)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2C/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2C/1/" + }, + "dce:identifier": "SDN:R06::2C", + "pav:version": "1", + "skos:notation": "SDN:R06::2C", + "skos:altLabel": "2C", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class C processing stage" + }, + "dc:identifier": "SDN:R06::2C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized fully including intra-record and intra-dataset comparison and consistency checks; scientists have been involved in the evaluation, and brought latest knowledge to bear; the procedures are published, widely available and widely accepted (Class C)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/1A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/1A/1/" + }, + "dce:identifier": "SDN:R06::1A", + "pav:version": "1", + "skos:notation": "SDN:R06::1A", + "skos:altLabel": "1A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 1, class A processing stage" + }, + "dc:identifier": "SDN:R06::1A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have been converted to values independent of detailed instrument knowledge; automated calibrations may have been done; data may not have full geospatial and temporal referencing, but have sufficient information to uniquely reference the data to the point of measurement (Level 1). Moreover, no scrutiny, value judgement or intercomparisons were performed on the data; the records are derived directly from the input with no filtering or sub-sampling (Class A)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3C/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3C/1/" + }, + "dce:identifier": "SDN:R06::3C", + "pav:version": "1", + "skos:notation": "SDN:R06::3C", + "skos:altLabel": "3C", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 3, class C processing stage" + }, + "dc:identifier": "SDN:R06::3C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have been processed with assumptions about the scales of variability or thermodynamic relationships; the data are normally reduced to regular space, time intervals with enhanced signal to noise (Level 3). Moreover, the data have been scrutinized fully including intra-record and intra-dataset comparison and consistency checks; scientists have been involved in the evaluation, and brought latest knowledge to bear; the procedures are published, widely available and widely accepted (Class C)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2CP/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2CP/1/" + }, + "dce:identifier": "SDN:R06::2CP", + "pav:version": "1", + "skos:notation": "SDN:R06::2CP", + "skos:altLabel": "2C+", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class C, subclass + processing stage" + }, + "dc:identifier": "SDN:R06::2CP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized fully including intra-record and intra-dataset comparison and consistency checks; scientists have been involved in the evaluation, and brought latest knowledge to bear; the procedures are published, widely available and widely accepted (Class C). In addition, the data are fully quality controlled and peer-reviewed, and are widely accepted as valid; documentation is complete and widely available." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/0A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/0A/1/" + }, + "dce:identifier": "SDN:R06::0A", + "pav:version": "1", + "skos:notation": "SDN:R06::0A", + "skos:altLabel": "0A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 0, class A processing stage" + }, + "dc:identifier": "SDN:R06::0A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data are the raw output from instruments, without calibration, and not necessarily converted to engineering units (Level 0). Moreover, no scrutiny, value judgement or intercomparisons were performed on the data; the records are derived directly from the input with no filtering or sub-sampling (Class A)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2BP/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2BP/1/" + }, + "dce:identifier": "SDN:R06::2BP", + "pav:version": "1", + "skos:notation": "SDN:R06::2BP", + "skos:altLabel": "2B+", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class B, subclass + processing stage" + }, + "dc:identifier": "SDN:R06::2BP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized and evaluated against a defined and documented set of measures; the process is often automated, and the measures are published and widely available (Class B). In addition, the measures have been tested on independent data sets for completeness and robustness, and are widely accepted (Subclass +)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2B/1/" + }, + "dce:identifier": "SDN:R06::2B", + "pav:version": "1", + "skos:notation": "SDN:R06::2B", + "skos:altLabel": "2B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class B processing stage" + }, + "dc:identifier": "SDN:R06::2B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized and evaluated against a defined and documented set of measures; the process is often automated, and the measures are published and widely available (Class B)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/1A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/0A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2BP/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Processing stage of the data based on the concatenation of processing level and class indicators. Argo netCDF variable DATA_STATE_INDICATOR is populated by R06 altLabel.", + "dc:title": "Argo data state indicators", + "skos:prefLabel": "Argo data state indicators", + "owl:versionInfo": "0", + "dc:date": "2020-04-04 15:45:13.0", + "skos:altLabel": "DATA_STATE_INDICATOR", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "DATA_STATE_INDICATOR", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R08.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R08.jsonld new file mode 100644 index 0000000..6bebf73 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R08.jsonld @@ -0,0 +1,2282 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, SBE float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::890", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, SBE" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "890", + "skos:notation": "SDN:R08::890", + "pav:version": "3", + "dce:identifier": "SDN:R08::890", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, RBR float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::891", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, RBR" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "891", + "skos:notation": "SDN:R08::891", + "pav:version": "3", + "dce:identifier": "SDN:R08::891", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::841", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float with SBE conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "841", + "skos:notation": "SDN:R08::841", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::841", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/1/" + }, + "dce:identifier": "SDN:R08::838", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/" + }, + "skos:notation": "SDN:R08::838", + "skos:altLabel": "838", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::838", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR-D deep profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/1/" + }, + "dce:identifier": "SDN:R08::831", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/" + }, + "skos:notation": "SDN:R08::831", + "skos:altLabel": "831", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PALACE float" + }, + "dc:identifier": "SDN:R08::831", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PALACE profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, RBR float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::889", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, RBR" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "889", + "skos:notation": "SDN:R08::889", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::889", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "ALTO profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::875", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO float with RBR conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "875", + "skos:notation": "SDN:R08::875", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::875", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "APEX profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::877", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX float with RBR conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "877", + "skos:notation": "SDN:R08::877", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::877", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "HM4000 float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::881", + "skos:prefLabel": { + "@language": "en", + "@value": "HM4000" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "881", + "skos:notation": "SDN:R08::881", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::881", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::851", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO float with SBE conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "851", + "skos:notation": "SDN:R08::851", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::851", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/1/" + }, + "dce:identifier": "SDN:R08::847", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "skos:notation": "SDN:R08::847", + "skos:altLabel": "847", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research float with FSI conductivity sensor" + }, + "dc:identifier": "SDN:R08::847", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/1/" + }, + "dce:identifier": "SDN:R08::848", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + }, + "skos:notation": "SDN:R08::848", + "skos:altLabel": "848", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX-EM float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::848", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "APEX-EM profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR IV" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::835", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR IV" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:39:49.0", + "skos:altLabel": "835", + "skos:notation": "SDN:R08::835", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::835", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/2/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/1/" + }, + "dce:identifier": "SDN:R08::837", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/" + }, + "skos:notation": "SDN:R08::837", + "skos:altLabel": "837", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR-C float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::837", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR-C profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/870/", + "pav:authoredOn": "2024-10-24 14:51:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/870/1/" + }, + "dce:identifier": "SDN:R08::870", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/" + }, + "skos:notation": "SDN:R08::870", + "skos:altLabel": "870", + "dc:date": "2024-10-24 14:51:27.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "HM2000" + }, + "dc:identifier": "SDN:R08::870", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "HM2000 profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/1/" + }, + "dce:identifier": "SDN:R08::859", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + "skos:notation": "SDN:R08::859", + "skos:altLabel": "859", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float with no conductivity" + }, + "dc:identifier": "SDN:R08::859", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO profiling float with no conductivity" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/1/" + }, + "dce:identifier": "SDN:R08::861", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + "skos:notation": "SDN:R08::861", + "skos:altLabel": "861", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float with FSI conductivity sensor" + }, + "dc:identifier": "SDN:R08::861", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/1/" + }, + "dce:identifier": "SDN:R08::858", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::858", + "skos:altLabel": "858", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with TSK conductivity sensor" + }, + "dc:identifier": "SDN:R08::858", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with Tsurumi-Seiki Co., Ltd (TSK) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS4 generation with dual board" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::836", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR III" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:39:49.0", + "skos:altLabel": "836", + "skos:notation": "SDN:R08::836", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::836", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/2/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/1/" + }, + "dce:identifier": "SDN:R08::843", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/" + }, + "skos:notation": "SDN:R08::843", + "skos:altLabel": "843", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "POPS ice platform using PROVOR float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::843", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Polar Ocean Profiling System (POPS) ice platform using PROVOR profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/873/", + "pav:authoredOn": "2024-10-24 14:51:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/873/1/" + }, + "dce:identifier": "SDN:R08::873", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + "skos:notation": "SDN:R08::873", + "skos:altLabel": "873", + "dc:date": "2024-10-24 14:51:27.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO" + }, + "dc:identifier": "SDN:R08::873", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ALTO profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "ARVOR profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::878", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR float with RBR conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "878", + "skos:notation": "SDN:R08::878", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::878", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC, RBR float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::885", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC, RBR" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "885", + "skos:notation": "SDN:R08::885", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::885", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "APEX_D deep profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::883", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX_D deep float with RBR conductivity sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "883", + "skos:notation": "SDN:R08::883", + "pav:version": "3", + "dce:identifier": "SDN:R08::883", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/1/" + } + ], + "pav:authoredOn": "2024-11-11 09:32:23.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR V with Seabird CTD sensor (code not used in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::834", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR V SBE" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "834", + "skos:notation": "SDN:R08::834", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + } + ], + "pav:version": "3", + "dce:identifier": "SDN:R08::834", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/1/" + }, + "dce:identifier": "SDN:R08::863", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/" + }, + "skos:notation": "SDN:R08::863", + "skos:altLabel": "863", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Navis-A float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::863", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Navis-A profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/1/" + }, + "dce:identifier": "SDN:R08::844", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + "skos:notation": "SDN:R08::844", + "skos:altLabel": "844", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::844", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO-II profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::879", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO-II with RBR conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "879", + "skos:notation": "SDN:R08::879", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::879", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "ALTO profiling float with Sea-Bird Scientific (SBE) conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::876", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO float with SBE conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "876", + "skos:notation": "SDN:R08::876", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::876", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/2/" + } + ], + "pav:authoredOn": "2024-11-11 09:32:24.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC_MRV, SBE float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::886", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC_MRV, SBE" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "886", + "skos:notation": "SDN:R08::886", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + } + ], + "pav:version": "3", + "dce:identifier": "SDN:R08::886", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/1/" + }, + "dce:identifier": "SDN:R08::853", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + }, + "skos:notation": "SDN:R08::853", + "skos:altLabel": "853", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO-II float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::853", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO-II profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/1/" + }, + "dce:identifier": "SDN:R08::864", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/" + }, + "skos:notation": "SDN:R08::864", + "skos:altLabel": "864", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::864", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA-D profiling deep float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/869/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/869/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "NAVIS_EBR profiling float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::869", + "skos:prefLabel": { + "@language": "en", + "@value": "NAVIS_EBR" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "869", + "skos:notation": "SDN:R08::869", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::869", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/869/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::842", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float with FSI conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "842", + "skos:notation": "SDN:R08::842", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::842", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/1/" + }, + "dce:identifier": "SDN:R08::845", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "skos:notation": "SDN:R08::845", + "skos:altLabel": "845", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research float with no conductivity sensor" + }, + "dc:identifier": "SDN:R08::845", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research profiling float with no conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/874/", + "pav:authoredOn": "2024-10-24 14:51:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/874/1/" + }, + "dce:identifier": "SDN:R08::874", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/" + }, + "skos:notation": "SDN:R08::874", + "skos:altLabel": "874", + "dc:date": "2024-10-24 14:51:27.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_D_MRV" + }, + "dc:identifier": "SDN:R08::874", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_D_MRV profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/871/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/871/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Copex float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::871", + "skos:prefLabel": { + "@language": "en", + "@value": "COPEX" + }, + "owl:versionInfo": "2", + "dc:date": "2024-12-16 16:23:22.0", + "skos:altLabel": "871", + "skos:notation": "SDN:R08::871", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::871", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/871/2/" + }, + "pav:authoredOn": "2024-12-16 16:23:22.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::852", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO float with FSI conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "852", + "skos:notation": "SDN:R08::852", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::852", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/1/" + }, + "dce:identifier": "SDN:R08::856", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::856", + "skos:altLabel": "856", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::856", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC, SBE float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::884", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC, SBE" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "884", + "skos:notation": "SDN:R08::884", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::884", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/2/" + } + ], + "pav:authoredOn": "2024-11-11 09:32:24.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC_MRV, RBR float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::887", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC_MRV, RBR" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "887", + "skos:notation": "SDN:R08::887", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + } + ], + "pav:version": "3", + "dce:identifier": "SDN:R08::887", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/1/" + }, + "dce:identifier": "SDN:R08::862", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/" + }, + "skos:notation": "SDN:R08::862", + "skos:altLabel": "862", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::862", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO-D profiling deep float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/1/" + }, + "dce:identifier": "SDN:R08::854", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + "skos:notation": "SDN:R08::854", + "skos:altLabel": "854", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "S2A float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::854", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "S2A profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR profiling float with no conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::840", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float with no conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "840", + "skos:notation": "SDN:R08::840", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::840", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "S2A profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::880", + "skos:prefLabel": { + "@language": "en", + "@value": "S2A float with RBR conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "880", + "skos:notation": "SDN:R08::880", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::880", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/1/" + }, + "dce:identifier": "SDN:R08::865", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/" + }, + "skos:notation": "SDN:R08::865", + "skos:altLabel": "865", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NOVA float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::865", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NOVA profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/", + "pav:authoredOn": "2024-04-19 16:28:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/1/" + }, + "dce:identifier": "SDN:R08::872", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/" + }, + "skos:notation": "SDN:R08::872", + "skos:altLabel": "872", + "dc:date": "2024-04-19 16:28:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "S2X" + }, + "dc:identifier": "SDN:R08::872", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "S2X profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/1/" + }, + "dce:identifier": "SDN:R08::846", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "skos:notation": "SDN:R08::846", + "skos:altLabel": "846", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::846", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO profiling float with no conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::850", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO float with no conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "850", + "skos:notation": "SDN:R08::850", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::850", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/1/" + }, + "dce:identifier": "SDN:R08::839", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + }, + "skos:notation": "SDN:R08::839", + "skos:altLabel": "839", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR-II float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::839", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR-II profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "XUANWU float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::882", + "skos:prefLabel": { + "@language": "en", + "@value": "XUANWU" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "882", + "skos:notation": "SDN:R08::882", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::882", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/1/" + }, + "dce:identifier": "SDN:R08::857", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::857", + "skos:altLabel": "857", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with FSI conductivity sensor" + }, + "dc:identifier": "SDN:R08::857", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/1/" + }, + "dce:identifier": "SDN:R08::860", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + "skos:notation": "SDN:R08::860", + "skos:altLabel": "860", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::860", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/1/" + }, + "dce:identifier": "SDN:R08::849", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/" + }, + "skos:notation": "SDN:R08::849", + "skos:altLabel": "849", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::849", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "APEX-D profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, SBE float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::888", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, SBE" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "888", + "skos:notation": "SDN:R08::888", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::888", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/1/" + }, + "dce:identifier": "SDN:R08::855", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::855", + "skos:altLabel": "855", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with no conductivity sensor" + }, + "dc:identifier": "SDN:R08::855", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with no conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/870/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/873/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/869/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/874/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/871/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Subset of instrument type codes from the World Meteorological Organization (WMO) Common Code Table C-3 (CCT C-3) 1770, named 'Instrument make and type for water temperature profile measurement with fall rate equation coefficients' and available here: https://library.wmo.int/doc_num.php?explnum_id=11283. Argo netCDF variable WMO_INST_TYPE is populated by R08 altLabel.", + "dc:title": "Argo instrument types", + "skos:prefLabel": "Argo instrument types", + "owl:versionInfo": "10", + "dc:date": "2024-12-17 02:00:00.0", + "skos:altLabel": "ARGO_WMO_INST_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "ARGO_WMO_INST_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R09.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R09.jsonld new file mode 100644 index 0000000..b3d58d9 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R09.jsonld @@ -0,0 +1,354 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GALILEO/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GALILEO/1/" + }, + "dce:identifier": "SDN:R09::GALILEO", + "pav:version": "1", + "skos:notation": "SDN:R09::GALILEO", + "skos:altLabel": "GALILEO", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Galileo navigation satellite system" + }, + "dc:identifier": "SDN:R09::GALILEO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Galileo navigation satellite system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/BEIDOU/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/BEIDOU/1/" + }, + "dce:identifier": "SDN:R09::BEIDOU", + "pav:version": "1", + "skos:notation": "SDN:R09::BEIDOU", + "skos:altLabel": "BEIDOU", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Beidou navigation satellite system" + }, + "dc:identifier": "SDN:R09::BEIDOU", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Beidou navigation satellite system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GLONASS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GLONASS/1/" + }, + "dce:identifier": "SDN:R09::GLONASS", + "pav:version": "1", + "skos:notation": "SDN:R09::GLONASS", + "skos:altLabel": "GLONASS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "GLONASS navigation satellite system" + }, + "dc:identifier": "SDN:R09::GLONASS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "GLONASS navigation satellite system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/NONE/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/NONE/1/" + }, + "dce:identifier": "SDN:R09::NONE", + "pav:version": "1", + "skos:notation": "SDN:R09::NONE", + "skos:altLabel": "NONE", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "More than one system used or none available" + }, + "dc:identifier": "SDN:R09::NONE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For profile file only: if an estimated position is based on two or more positioning systems, or if the estimation does not rely on information from positioning systems." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/IRIDIUM/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/IRIDIUM/1/" + }, + "dce:identifier": "SDN:R09::IRIDIUM", + "pav:version": "1", + "skos:notation": "SDN:R09::IRIDIUM", + "skos:altLabel": "IRIDIUM", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Iridium positioning system" + }, + "dc:identifier": "SDN:R09::IRIDIUM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Iridium positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/RAFOS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/RAFOS/1/" + }, + "dce:identifier": "SDN:R09::RAFOS", + "pav:version": "1", + "skos:notation": "SDN:R09::RAFOS", + "skos:altLabel": "RAFOS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RAFOS positioning system" + }, + "dc:identifier": "SDN:R09::RAFOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "RAFOS positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GNSS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GNSS/1/" + }, + "dce:identifier": "SDN:R09::GNSS", + "pav:version": "1", + "skos:notation": "SDN:R09::GNSS", + "skos:altLabel": "GNSS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Global Navigation Satellite System" + }, + "dc:identifier": "SDN:R09::GNSS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Global Navigation Satellite System" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/ARGOS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/ARGOS/1/" + }, + "dce:identifier": "SDN:R09::ARGOS", + "pav:version": "1", + "skos:notation": "SDN:R09::ARGOS", + "skos:altLabel": "ARGOS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos positioning system" + }, + "dc:identifier": "SDN:R09::ARGOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argos positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GPS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GPS/1/" + }, + "dce:identifier": "SDN:R09::GPS", + "pav:version": "1", + "skos:notation": "SDN:R09::GPS", + "skos:altLabel": "GPS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "GPS positioning system" + }, + "dc:identifier": "SDN:R09::GPS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "GPS positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GALILEO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/BEIDOU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GLONASS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/NONE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/IRIDIUM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/RAFOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GNSS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GPS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/ARGOS/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float location measuring systems. Argo netCDF variable POSITIONING_SYSTEM is populated by R09 altLabel.", + "dc:title": "Argo positioning system", + "skos:prefLabel": "Argo positioning system", + "owl:versionInfo": "1", + "dc:date": "2020-04-08 03:00:04.0", + "skos:altLabel": "POSITIONING_SYSTEM", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "POSITIONING_SYSTEM", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R10.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R10.jsonld new file mode 100644 index 0000000..b51c2a8 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R10.jsonld @@ -0,0 +1,187 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/BEIDOU/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/BEIDOU/1/" + }, + "pav:authoredOn": "2026-02-25 09:10:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/BEIDOU/2/" + }, + "dce:identifier": "SDN:R10::BEIDOU", + "pav:version": "2", + "skos:notation": "SDN:R10::BEIDOU", + "skos:altLabel": "BEIDOU", + "dc:date": "2026-02-25 09:10:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Beidou transmission system" + }, + "dc:identifier": "SDN:R10::BEIDOU", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Beidou transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ARGOS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ARGOS/1/" + }, + "dce:identifier": "SDN:R10::ARGOS", + "pav:version": "1", + "skos:notation": "SDN:R10::ARGOS", + "skos:altLabel": "ARGOS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos transmission system" + }, + "dc:identifier": "SDN:R10::ARGOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argos transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ORBCOMM/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ORBCOMM/1/" + }, + "dce:identifier": "SDN:R10::ORBCOMM", + "pav:version": "1", + "skos:notation": "SDN:R10::ORBCOMM", + "skos:altLabel": "ORBCOMM", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Orbcomm transmission system" + }, + "dc:identifier": "SDN:R10::ORBCOMM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Orbcomm transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/IRIDIUM/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/IRIDIUM/1/" + }, + "dce:identifier": "SDN:R10::IRIDIUM", + "pav:version": "1", + "skos:notation": "SDN:R10::IRIDIUM", + "skos:altLabel": "IRIDIUM", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Iridium transmission system" + }, + "dc:identifier": "SDN:R10::IRIDIUM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Iridium transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/BEIDOU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ARGOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/IRIDIUM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ORBCOMM/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of telecommunication systems. Argo netCDF variable TRANS_SYSTEM is populated by R10 altLabel.", + "dc:title": "Argo transmission systems", + "skos:prefLabel": "Argo transmission systems", + "owl:versionInfo": "3", + "dc:date": "2026-02-26 02:00:01.0", + "skos:altLabel": "TRANS_SYSTEM", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "TRANS_SYSTEM", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R14.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R14.jsonld new file mode 100644 index 0000000..476a05d --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R14.jsonld @@ -0,0 +1,24208 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000506/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000506/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000506/2/" + }, + "dce:identifier": "SDN:R14::T000506", + "pav:version": "2", + "skos:notation": "SDN:R14::T000506", + "skos:altLabel": "506", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatterySBEPump_mA" + }, + "dc:identifier": "SDN:R14::T000506", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current when CTD is active. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000055/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000055/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000055/2/" + }, + "dce:identifier": "SDN:R14::T000055", + "pav:version": "2", + "skos:notation": "SDN:R14::T000055", + "skos:altLabel": "55", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_StartDescentProfile_hours" + }, + "dc:identifier": "SDN:R14::T000055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when descent profile starts. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_DESCENT_START and JULD with MC=100 assuming descending profile starts when float leaves the surface otherwise choose the appropriate timing variable. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000360/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000360/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000360/2/" + }, + "dce:identifier": "SDN:R14::T000360", + "pav:version": "2", + "skos:notation": "SDN:R14::T000360", + "skos:altLabel": "360", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonMax_COUNT" + }, + "dc:identifier": "SDN:R14::T000360", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Reported maximum piston position. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900018/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900018/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900018/2/" + }, + "dce:identifier": "SDN:R14::T900018", + "pav:version": "2", + "skos:notation": "SDN:R14::T900018", + "skos:altLabel": "900018", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MaximumDescentToPark_dbar" + }, + "dc:identifier": "SDN:R14::T900018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum recorded pressure during descent, before stabilisation at park pressure. MC minus 2. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000155/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000155/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000155/2/" + }, + "dce:identifier": "SDN:R14::T000155", + "pav:version": "2", + "skos:notation": "SDN:R14::T000155", + "skos:altLabel": "155", + "dc:date": "2025-12-11 11:05:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClassZ_COUNT" + }, + "dc:identifier": "SDN:R14::T000155", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class Z. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000215/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000215/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000215/2/" + }, + "dce:identifier": "SDN:R14::T000215", + "pav:version": "2", + "skos:notation": "SDN:R14::T000215", + "skos:altLabel": "215", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000215", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000492/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000492/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000492/2/" + }, + "dce:identifier": "SDN:R14::T000492", + "pav:version": "2", + "skos:notation": "SDN:R14::T000492", + "skos:altLabel": "492", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryFlntuParkEnd_mA" + }, + "dc:identifier": "SDN:R14::T000492", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current measured when Flntu sampled at end of park. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000231/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000231/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000231/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile optique measurements - Internal counter - Profile 2. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000231", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileMeasurementsProfile2_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "231", + "skos:notation": "SDN:R14::T000231", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000231", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000231/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500271/2/" + }, + "dce:identifier": "SDN:R14::T500271", + "pav:version": "2", + "skos:notation": "SDN:R14::T500271", + "skos:altLabel": "271.5", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterPowerCycled_bit" + }, + "dc:identifier": "SDN:R14::T500271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the Argos transmitter power has cycled. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000150/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000150/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000150/2/" + }, + "dce:identifier": "SDN:R14::T000150", + "pav:version": "2", + "skos:notation": "SDN:R14::T000150", + "skos:altLabel": "150", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClass2_COUNT" + }, + "dc:identifier": "SDN:R14::T000150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class 2 - accuracy better than 500m radius. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000457/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000457/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000457/2/" + }, + "dce:identifier": "SDN:R14::T000457", + "pav:version": "2", + "skos:notation": "SDN:R14::T000457", + "skos:altLabel": "457", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_FromBladdersEmptyToStartOfMission_seconds" + }, + "dc:identifier": "SDN:R14::T000457", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time from bladders empty to the start of mission. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900031/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900031/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900031/2/" + }, + "dce:identifier": "SDN:R14::T900031", + "pav:version": "2", + "skos:notation": "SDN:R14::T900031", + "skos:altLabel": "900031", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_LastAscentPumpedRawSample_degC" + }, + "dc:identifier": "SDN:R14::T900031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Last (shallowest) pumped raw temperature sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped). MC599. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000204/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000204/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000204/2/" + }, + "dce:identifier": "SDN:R14::T000204", + "pav:version": "2", + "skos:notation": "SDN:R14::T000204", + "skos:altLabel": "204", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FloatFramesCompleteOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000204", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Provor frames complete on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000441/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000441/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000441/2/" + }, + "dce:identifier": "SDN:R14::T000441", + "pav:version": "2", + "skos:notation": "SDN:R14::T000441", + "skos:altLabel": "441", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "STATUS_MiscellaneousOperations_hex" + }, + "dc:identifier": "SDN:R14::T000441", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "STATUS_MiscellaneousOperations. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000541/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000541/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000541/2/" + }, + "dce:identifier": "SDN:R14::T000541", + "pav:version": "2", + "skos:notation": "SDN:R14::T000541", + "skos:altLabel": "541", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatterySBEParkEnd_volts" + }, + "dc:identifier": "SDN:R14::T000541", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured when the SBE41 sampled after the end of park phase. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000425/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000425/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000425/2/" + }, + "dce:identifier": "SDN:R14::T000425", + "pav:version": "2", + "skos:notation": "SDN:R14::T000425", + "skos:altLabel": "425", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumOilBladderFull_inHg" + }, + "dc:identifier": "SDN:R14::T000425", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal vacuum when all oil is inside the oil bladder. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100036/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100036/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100036/2/" + }, + "dce:identifier": "SDN:R14::T100036", + "pav:version": "2", + "skos:notation": "SDN:R14::T100036", + "skos:altLabel": "36.1", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetCorrectedNotResetNegative_1mBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T100036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent but data is corrected on board the float. This is a cumulative NEGATIVE offset (real offset multiplied by -1) but no further correction required. Autocorrected. The CTS5 provides the Poffset with a 1 mBar resolution. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100260/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100260/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100260/2/" + }, + "dce:identifier": "SDN:R14::T100260", + "pav:version": "2", + "skos:notation": "SDN:R14::T100260", + "skos:altLabel": "260.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileCrossCalibrationSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T100260", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Near Surface Temperature monitoring cross calibration samples (pumped PTS, non-pumped PT). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000489/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000489/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000489/2/" + }, + "dce:identifier": "SDN:R14::T000489", + "pav:version": "2", + "skos:notation": "SDN:R14::T000489", + "skos:altLabel": "489", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryAirPumpOn_mA" + }, + "dc:identifier": "SDN:R14::T000489", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery Current during inflation of sleeve bladder. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000220/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000220/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000220/2/" + }, + "dce:identifier": "SDN:R14::T000220", + "pav:version": "2", + "skos:notation": "SDN:R14::T000220", + "skos:altLabel": "220", + "dc:date": "2025-12-11 11:04:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesReceivedCrcOkOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000220", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames received with crc ok on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000554/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000554/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000554/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium messages used to transmit data collected during the ascent from the profile depth to the surface. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000554", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentIridiumMessages_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "554", + "skos:notation": "SDN:R14::T000554", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000554", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000554/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000268/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000268/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000268/2/" + }, + "dce:identifier": "SDN:R14::T000268", + "pav:version": "2", + "skos:notation": "SDN:R14::T000268", + "skos:altLabel": "268", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_VacuumPressure_bit" + }, + "dc:identifier": "SDN:R14::T000268", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the status of the pressure of the vacuum. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000134/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000134/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000134/2/" + }, + "dce:identifier": "SDN:R14::T000134", + "pav:version": "2", + "skos:notation": "SDN:R14::T000134", + "skos:altLabel": "134", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples1stBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000134", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100546/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100546/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100546/2/" + }, + "dce:identifier": "SDN:R14::T100546", + "pav:version": "2", + "skos:notation": "SDN:R14::T100546", + "skos:altLabel": "546.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_AcrossInsulation_mV" + }, + "dc:identifier": "SDN:R14::T100546", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Insulation voltage measured between 2 sub-parts of the float. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300488/2/" + }, + "dce:identifier": "SDN:R14::T300488", + "pav:version": "2", + "skos:notation": "SDN:R14::T300488", + "skos:altLabel": "488.3", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredToAscentWhenGrounded_cm^3" + }, + "dc:identifier": "SDN:R14::T300488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume, transferred to the external bladder, needed to leave the sea bottom when grounded. Reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000047/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000047/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000047/2/" + }, + "dce:identifier": "SDN:R14::T000047", + "pav:version": "2", + "skos:notation": "SDN:R14::T000047", + "skos:altLabel": "47", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SensorAutoAdjustment_dbar" + }, + "dc:identifier": "SDN:R14::T000047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total Surface pressure offset applied by the float since deployment. This is a cumulative offset (with limitations) and cannot be used for pressure correction. This is a surface pressure name for reference only. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000126/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000126/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000126/2/" + }, + "dce:identifier": "SDN:R14::T000126", + "pav:version": "2", + "skos:notation": "SDN:R14::T000126", + "skos:altLabel": "126", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT" + }, + "dc:identifier": "SDN:R14::T000126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of solenoid valve actions at the surface until the crossing of the GAP threshold. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200068/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200068/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200068/2/" + }, + "dce:identifier": "SDN:R14::T200068", + "pav:version": "2", + "skos:notation": "SDN:R14::T200068", + "skos:altLabel": "68.2", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TransmissionEndTime_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T200068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when transmission is ended. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. TRANSMISSION_END_TIME and JULD with MC=800. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000163/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000163/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000163/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Shallow absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000163", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesShallowAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "163", + "skos:notation": "SDN:R14::T000163", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000163", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000163/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000061/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000061/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000061/2/" + }, + "dce:identifier": "SDN:R14::T000061", + "pav:version": "2", + "skos:notation": "SDN:R14::T000061", + "skos:altLabel": "61", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FloatTimeCorrection_MMSS" + }, + "dc:identifier": "SDN:R14::T000061", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float internal clock time correction. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM, days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000228/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000228/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000228/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct optique frames emitted on ascending profile - Profile 2. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000228", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnAscendingProfile2_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "228", + "skos:notation": "SDN:R14::T000228", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000228", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000228/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000110/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000110/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000110/2/" + }, + "dce:identifier": "SDN:R14::T000110", + "pav:version": "2", + "skos:notation": "SDN:R14::T000110", + "skos:altLabel": "110", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_BinsWithData_COUNT" + }, + "dc:identifier": "SDN:R14::T000110", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pressure bins with data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900002/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900002/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900002/2/" + }, + "dce:identifier": "SDN:R14::T900002", + "pav:version": "2", + "skos:notation": "SDN:R14::T900002", + "skos:altLabel": "900002", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_2ndSettlingBeforePark_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T900002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Time when float was settled at the parking depth for the 2nd time. MC189 - buoyancy action. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000331/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000331/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000331/2/" + }, + "dce:identifier": "SDN:R14::T000331", + "pav:version": "2", + "skos:notation": "SDN:R14::T000331", + "skos:altLabel": "331", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StartDescentToProfile_NUMBER" + }, + "dc:identifier": "SDN:R14::T000331", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the start date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000473/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000473/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000473/2/" + }, + "dce:identifier": "SDN:R14::T000473", + "pav:version": "2", + "skos:notation": "SDN:R14::T000473", + "skos:altLabel": "473", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpActionsInOutAtSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000473", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total duration of pump actions (in and out both reported) at the surface. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000077/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000077/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000077/2/" + }, + "dce:identifier": "SDN:R14::T000077", + "pav:version": "2", + "skos:notation": "SDN:R14::T000077", + "skos:altLabel": "77", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_ReceptionEndDateTime_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T000077", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "End date-time of argos message reception. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000538/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000538/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000538/2/" + }, + "dce:identifier": "SDN:R14::T000538", + "pav:version": "2", + "skos:notation": "SDN:R14::T000538", + "skos:altLabel": "538", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryPumpOn_volts" + }, + "dc:identifier": "SDN:R14::T000538", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pump Battery Voltage (LSB=0.1 volts). Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400248/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400248/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400248/2/" + }, + "dce:identifier": "SDN:R14::T400248", + "pav:version": "2", + "skos:notation": "SDN:R14::T400248", + "skos:altLabel": "248.4", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkDriftExitsFromParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T400248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Drift at park druing multiparking mode # pressure: number of exits from margin around park # pressure target. Specifically, it indicates how many times the float exits the band of pressure surrounding the target park # pressure (generally +/- 30db). This parameter is needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[COUNT];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000158/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000158/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000158/2/" + }, + "dce:identifier": "SDN:R14::T000158", + "pav:version": "2", + "skos:notation": "SDN:R14::T000158", + "skos:altLabel": "158", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileOldNotSent_COUNT" + }, + "dc:identifier": "SDN:R14::T000158", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of older profiles not sent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000347/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000347/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000347/2/" + }, + "dce:identifier": "SDN:R14::T000347", + "pav:version": "2", + "skos:notation": "SDN:R14::T000347", + "skos:altLabel": "347", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "REFERENCE_NTUParkEnd_COUNT" + }, + "dc:identifier": "SDN:R14::T000347", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu NTU Reference at end of park, before descent to profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000252/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000252/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000252/2/" + }, + "dce:identifier": "SDN:R14::T000252", + "pav:version": "2", + "skos:notation": "SDN:R14::T000252", + "skos:altLabel": "252", + "dc:date": "2025-12-11 11:05:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_CTDReset_COUNT" + }, + "dc:identifier": "SDN:R14::T000252", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD reset count. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000282/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000282/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000282/2/" + }, + "dce:identifier": "SDN:R14::T000282", + "pav:version": "2", + "skos:notation": "SDN:R14::T000282", + "skos:altLabel": "282", + "dc:date": "2025-12-11 11:04:39.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuNoResponse_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000282", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu : No response (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000317/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000317/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000317/2/" + }, + "dce:identifier": "SDN:R14::T000317", + "pav:version": "2", + "skos:notation": "SDN:R14::T000317", + "skos:altLabel": "317", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41NullArgumentDetectedDuringPMeasurement_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000317", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Null argument detected during P measurement (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000315/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000315/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000315/2/" + }, + "dce:identifier": "SDN:R14::T000315", + "pav:version": "2", + "skos:notation": "SDN:R14::T000315", + "skos:altLabel": "315", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ExceptionDetectedWhileParsingThePTSNonPedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000315", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Exception detected while parsing the PTS nonpedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000250/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000250/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000250/2/" + }, + "dce:identifier": "SDN:R14::T000250", + "pav:version": "2", + "skos:notation": "SDN:R14::T000250", + "skos:altLabel": "250", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RAFOSErrorsAscending_COUNT" + }, + "dc:identifier": "SDN:R14::T000250", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of RAFOS errors during profile. Zero if no rafos module installed. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000384/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000384/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000384/2/" + }, + "dce:identifier": "SDN:R14::T000384", + "pav:version": "2", + "skos:notation": "SDN:R14::T000384", + "skos:altLabel": "384", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DOXYProfileReductionBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000384", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY profile reduction Deep zone slices thickness - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000552/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000552/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000552/2/" + }, + "dce:identifier": "SDN:R14::T000552", + "pav:version": "2", + "skos:notation": "SDN:R14::T000552", + "skos:altLabel": "552", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SensorBoardStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000552", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag reporting the status of the sensor board. Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100115/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100115/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100115/2/" + }, + "dce:identifier": "SDN:R14::T100115", + "pav:version": "2", + "skos:notation": "SDN:R14::T100115", + "skos:altLabel": "115.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsToStartAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T100115", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions needed to start the ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000031/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000031/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000031/2/" + }, + "dce:identifier": "SDN:R14::T000031", + "pav:version": "2", + "skos:notation": "SDN:R14::T000031", + "skos:altLabel": "31", + "dc:date": "2025-12-11 11:04:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetNotTruncated_approx5dbarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset. This IS NOT used to correct pressure on board. Also note that the resolution varies because counts are repoted and converted using different calibration coefficients for each float. Not autocorrected. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000449/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000449/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000449/2/" + }, + "dce:identifier": "SDN:R14::T000449", + "pav:version": "2", + "skos:notation": "SDN:R14::T000449", + "skos:altLabel": "449", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_BuoyancyReductionActionAtSurface_seconds" + }, + "dc:identifier": "SDN:R14::T000449", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The time the pump or valve ran at the surface to initiate descent. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000298/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000298/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000298/2/" + }, + "dce:identifier": "SDN:R14::T000298", + "pav:version": "2", + "skos:notation": "SDN:R14::T000298", + "skos:altLabel": "298", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_OptodeNullArgumentDetectedDuringMeasurement_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000298", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optode : Null argument detected during measurement (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000520/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000520/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000520/2/" + }, + "dce:identifier": "SDN:R14::T000520", + "pav:version": "2", + "skos:notation": "SDN:R14::T000520", + "skos:altLabel": "520", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryCPU_volts" + }, + "dc:identifier": "SDN:R14::T000520", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CPU voltage (LSB=0.1 volt). Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000266/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000266/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000266/2/" + }, + "dce:identifier": "SDN:R14::T000266", + "pav:version": "2", + "skos:notation": "SDN:R14::T000266", + "skos:altLabel": "266", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_CurrentWithMotorOut_bit" + }, + "dc:identifier": "SDN:R14::T000266", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the current with motor out. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T120127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T120127/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T120127/2/" + }, + "dce:identifier": "SDN:R14::T120127", + "pav:version": "2", + "skos:notation": "SDN:R14::T120127", + "skos:altLabel": "127.12", + "dc:date": "2025-12-11 11:04:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsForSecondGroundingDetection_COUNT" + }, + "dc:identifier": "SDN:R14::T120127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions done at constant pressure to set the grounded flag for the second grounding event. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000079/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000079/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000079/2/" + }, + "dce:identifier": "SDN:R14::T000079", + "pav:version": "2", + "skos:notation": "SDN:R14::T000079", + "skos:altLabel": "79", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_ReceptionStartDateTime_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T000079", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Start date-time of argos message reception. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000363/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000363/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000363/2/" + }, + "dce:identifier": "SDN:R14::T000363", + "pav:version": "2", + "skos:notation": "SDN:R14::T000363", + "skos:altLabel": "363", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_2HoursIntoDescentToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T000363", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure taken 2 hours after the beginning of descent. If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000568/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000568/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000568/2/" + }, + "dce:identifier": "SDN:R14::T000568", + "pav:version": "2", + "skos:notation": "SDN:R14::T000568", + "skos:altLabel": "568", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SUNAAPFPowerCycleCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000568", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Incremented each time power is applied to SUNA (it can be used to notice if the SUNA was powered unintentionally between data collection events). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100066/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100066/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100066/2/" + }, + "dce:identifier": "SDN:R14::T100066", + "pav:version": "2", + "skos:notation": "SDN:R14::T100066", + "skos:altLabel": "66.1", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_PumpActionsAtSurface_HHMM" + }, + "dc:identifier": "SDN:R14::T100066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The time when the float moves the pump to acquire additional buoyancy for surface drift. Template_Values:{unit:[FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000428/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000428/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000428/2/" + }, + "dce:identifier": "SDN:R14::T000428", + "pav:version": "2", + "skos:notation": "SDN:R14::T000428", + "skos:altLabel": "428", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAtStartSurface_inHg" + }, + "dc:identifier": "SDN:R14::T000428", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Air pressure inside of SOLO at start of surface time (IDG Var=ATS). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000522/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000522/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000522/2/" + }, + "dce:identifier": "SDN:R14::T000522", + "pav:version": "2", + "skos:notation": "SDN:R14::T000522", + "skos:altLabel": "522", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryCPUStartXmit_volts" + }, + "dc:identifier": "SDN:R14::T000522", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CPU Battery at the start of transmission after data has been processed (LSB=0.1 volts, IDG Var= Vcpu). Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000536/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000536/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000536/2/" + }, + "dce:identifier": "SDN:R14::T000536", + "pav:version": "2", + "skos:notation": "SDN:R14::T000536", + "skos:altLabel": "536", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryPumpAscentEnd_volts" + }, + "dc:identifier": "SDN:R14::T000536", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pump Battery voltage at the end of ascent (LSB=0.1 volt). Also a diagnostic message. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000193/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000193/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000193/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Surface total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000193", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesShallowTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "193", + "skos:notation": "SDN:R14::T000193", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000193", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000193/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000471/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000471/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000471/2/" + }, + "dce:identifier": "SDN:R14::T000471", + "pav:version": "2", + "skos:notation": "SDN:R14::T000471", + "skos:altLabel": "471", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpActionsAtDepth_seconds" + }, + "dc:identifier": "SDN:R14::T000471", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total duration of pump actions at depth. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000495/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000495/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000495/2/" + }, + "dce:identifier": "SDN:R14::T000495", + "pav:version": "2", + "skos:notation": "SDN:R14::T000495", + "skos:altLabel": "495", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryMaxPumpOnStartAscent_mA" + }, + "dc:identifier": "SDN:R14::T000495", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum pump motor current taken at start of ascent. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100058/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100058/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100058/2/" + }, + "dce:identifier": "SDN:R14::T100058", + "pav:version": "2", + "skos:notation": "SDN:R14::T100058", + "skos:altLabel": "58.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_StartInternalCycle_FloatDay" + }, + "dc:identifier": "SDN:R14::T100058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The time of the (internal) cycle start for floats with multiple sub-cycles. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000226/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000226/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000226/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The number of records in each dataset type [1-5] as transmitted - dataset 1=test data, 2=park data if profile, GPS data if test, 3=not used, 4=profile data, 5=GPS data for profile. Template_Values:{unit:[COUNT];digit:[1..5]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000226", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RecordsInDataset_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-26 15:18:17.0", + "skos:altLabel": "226", + "skos:notation": "SDN:R14::T000226", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000226", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000226/3/" + }, + "pav:authoredOn": "2026-03-26 15:18:17.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000142/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000142/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000142/2/" + }, + "dce:identifier": "SDN:R14::T000142", + "pav:version": "2", + "skos:notation": "SDN:R14::T000142", + "skos:altLabel": "142", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DeepSamplesDuringAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T000142", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples collected in deep area during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900034/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900034/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900034/2/" + }, + "dce:identifier": "SDN:R14::T900034", + "pav:version": "2", + "skos:notation": "SDN:R14::T900034", + "skos:altLabel": "900034", + "dc:date": "2025-12-11 11:04:52.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_ParkMinimum_degC" + }, + "dc:identifier": "SDN:R14::T900034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum temperature during park phase. MC minus 3 or 297. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000161/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000161/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000161/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Deep relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000161", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesDeepRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "161", + "skos:notation": "SDN:R14::T000161", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000161", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000161/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000504/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000504/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000504/2/" + }, + "dce:identifier": "SDN:R14::T000504", + "pav:version": "2", + "skos:notation": "SDN:R14::T000504", + "skos:altLabel": "504", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatterySampledbySBE_mA" + }, + "dc:identifier": "SDN:R14::T000504", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe sampled battery current. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000058/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000058/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000058/2/" + }, + "dce:identifier": "SDN:R14::T000058", + "pav:version": "2", + "skos:notation": "SDN:R14::T000058", + "skos:altLabel": "58", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TimeFromStartUp_hours" + }, + "dc:identifier": "SDN:R14::T000058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time from start up. The time of the satellite message from which this was calculated should also be stored. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000528/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000528/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000528/2/" + }, + "dce:identifier": "SDN:R14::T000528", + "pav:version": "2", + "skos:notation": "SDN:R14::T000528", + "skos:altLabel": "528", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryFltnu_volts" + }, + "dc:identifier": "SDN:R14::T000528", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu sampled battery voltage. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000185/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000185/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000185/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Profile total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000185", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "185", + "skos:notation": "SDN:R14::T000185", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000185", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000185/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000301/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000301/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000301/2/" + }, + "dce:identifier": "SDN:R14::T000301", + "pav:version": "2", + "skos:notation": "SDN:R14::T000301", + "skos:altLabel": "301", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_PistonFullyExtendedBeforeSurfaceDetectionAlgorithmTerminated_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000301", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston fully extended before surface detection algorithm terminated (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000487/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000487/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000487/2/" + }, + "dce:identifier": "SDN:R14::T000487", + "pav:version": "2", + "skos:notation": "SDN:R14::T000487", + "skos:altLabel": "487", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_TUR3SampleFrequencyDuringPark_hours" + }, + "dc:identifier": "SDN:R14::T000487", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 drift acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000284/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000284/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000284/2/" + }, + "dce:identifier": "SDN:R14::T000284", + "pav:version": "2", + "skos:notation": "SDN:R14::T000284", + "skos:altLabel": "284", + "dc:date": "2025-12-11 11:04:39.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuPowerDownFailed_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000284", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu : Power down failed (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000433/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000433/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000433/2/" + }, + "dce:identifier": "SDN:R14::T000433", + "pav:version": "2", + "skos:notation": "SDN:R14::T000433", + "skos:altLabel": "433", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumParkEnd_inHg" + }, + "dc:identifier": "SDN:R14::T000433", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal Vacuum at end of park, before descent to profile depth. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000121/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000121/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000121/2/" + }, + "dce:identifier": "SDN:R14::T000121", + "pav:version": "2", + "skos:notation": "SDN:R14::T000121", + "skos:altLabel": "121", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RepositionsDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000121", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of times the float readjusts its buoyancy during park phase - using either the pump or EV. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000479/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000479/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000479/2/" + }, + "dce:identifier": "SDN:R14::T000479", + "pav:version": "2", + "skos:notation": "SDN:R14::T000479", + "skos:altLabel": "479", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_Settling1_seconds" + }, + "dc:identifier": "SDN:R14::T000479", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_Settling1. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000169/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000169/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000169/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Deep internal counter for ascending profile measurements of . Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000169", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesDeepInternalCounter_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "169", + "skos:notation": "SDN:R14::T000169", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000169", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000169/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000447/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000447/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000447/2/" + }, + "dce:identifier": "SDN:R14::T000447", + "pav:version": "2", + "skos:notation": "SDN:R14::T000447", + "skos:altLabel": "447", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_Ascent2000DB_seconds" + }, + "dc:identifier": "SDN:R14::T000447", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_Ascent2000DB. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000234/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000234/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000234/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Park measurements - Drift absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000234", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamplesAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "234", + "skos:notation": "SDN:R14::T000234", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000234", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000234/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200556/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200556/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200556/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T200556", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "556.2", + "skos:notation": "SDN:R14::T200556", + "pav:version": "3", + "dce:identifier": "SDN:R14::T200556", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200556/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000137/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000137/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000137/2/" + }, + "dce:identifier": "SDN:R14::T000137", + "pav:version": "2", + "skos:notation": "SDN:R14::T000137", + "skos:altLabel": "137", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples4thBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000412/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000412/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000412/2/" + }, + "dce:identifier": "SDN:R14::T000412", + "pav:version": "2", + "skos:notation": "SDN:R14::T000412", + "skos:altLabel": "412", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ChangeInFirstSeek_COUNT" + }, + "dc:identifier": "SDN:R14::T000412", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure Change during first seek at the park depth (IDG Var=PSK). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000072/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000072/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000072/2/" + }, + "dce:identifier": "SDN:R14::T000072", + "pav:version": "2", + "skos:notation": "SDN:R14::T000072", + "skos:altLabel": "72", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_AscentInitiationFromDownTimeExpiryOffset_minutes" + }, + "dc:identifier": "SDN:R14::T000072", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profile initiation time 2s complement signed integer (positive values - profile initiated after down time expired, negative values - profile initiated before down time expired). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000105/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000105/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000105/2/" + }, + "dce:identifier": "SDN:R14::T000105", + "pav:version": "2", + "skos:notation": "SDN:R14::T000105", + "skos:altLabel": "105", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_GPSResets_COUNT" + }, + "dc:identifier": "SDN:R14::T000105", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Power Resets GPS. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000040/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000040/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000040/2/" + }, + "dce:identifier": "SDN:R14::T000040", + "pav:version": "2", + "skos:notation": "SDN:R14::T000040", + "skos:altLabel": "40", + "dc:date": "2025-12-11 11:04:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeReset_1dBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile.This is a relative offset and no further correction is possible. Autocorrected. Autocorrecting so no adjustment in either RT or DM possible. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000395/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000395/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000395/2/" + }, + "dce:identifier": "SDN:R14::T000395", + "pav:version": "2", + "skos:notation": "SDN:R14::T000395", + "skos:altLabel": "395", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MiddleDeepBoundaryAscent_dbar" + }, + "dc:identifier": "SDN:R14::T000395", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Boundary pressure between middle/deep areas at ascent. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000544/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000544/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000544/2/" + }, + "dce:identifier": "SDN:R14::T000544", + "pav:version": "2", + "skos:notation": "SDN:R14::T000544", + "skos:altLabel": "544", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatterySurfaceNoLoad_volts" + }, + "dc:identifier": "SDN:R14::T000544", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage during inactive surface phase. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000042/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000042/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000042/2/" + }, + "dce:identifier": "SDN:R14::T000042", + "pav:version": "2", + "skos:notation": "SDN:R14::T000042", + "skos:altLabel": "42", + "dc:date": "2025-12-11 11:05:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetAfterReset_1cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure offset measured after the pressure correction has been applied. This is a relative offset and no further correction is required. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000107/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000107/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000107/2/" + }, + "dce:identifier": "SDN:R14::T000107", + "pav:version": "2", + "skos:notation": "SDN:R14::T000107", + "skos:altLabel": "107", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_HydraulicRecords_COUNT" + }, + "dc:identifier": "SDN:R14::T000107", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of hydraulic (pump or valve) actions performed during the cycle. Due to transmission limitations some of them may not be transmitted (in the NUMBER_HydraulicPackets_COUNT transmitted packets). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000032/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000032/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000032/2/" + }, + "dce:identifier": "SDN:R14::T000032", + "pav:version": "2", + "skos:notation": "SDN:R14::T000032", + "skos:altLabel": "32", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetNotTruncatedPlus5dbar_dbar" + }, + "dc:identifier": "SDN:R14::T000032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset with 5dbar added. Not autocorrected. Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900032/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900032/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900032/2/" + }, + "dce:identifier": "SDN:R14::T900032", + "pav:version": "2", + "skos:notation": "SDN:R14::T900032", + "skos:altLabel": "900032", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_ParkMaximum_degC" + }, + "dc:identifier": "SDN:R14::T900032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum temperature during park phase. MC minus 2 or 298. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000056/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000056/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000056/2/" + }, + "dce:identifier": "SDN:R14::T000056", + "pav:version": "2", + "skos:notation": "SDN:R14::T000056", + "skos:altLabel": "56", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EndDescentProfile_hours" + }, + "dc:identifier": "SDN:R14::T000056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when descent profile ends. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250 assuming descending profile ends with a park phase otherwise choose the appropriate timing variable. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000174/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000174/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000174/2/" + }, + "dce:identifier": "SDN:R14::T000174", + "pav:version": "2", + "skos:notation": "SDN:R14::T000174", + "skos:altLabel": "174", + "dc:date": "2025-12-11 11:04:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingProfileReductionUpperPart_COUNT" + }, + "dc:identifier": "SDN:R14::T000174", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of slices in shallow zone for ascending profile reduction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200554/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200554/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200554/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T200554", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "554.2", + "skos:notation": "SDN:R14::T200554", + "pav:version": "3", + "dce:identifier": "SDN:R14::T200554", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200554/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000239/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000239/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000239/2/" + }, + "dce:identifier": "SDN:R14::T000239", + "pav:version": "2", + "skos:notation": "SDN:R14::T000239", + "skos:altLabel": "239", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TemporaryCycleIdentification_COUNT" + }, + "dc:identifier": "SDN:R14::T000239", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Temporary - used to identify the recalculated Apex tech_cycle_data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000571/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000571/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000571/2/" + }, + "dce:identifier": "SDN:R14::T000571", + "pav:version": "2", + "skos:notation": "SDN:R14::T000571", + "skos:altLabel": "571", + "dc:date": "2025-12-11 11:05:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_SUNAAPFSupplyCurrent_mA" + }, + "dc:identifier": "SDN:R14::T000571", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Current measured inside SUNA via ADC. The current can be monitored to ascertain that all components are operating. A sudden drop or increase would indicate the failure of a system component. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000333/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000333/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000333/2/" + }, + "dce:identifier": "SDN:R14::T000333", + "pav:version": "2", + "skos:notation": "SDN:R14::T000333", + "skos:altLabel": "333", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusEndDescentToProfile_NUMBER" + }, + "dc:identifier": "SDN:R14::T000333", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the end date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200112/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200112/2/" + }, + "dce:identifier": "SDN:R14::T200112", + "pav:version": "2", + "skos:notation": "SDN:R14::T200112", + "skos:altLabel": "112.2", + "dc:date": "2025-12-11 11:04:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_HydraulicPackets_COUNT" + }, + "dc:identifier": "SDN:R14::T200112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of hydraulic packets used to transmit hydraulic (pump or valve) actions performed during the cycle. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000018/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000018/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000018/2/" + }, + "dce:identifier": "SDN:R14::T000018", + "pav:version": "2", + "skos:notation": "SDN:R14::T000018", + "skos:altLabel": "18", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "BACKSCATTERING_MeanBeforeAscent_m^-1/sr" + }, + "dc:identifier": "SDN:R14::T000018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[m^-1/sr]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000302/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000302/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000302/2/" + }, + "dce:identifier": "SDN:R14::T000302", + "pav:version": "2", + "skos:notation": "SDN:R14::T000302", + "skos:altLabel": "302", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_PistonMotorRunning_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000302", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the piston motor is running (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000465/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000465/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000465/2/" + }, + "dce:identifier": "SDN:R14::T000465", + "pav:version": "2", + "skos:notation": "SDN:R14::T000465", + "skos:altLabel": "465", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_MotorDriveDuringAscent_minutes" + }, + "dc:identifier": "SDN:R14::T000465", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_MotorDriveDuringAscent. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900016/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900016/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900016/2/" + }, + "dce:identifier": "SDN:R14::T900016", + "pav:version": "2", + "skos:notation": "SDN:R14::T900016", + "skos:altLabel": "900016", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_Grounded_dbar" + }, + "dc:identifier": "SDN:R14::T900016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Grounded pressure if the float hit bottom. MC901 references grounding information. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000318/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000318/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000318/2/" + }, + "dce:identifier": "SDN:R14::T000318", + "pav:version": "2", + "skos:notation": "SDN:R14::T000318", + "skos:altLabel": "318", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PExeption_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000318", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : P exception (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600488/2/" + }, + "dce:identifier": "SDN:R14::T600488", + "pav:version": "2", + "skos:notation": "SDN:R14::T600488", + "skos:altLabel": "488.6", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredDuringDescentToPark_cm^3" + }, + "dc:identifier": "SDN:R14::T600488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume transferred from the external bladder during the descent to park with multiparking mode park# (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. Needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[cm^3];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000253/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000253/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000253/2/" + }, + "dce:identifier": "SDN:R14::T000253", + "pav:version": "2", + "skos:notation": "SDN:R14::T000253", + "skos:altLabel": "253", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_CTDError_COUNT" + }, + "dc:identifier": "SDN:R14::T000253", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD error count. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000555/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000555/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000555/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by in the depth zone # during the ascent from the profile depth to the surface. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna];Z=[1..5]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000555", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamplesDepthZone_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "555", + "skos:notation": "SDN:R14::T000555", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000555/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100118/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100118/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100118/2/" + }, + "dce:identifier": "SDN:R14::T100118", + "pav:version": "2", + "skos:notation": "SDN:R14::T100118", + "skos:altLabel": "118.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T100118", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions while at park in multiparking mode # depth. Needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[COUNT];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000285/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000285/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000285/2/" + }, + "dce:identifier": "SDN:R14::T000285", + "pav:version": "2", + "skos:notation": "SDN:R14::T000285", + "skos:altLabel": "285", + "dc:date": "2025-12-11 11:04:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuPowerUpFailed_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000285", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu : Power up failed (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000221/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000221/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000221/2/" + }, + "dce:identifier": "SDN:R14::T000221", + "pav:version": "2", + "skos:notation": "SDN:R14::T000221", + "skos:altLabel": "221", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesReceivedOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000221", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames received on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000245/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000245/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000245/2/" + }, + "dce:identifier": "SDN:R14::T000245", + "pav:version": "2", + "skos:notation": "SDN:R14::T000245", + "skos:altLabel": "245", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesTechnicalOk_COUNT" + }, + "dc:identifier": "SDN:R14::T000245", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - Technical OK. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400520/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400520/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400520/2/" + }, + "dce:identifier": "SDN:R14::T400520", + "pav:version": "2", + "skos:notation": "SDN:R14::T400520", + "skos:altLabel": "520.4", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery7VStartAscentToSurface_volts" + }, + "dc:identifier": "SDN:R14::T400520", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 7V system when float starts ascending to surface. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000180/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000180/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000180/2/" + }, + "dce:identifier": "SDN:R14::T000180", + "pav:version": "2", + "skos:notation": "SDN:R14::T000180", + "skos:altLabel": "180", + "dc:date": "2025-12-11 11:04:36.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingProfileReductionUpperPart_COUNT" + }, + "dc:identifier": "SDN:R14::T000180", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of slices in shallow zone for descending profile reduction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000523/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000523/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000523/2/" + }, + "dce:identifier": "SDN:R14::T000523", + "pav:version": "2", + "skos:notation": "SDN:R14::T000523", + "skos:altLabel": "523", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryCPUSurface_volts" + }, + "dc:identifier": "SDN:R14::T000523", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface CPU battery voltage. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000444/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000444/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000444/2/" + }, + "dce:identifier": "SDN:R14::T000444", + "pav:version": "2", + "skos:notation": "SDN:R14::T000444", + "skos:altLabel": "444", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_AirPumpOn_seconds" + }, + "dc:identifier": "SDN:R14::T000444", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Air pump on time. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000509/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000509/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000509/2/" + }, + "dce:identifier": "SDN:R14::T000509", + "pav:version": "2", + "skos:notation": "SDN:R14::T000509", + "skos:altLabel": "509", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_MotorAtEndOfAscent_mA" + }, + "dc:identifier": "SDN:R14::T000509", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Motor current measured at the end of the ascent phase. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000269/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000269/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000269/2/" + }, + "dce:identifier": "SDN:R14::T000269", + "pav:version": "2", + "skos:notation": "SDN:R14::T000269", + "skos:altLabel": "269", + "dc:date": "2025-12-11 11:04:38.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_TimeMotorOut_bit" + }, + "dc:identifier": "SDN:R14::T000269", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the status of the time motor out. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000064/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000064/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000064/2/" + }, + "dce:identifier": "SDN:R14::T000064", + "pav:version": "2", + "skos:notation": "SDN:R14::T000064", + "skos:altLabel": "64", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_InitialStabilizationDuringDescentToPark_hours" + }, + "dc:identifier": "SDN:R14::T000064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when first stabilization appears during descent to park. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100123/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100123/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100123/2/" + }, + "dce:identifier": "SDN:R14::T100123", + "pav:version": "2", + "skos:notation": "SDN:R14::T100123", + "skos:altLabel": "123.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T100123", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions during park with multiparking mode # phase. Needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[COUNT];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000129/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000129/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000129/2/" + }, + "dce:identifier": "SDN:R14::T000129", + "pav:version": "2", + "skos:notation": "SDN:R14::T000129", + "skos:altLabel": "129", + "dc:date": "2025-12-11 11:05:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorActionsDuringDescentToPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000129", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of motor actions between surface and parking depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000172/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000172/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000172/2/" + }, + "dce:identifier": "SDN:R14::T000172", + "pav:version": "2", + "skos:notation": "SDN:R14::T000172", + "skos:altLabel": "172", + "dc:date": "2025-12-11 11:04:36.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingProfileReductionLowerPart_COUNT" + }, + "dc:identifier": "SDN:R14::T000172", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction Number of slices in deep zone. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000223/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000223/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000223/2/" + }, + "dce:identifier": "SDN:R14::T000223", + "pav:version": "2", + "skos:notation": "SDN:R14::T000223", + "skos:altLabel": "223", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesRecombinedOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000223", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames recombined on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000539/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000539/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000539/2/" + }, + "dce:identifier": "SDN:R14::T000539", + "pav:version": "2", + "skos:notation": "SDN:R14::T000539", + "skos:altLabel": "539", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryPumpStartProfile_volts" + }, + "dc:identifier": "SDN:R14::T000539", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pump battery voltage at depth. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000196/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000196/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000196/2/" + }, + "dce:identifier": "SDN:R14::T000196", + "pav:version": "2", + "skos:notation": "SDN:R14::T000196", + "skos:altLabel": "196", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PRESSamplesDuringDescentToProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pressure samples collected after park, during descent to the profile depth - see PRES_1HourIntoDescentToProfile_dbar for the data collected. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000139/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000139/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000139/2/" + }, + "dce:identifier": "SDN:R14::T000139", + "pav:version": "2", + "skos:notation": "SDN:R14::T000139", + "skos:altLabel": "139", + "dc:date": "2025-12-11 11:05:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples6thBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000474/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000474/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000474/2/" + }, + "dce:identifier": "SDN:R14::T000474", + "pav:version": "2", + "skos:notation": "SDN:R14::T000474", + "skos:altLabel": "474", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpMotor_seconds" + }, + "dc:identifier": "SDN:R14::T000474", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_PumpMotor. Units could be COUNT or seconds. Pump motor time=COUNT multiplied by 2 for seconds. Template_Values:{unit:[COUNT, days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000557/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000557/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000557/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by in the depth zone # during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna];Z=[1..5]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000557", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentSamplesDepthZone_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "557", + "skos:notation": "SDN:R14::T000557", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000557", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000557/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000140/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000140/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000140/2/" + }, + "dce:identifier": "SDN:R14::T000140", + "pav:version": "2", + "skos:notation": "SDN:R14::T000140", + "skos:altLabel": "140", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples7thBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000229/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000229/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000229/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct optique frames emitted on ascending profile - Profile 3. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000229", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnAscendingProfile3_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "229", + "skos:notation": "SDN:R14::T000229", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000229", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000229/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000507/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000507/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000507/2/" + }, + "dce:identifier": "SDN:R14::T000507", + "pav:version": "2", + "skos:notation": "SDN:R14::T000507", + "skos:altLabel": "507", + "dc:date": "2025-12-11 11:05:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatterySurfaceAirPumpOn_mA" + }, + "dc:identifier": "SDN:R14::T000507", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery Current measured at the surface with the air pump running (6 seconds). Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000164/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000164/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000164/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Shallow relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000164", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesShallowRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "164", + "skos:notation": "SDN:R14::T000164", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000164", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000164/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000442/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000442/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000442/2/" + }, + "dce:identifier": "SDN:R14::T000442", + "pav:version": "2", + "skos:notation": "SDN:R14::T000442", + "skos:altLabel": "442", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "STATUS_LimitSwitchINAtSurfaceStartXmit_NUMBER" + }, + "dc:identifier": "SDN:R14::T000442", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Binary reporting of piston position (1=IN, 0=OUT, IDG Var=LIMsw). Not the same LIMsw as in Cy0. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000290/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000290/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:40.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000290/2/" + }, + "dce:identifier": "SDN:R14::T000290", + "pav:version": "2", + "skos:notation": "SDN:R14::T000290", + "skos:altLabel": "290", + "dc:date": "2025-12-11 11:04:40.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Grounded_NUMBER" + }, + "dc:identifier": "SDN:R14::T000290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Grounded flag , diagnostic bit (if unit = LOGICAL) or number of profiles during which the float grounded (if unit=NUMBER). Template_Values:{unit:[LOGICAL, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000355/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000355/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000355/2/" + }, + "dce:identifier": "SDN:R14::T000355", + "pav:version": "2", + "skos:notation": "SDN:R14::T000355", + "skos:altLabel": "355", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonStorage_COUNT" + }, + "dc:identifier": "SDN:R14::T000355", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "POSITION_PistonStorage. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000002/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000002/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000002/2/" + }, + "dce:identifier": "SDN:R14::T000002", + "pav:version": "2", + "skos:notation": "SDN:R14::T000002", + "skos:altLabel": "2", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_GreyListTEMP_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Y=YES, N=NO or field is absent. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000187/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000187/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000187/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Depth absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000187", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesDeepAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "187", + "skos:notation": "SDN:R14::T000187", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000187", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000187/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000410/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000410/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000410/2/" + }, + "dce:identifier": "SDN:R14::T000410", + "pav:version": "2", + "skos:notation": "SDN:R14::T000410", + "skos:altLabel": "410", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_TUR3ProfileReductionSeparation_dbar" + }, + "dc:identifier": "SDN:R14::T000410", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 profile reduction Surface / Bottom pressure threshold - PRSEP. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100520/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100520/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100520/2/" + }, + "dce:identifier": "SDN:R14::T100520", + "pav:version": "2", + "skos:notation": "SDN:R14::T100520", + "skos:altLabel": "520.1", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery14VStartDescentToPark_volts" + }, + "dc:identifier": "SDN:R14::T100520", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 14V system when float starts descending to park. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000514/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000514/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000514/2/" + }, + "dce:identifier": "SDN:R14::T000514", + "pav:version": "2", + "skos:notation": "SDN:R14::T000514", + "skos:altLabel": "514", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery_volts" + }, + "dc:identifier": "SDN:R14::T000514", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage when battery capacity is unknown. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000156/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000156/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000156/2/" + }, + "dce:identifier": "SDN:R14::T000156", + "pav:version": "2", + "skos:notation": "SDN:R14::T000156", + "skos:altLabel": "156", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningMessageRejected_COUNT" + }, + "dc:identifier": "SDN:R14::T000156", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Rejected. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000434/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000434/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:57.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000434/2/" + }, + "dce:identifier": "SDN:R14::T000434", + "pav:version": "2", + "skos:notation": "SDN:R14::T000434", + "skos:altLabel": "434", + "dc:date": "2025-12-11 11:04:57.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumProfileStart_mbar" + }, + "dc:identifier": "SDN:R14::T000434", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal tube pressure in profile depth. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000458/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000458/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000458/2/" + }, + "dce:identifier": "SDN:R14::T000458", + "pav:version": "2", + "skos:notation": "SDN:R14::T000458", + "skos:altLabel": "458", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_FromStartOfMissionToEndFirstProfile_seconds" + }, + "dc:identifier": "SDN:R14::T000458", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time from start to end of the first profile. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500488/2/" + }, + "dce:identifier": "SDN:R14::T500488", + "pav:version": "2", + "skos:notation": "SDN:R14::T500488", + "skos:altLabel": "488.5", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredDuringAscentToSurface_cm^3" + }, + "dc:identifier": "SDN:R14::T500488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume transferred to the external bladder during the ascent to surface This is the oil volume tranferred during the NUMBER_PumpActionsDuringAscentToSurface_COUNT pump actions (Id 116). Reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900026/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900026/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:55.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900026/2/" + }, + "dce:identifier": "SDN:R14::T900026", + "pav:version": "2", + "skos:notation": "SDN:R14::T900026", + "skos:altLabel": "900026", + "dc:date": "2025-12-11 11:04:55.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ParkMinimum_dbar" + }, + "dc:identifier": "SDN:R14::T900026", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum pressure during park phase. MC minus 3 or 297. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000334/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000334/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000334/2/" + }, + "dce:identifier": "SDN:R14::T000334", + "pav:version": "2", + "skos:notation": "SDN:R14::T000334", + "skos:altLabel": "334", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusHistoryQCFailed_hex" + }, + "dc:identifier": "SDN:R14::T000334", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag History Failed (from profile file). Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000497/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000497/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000497/2/" + }, + "dce:identifier": "SDN:R14::T000497", + "pav:version": "2", + "skos:notation": "SDN:R14::T000497", + "skos:altLabel": "497", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryPark_mA" + }, + "dc:identifier": "SDN:R14::T000497", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Measured during park-park phase and is averaged. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000426/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000426/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:57.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000426/2/" + }, + "dce:identifier": "SDN:R14::T000426", + "pav:version": "2", + "skos:notation": "SDN:R14::T000426", + "skos:altLabel": "426", + "dc:date": "2025-12-11 11:04:57.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAtEndSurface_inHg" + }, + "dc:identifier": "SDN:R14::T000426", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Air pressure inside of SOLO at end of surface time (IDG Var=ATE). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000166/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000166/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000166/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Profile total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000166", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "166", + "skos:notation": "SDN:R14::T000166", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000166", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000166/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000385/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000385/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000385/2/" + }, + "dce:identifier": "SDN:R14::T000385", + "pav:version": "2", + "skos:notation": "SDN:R14::T000385", + "skos:altLabel": "385", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DOXYProfileReductionSeparation_dbar" + }, + "dc:identifier": "SDN:R14::T000385", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY profile reduction Shallow / Deep pressure threshold - Surface / Bottom pressure threshold PRSEP. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400278/2/" + }, + "dce:identifier": "SDN:R14::T400278", + "pav:version": "2", + "skos:notation": "SDN:R14::T400278", + "skos:altLabel": "278.4", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDDownloadError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T400278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is an error on CTD download command. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200271/2/" + }, + "dce:identifier": "SDN:R14::T200271", + "pav:version": "2", + "skos:notation": "SDN:R14::T200271", + "skos:altLabel": "271.2", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterNonresponsive_bit" + }, + "dc:identifier": "SDN:R14::T200271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Is the Argos transmitter non responsive. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000466/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000466/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000466/2/" + }, + "dce:identifier": "SDN:R14::T000466", + "pav:version": "2", + "skos:notation": "SDN:R14::T000466", + "skos:altLabel": "466", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_OptiqueSampleFrequencyDuringDescent_seconds" + }, + "dc:identifier": "SDN:R14::T000466", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optique descent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300112/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300112/2/" + }, + "dce:identifier": "SDN:R14::T300112", + "pav:version": "2", + "skos:notation": "SDN:R14::T300112", + "skos:altLabel": "112.3", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_NearSurfaceSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T300112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near surface measurements (Internal counter). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000113/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000113/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000113/2/" + }, + "dce:identifier": "SDN:R14::T000113", + "pav:version": "2", + "skos:notation": "SDN:R14::T000113", + "skos:altLabel": "113", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MixedLayerSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000113", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of CTD samples taken in the mixed layer. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900005/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900005/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:56.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900005/2/" + }, + "dce:identifier": "SDN:R14::T900005", + "pav:version": "2", + "skos:notation": "SDN:R14::T900005", + "skos:altLabel": "900005", + "dc:date": "2025-12-11 11:04:56.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FirstMessageTime_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T900005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Time when the first message is sent. Concerns deep Ninja. Refers to exactly the same time as first message received by satellite (MC=702). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000029/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000029/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000029/2/" + }, + "dce:identifier": "SDN:R14::T000029", + "pav:version": "2", + "skos:notation": "SDN:R14::T000029", + "skos:altLabel": "29", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetTruncated_dbar" + }, + "dc:identifier": "SDN:R14::T000029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset, negative offsets truncated to 0. Not autocorrected. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. Unlike the previous name, it DOES NOT have 5db added and so this does not need to be removed before use. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000276/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000276/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000276/2/" + }, + "dce:identifier": "SDN:R14::T000276", + "pav:version": "2", + "skos:notation": "SDN:R14::T000276", + "skos:altLabel": "276", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_AscentTimeOutExpired_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000276", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent time out expired (1/Yes or 0/No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000123/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000123/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000123/2/" + }, + "dce:identifier": "SDN:R14::T000123", + "pav:version": "2", + "skos:notation": "SDN:R14::T000123", + "skos:altLabel": "123", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000123", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions during park phase. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000043/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000043/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000043/2/" + }, + "dce:identifier": "SDN:R14::T000043", + "pav:version": "2", + "skos:notation": "SDN:R14::T000043", + "skos:altLabel": "43", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeReset_5cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.5db resolution - may be used for other floats as well. This is a relative offset and no further correction is required. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300104/2/" + }, + "dce:identifier": "SDN:R14::T300104", + "pav:version": "2", + "skos:notation": "SDN:R14::T300104", + "skos:altLabel": "104.3", + "dc:date": "2025-12-11 11:04:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_NearSurfaceIridiumPackets_COUNT" + }, + "dc:identifier": "SDN:R14::T300104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit sensor data collected during the near surface measurement phase. Internal counter measured by the float. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000096/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000096/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000096/2/" + }, + "dce:identifier": "SDN:R14::T000096", + "pav:version": "2", + "skos:notation": "SDN:R14::T000096", + "skos:altLabel": "96", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkAndProfileCycleCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000096", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indication of how often the float does a profile deeper than its park depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000345/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000345/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000345/2/" + }, + "dce:identifier": "SDN:R14::T000345", + "pav:version": "2", + "skos:notation": "SDN:R14::T000345", + "skos:altLabel": "345", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "REFERENCE_BlueFlntuParkEnd_COUNT" + }, + "dc:identifier": "SDN:R14::T000345", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu BlueReference at end of park, before descent to profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000280/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000280/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000280/2/" + }, + "dce:identifier": "SDN:R14::T000280", + "pav:version": "2", + "skos:notation": "SDN:R14::T000280", + "skos:altLabel": "280", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_DataStateIndicator_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000280", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data state indicator - again, duplicated from the profile file. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000369/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000369/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000369/2/" + }, + "dce:identifier": "SDN:R14::T000369", + "pav:version": "2", + "skos:notation": "SDN:R14::T000369", + "skos:altLabel": "369", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscendingProfileReductionSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000369", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction Surface slices thickness - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000255/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000255/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000255/2/" + }, + "dce:identifier": "SDN:R14::T000255", + "pav:version": "2", + "skos:notation": "SDN:R14::T000255", + "skos:altLabel": "255", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MiddleSamplesDuringAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T000255", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent: number of samples in middle area. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000404/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000404/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000404/2/" + }, + "dce:identifier": "SDN:R14::T000404", + "pav:version": "2", + "skos:notation": "SDN:R14::T000404", + "skos:altLabel": "404", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ShallowDeepBoundaryAscent_dbar" + }, + "dc:identifier": "SDN:R14::T000404", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Boundary pressure between shallow/deep areas at ascent. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000171/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000171/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000171/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Internal count. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000171", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesInternal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "171", + "skos:notation": "SDN:R14::T000171", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000171", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000171/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900035/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900035/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900035/2/" + }, + "dce:identifier": "SDN:R14::T900035", + "pav:version": "2", + "skos:notation": "SDN:R14::T900035", + "skos:altLabel": "900035", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_ParkStandardDeviation_degC" + }, + "dc:identifier": "SDN:R14::T900035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Standard deviation of temperature during the park phase. MC minus 6 or 294. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000236/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000236/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000236/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Park measurements - Drift relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000236", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamplesRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "236", + "skos:notation": "SDN:R14::T000236", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000236", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000236/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000059/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000059/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000059/2/" + }, + "dce:identifier": "SDN:R14::T000059", + "pav:version": "2", + "skos:notation": "SDN:R14::T000059", + "skos:altLabel": "59", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_RealTimeDrift_seconds" + }, + "dc:identifier": "SDN:R14::T000059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The difference between float Real Time Clock (RTC) and gps time representing clock drift. Is also represented in the traj files. We have CLOCK_OFFSET which is defined as: Decimal part of day that float clock has drifted. Float clock drift is defined as Float time (provided by the inboard Real Time Clock (RTC) of the float) ? UT time. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100287/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100287/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100287/2/" + }, + "dce:identifier": "SDN:R14::T100287", + "pav:version": "2", + "skos:notation": "SDN:R14::T100287", + "skos:altLabel": "287.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlbbStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T100287", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the FLBB (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200557/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200557/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200557/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the surface phase. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T200557", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_InAirSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "557.2", + "skos:notation": "SDN:R14::T200557", + "pav:version": "3", + "dce:identifier": "SDN:R14::T200557", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200557/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000550/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000550/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000550/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sensor status (1 = OK, 0 = not OK). Template_Values:{unit:[LOGICAL, hex, NUMBER];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000550", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Status_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "550", + "skos:notation": "SDN:R14::T000550", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000550", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000550/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900003/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900003/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900003/2/" + }, + "dce:identifier": "SDN:R14::T900003", + "pav:version": "2", + "skos:notation": "SDN:R14::T900003", + "skos:altLabel": "900003", + "dc:date": "2025-12-11 11:04:51.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_3rdSettlingBeforePark_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T900003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Time when float was settled at the parking depth for the 3rd time. MC189 - buoyancy action. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000387/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000387/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000387/2/" + }, + "dce:identifier": "SDN:R14::T000387", + "pav:version": "2", + "skos:notation": "SDN:R14::T000387", + "skos:altLabel": "387", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ForFLNTUSurface_dbar" + }, + "dc:identifier": "SDN:R14::T000387", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure used for Flntu at surface. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000027/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000027/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000027/2/" + }, + "dce:identifier": "SDN:R14::T000027", + "pav:version": "2", + "skos:notation": "SDN:R14::T000027", + "skos:altLabel": "27", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetTruncatedPlus5dbar_dbar" + }, + "dc:identifier": "SDN:R14::T000027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset, negative offsets truncated to 0, 5dbar added. Not autocorrected. Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900010/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900010/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:56.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900010/2/" + }, + "dce:identifier": "SDN:R14::T900010", + "pav:version": "2", + "skos:notation": "SDN:R14::T900010", + "skos:altLabel": "900010", + "dc:date": "2025-12-11 11:04:56.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentStartToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T900010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure taken at the end of piston retraction. JULD_DEEP_PARK_START and JULD with MC = 450. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000034/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000034/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000034/2/" + }, + "dce:identifier": "SDN:R14::T000034", + "pav:version": "2", + "skos:notation": "SDN:R14::T000034", + "skos:altLabel": "34", + "dc:date": "2025-12-11 11:04:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetCorrectedNotReset_1cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent but data is corrected on board the float. This is a cumulative offset but no further correction required. Autocorrected. Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000481/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000481/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000481/2/" + }, + "dce:identifier": "SDN:R14::T000481", + "pav:version": "2", + "skos:notation": "SDN:R14::T000481", + "skos:altLabel": "481", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SinceStartUp_seconds" + }, + "dc:identifier": "SDN:R14::T000481", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time since startup before deployment. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000546/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000546/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000546/2/" + }, + "dce:identifier": "SDN:R14::T000546", + "pav:version": "2", + "skos:notation": "SDN:R14::T000546", + "skos:altLabel": "546", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGETIME_IntegratedAirPumpVolume_voltseconds" + }, + "dc:identifier": "SDN:R14::T000546", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Integrated measure (volts * seconds) of the pumped air volume (VSAP of Apex floats). Template_Values:{unit:[voltseconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000542/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000542/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000542/2/" + }, + "dce:identifier": "SDN:R14::T000542", + "pav:version": "2", + "skos:notation": "SDN:R14::T000542", + "skos:altLabel": "542", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatterySBEPump_volts" + }, + "dc:identifier": "SDN:R14::T000542", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage when CTD is active . Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100105/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100105/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100105/2/" + }, + "dce:identifier": "SDN:R14::T100105", + "pav:version": "2", + "skos:notation": "SDN:R14::T100105", + "skos:altLabel": "105.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RetriesForGPSAcquisition_COUNT" + }, + "dc:identifier": "SDN:R14::T100105", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of times the GPS had to try to get a valid fix. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200260/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200260/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200260/2/" + }, + "dce:identifier": "SDN:R14::T200260", + "pav:version": "2", + "skos:notation": "SDN:R14::T200260", + "skos:altLabel": "260.2", + "dc:date": "2025-12-11 11:04:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileNearSurfaceTemperatureSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T200260", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The number of Near Surface Temperature monitoring PT samples (non-pumped PT). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000019/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000019/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000019/2/" + }, + "dce:identifier": "SDN:R14::T000019", + "pav:version": "2", + "skos:notation": "SDN:R14::T000019", + "skos:altLabel": "19", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CDOM_MeanBeforeAscent_ppb" + }, + "dc:identifier": "SDN:R14::T000019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[ppb]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000003/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000003/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000003/2/" + }, + "dce:identifier": "SDN:R14::T000003", + "pav:version": "2", + "skos:notation": "SDN:R14::T000003", + "skos:altLabel": "3", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SpeedMaximumCheck_NUMBER" + }, + "dc:identifier": "SDN:R14::T000003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "FLAG_SpeedMaximumCheck. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100407/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100407/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100407/2/" + }, + "dce:identifier": "SDN:R14::T100407", + "pav:version": "2", + "skos:notation": "SDN:R14::T100407", + "skos:altLabel": "407.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscentTimeOutExpired_dbar" + }, + "dc:identifier": "SDN:R14::T100407", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when ascending time out. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000232/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000232/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000232/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile optique measurements - Internal counter - Profile 3. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000232", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileMeasurementsProfile3_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "232", + "skos:notation": "SDN:R14::T000232", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000232", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000232/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000188/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000188/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000188/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Depth relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000188", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesDeepRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "188", + "skos:notation": "SDN:R14::T000188", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000188", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000188/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000450/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000450/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000450/2/" + }, + "dce:identifier": "SDN:R14::T000450", + "pav:version": "2", + "skos:notation": "SDN:R14::T000450", + "skos:altLabel": "450", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_ClockDrift_dsec/day" + }, + "dc:identifier": "SDN:R14::T000450", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_ClockDrift. Template_Values:{unit:[dsec/day]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200488/2/" + }, + "dce:identifier": "SDN:R14::T200488", + "pav:version": "2", + "skos:notation": "SDN:R14::T200488", + "skos:altLabel": "488.2", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredDuringDescentToPark_cm^3" + }, + "dc:identifier": "SDN:R14::T200488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume transferred from the external bladder during the descent to park (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions (Id 124). Reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900019/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900019/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900019/2/" + }, + "dce:identifier": "SDN:R14::T900019", + "pav:version": "2", + "skos:notation": "SDN:R14::T900019", + "skos:altLabel": "900019", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MaximumDescentToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T900019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum recorded pressure during descent, before stabilisation at profile pressure. MC minus 2. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000510/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000510/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000510/2/" + }, + "dce:identifier": "SDN:R14::T000510", + "pav:version": "2", + "skos:notation": "SDN:R14::T000510", + "skos:altLabel": "510", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_MotorOutToAscent_mA" + }, + "dc:identifier": "SDN:R14::T000510", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Motor current measured during the ascent phase. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000366/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000366/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:56.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000366/2/" + }, + "dce:identifier": "SDN:R14::T000366", + "pav:version": "2", + "skos:notation": "SDN:R14::T000366", + "skos:altLabel": "366", + "dc:date": "2025-12-11 11:04:56.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscendingProfileReductionETF_dbar" + }, + "dc:identifier": "SDN:R14::T000366", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000515/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000515/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000515/2/" + }, + "dce:identifier": "SDN:R14::T000515", + "pav:version": "2", + "skos:notation": "SDN:R14::T000515", + "skos:altLabel": "515", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery6V_volts" + }, + "dc:identifier": "SDN:R14::T000515", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 6v system. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000260/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000260/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000260/2/" + }, + "dce:identifier": "SDN:R14::T000260", + "pav:version": "2", + "skos:notation": "SDN:R14::T000260", + "skos:altLabel": "260", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TEMPSampleErrorShallowZoneDuringDescending_COUNT" + }, + "dc:identifier": "SDN:R14::T000260", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Error of temperature measurements in shallow zone during descent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000325/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000325/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000325/2/" + }, + "dce:identifier": "SDN:R14::T000325", + "pav:version": "2", + "skos:notation": "SDN:R14::T000325", + "skos:altLabel": "325", + "dc:date": "2025-12-11 11:04:43.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ResponseToPMeasurementFailedThePedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000325", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Response to P measurement failed the pedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000200/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000200/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000200/2/" + }, + "dce:identifier": "SDN:R14::T000200", + "pav:version": "2", + "skos:notation": "SDN:R14::T000200", + "skos:altLabel": "200", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentEntriesInGap_COUNT" + }, + "dc:identifier": "SDN:R14::T000200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent float control - number of entries in gap order. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000525/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000525/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000525/2/" + }, + "dce:identifier": "SDN:R14::T000525", + "pav:version": "2", + "skos:notation": "SDN:R14::T000525", + "skos:altLabel": "525", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryDescentToProfile_volts" + }, + "dc:identifier": "SDN:R14::T000525", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "VOLTAGE_BatteryDescentToProfile. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000558/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000558/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000558/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium messages used to transmit data collected during the drift at park depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000558", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkIridiumMessages_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "558", + "skos:notation": "SDN:R14::T000558", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000558", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000558/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100398/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100398/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100398/2/" + }, + "dce:identifier": "SDN:R14::T100398", + "pav:version": "2", + "skos:notation": "SDN:R14::T100398", + "skos:altLabel": "398.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MinimumDuringMaximumBuoyancy_dbar" + }, + "dc:identifier": "SDN:R14::T100398", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Shallowest presssure reached by a float when buoyancy is at maximum but it cannot reach the surface. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000493/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000493/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000493/2/" + }, + "dce:identifier": "SDN:R14::T000493", + "pav:version": "2", + "skos:notation": "SDN:R14::T000493", + "skos:altLabel": "493", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryOptics_COUNT" + }, + "dc:identifier": "SDN:R14::T000493", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current while the optial sensor is on. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900027/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900027/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900027/2/" + }, + "dce:identifier": "SDN:R14::T900027", + "pav:version": "2", + "skos:notation": "SDN:R14::T900027", + "skos:altLabel": "900027", + "dc:date": "2025-12-11 11:04:54.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ParkStandardDeviation_dbar" + }, + "dc:identifier": "SDN:R14::T900027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Standard deviation of pressure during the park phase. MC minus 6 or 294. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000224/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000224/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000224/2/" + }, + "dce:identifier": "SDN:R14::T000224", + "pav:version": "2", + "skos:notation": "SDN:R14::T000224", + "skos:altLabel": "224", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesRecombinedOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000224", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames recombined on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200104/2/" + }, + "dce:identifier": "SDN:R14::T200104", + "pav:version": "2", + "skos:notation": "SDN:R14::T200104", + "skos:altLabel": "104.2", + "dc:date": "2025-12-11 11:04:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_IridiumMessagesSentPreviousSession_COUNT" + }, + "dc:identifier": "SDN:R14::T200104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Incoming Iridium Messages Sent during previous session. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100492/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100492/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100492/2/" + }, + "dce:identifier": "SDN:R14::T100492", + "pav:version": "2", + "skos:notation": "SDN:R14::T100492", + "skos:altLabel": "492.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryFlbbParkEnd_mA" + }, + "dc:identifier": "SDN:R14::T100492", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current measured when Flbb sampled at end of park. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000080/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000080/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000080/2/" + }, + "dce:identifier": "SDN:R14::T000080", + "pav:version": "2", + "skos:notation": "SDN:R14::T000080", + "skos:altLabel": "80", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ReceptionStartDateTime_NUMBER" + }, + "dc:identifier": "SDN:R14::T000080", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the start date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000498/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000498/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000498/2/" + }, + "dce:identifier": "SDN:R14::T000498", + "pav:version": "2", + "skos:notation": "SDN:R14::T000498", + "skos:altLabel": "498", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryParkEnd_mA" + }, + "dc:identifier": "SDN:R14::T000498", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current measured at end of park, before descent to profile depth. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000526/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000526/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000526/2/" + }, + "dce:identifier": "SDN:R14::T000526", + "pav:version": "2", + "skos:notation": "SDN:R14::T000526", + "skos:altLabel": "526", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryExternalStartProfile_volts" + }, + "dc:identifier": "SDN:R14::T000526", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Voltage of the external battery at the profile depth. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000183/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000183/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000183/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Profile absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000183", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "183", + "skos:notation": "SDN:R14::T000183", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000183", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000183/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000145/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000145/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000145/2/" + }, + "dce:identifier": "SDN:R14::T000145", + "pav:version": "2", + "skos:notation": "SDN:R14::T000145", + "skos:altLabel": "145", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ShallowSamplesDuringDescent_COUNT" + }, + "dc:identifier": "SDN:R14::T000145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples collected in shallow area during descent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000461/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000461/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000461/2/" + }, + "dce:identifier": "SDN:R14::T000461", + "pav:version": "2", + "skos:notation": "SDN:R14::T000461", + "skos:altLabel": "461", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_IridiumGPSFix_seconds" + }, + "dc:identifier": "SDN:R14::T000461", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time required to obtain a GPS fix for a profile. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100571/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100571/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100571/2/" + }, + "dce:identifier": "SDN:R14::T100571", + "pav:version": "2", + "skos:notation": "SDN:R14::T100571", + "skos:altLabel": "571.1", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_OptodeSensorReset_COUNT" + }, + "dc:identifier": "SDN:R14::T100571", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of power resets of the DO sensor. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000216/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000216/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000216/2/" + }, + "dce:identifier": "SDN:R14::T000216", + "pav:version": "2", + "skos:notation": "SDN:R14::T000216", + "skos:altLabel": "216", + "dc:date": "2025-12-11 11:04:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000216", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000304/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000304/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000304/2/" + }, + "dce:identifier": "SDN:R14::T000304", + "pav:version": "2", + "skos:notation": "SDN:R14::T000304", + "skos:altLabel": "304", + "dc:date": "2025-12-11 11:04:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_PressureReachedZero_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000304", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether pressure has reached zero (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000151/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000151/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000151/2/" + }, + "dce:identifier": "SDN:R14::T000151", + "pav:version": "2", + "skos:notation": "SDN:R14::T000151", + "skos:altLabel": "151", + "dc:date": "2025-12-11 11:05:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClass3_COUNT" + }, + "dc:identifier": "SDN:R14::T000151", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class 3 - accuracy better than 250m radius. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100271/2/" + }, + "dce:identifier": "SDN:R14::T100271", + "pav:version": "2", + "skos:notation": "SDN:R14::T100271", + "skos:altLabel": "271.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterUnexpectedResponse_bit" + }, + "dc:identifier": "SDN:R14::T100271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there was an Argos transmitter unexpected response. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200126/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200126/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200126/2/" + }, + "dce:identifier": "SDN:R14::T200126", + "pav:version": "2", + "skos:notation": "SDN:R14::T200126", + "skos:altLabel": "126.2", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT" + }, + "dc:identifier": "SDN:R14::T200126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of solenoid valve actions at the surface until the crossing of the GAP threshold. These actions are performed after the NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT previous ones. See 126.1 and 126. NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000124/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000124/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000124/2/" + }, + "dce:identifier": "SDN:R14::T000124", + "pav:version": "2", + "skos:notation": "SDN:R14::T000124", + "skos:altLabel": "124", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringDescentToPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000124", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions between the crossing of the gap threshold and the end of descent at park pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000477/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000477/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000477/2/" + }, + "dce:identifier": "SDN:R14::T000477", + "pav:version": "2", + "skos:notation": "SDN:R14::T000477", + "skos:altLabel": "477", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SampleFrequencyDuringPark_seconds" + }, + "dc:identifier": "SDN:R14::T000477", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD park acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000371/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000371/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000371/2/" + }, + "dce:identifier": "SDN:R14::T000371", + "pav:version": "2", + "skos:notation": "SDN:R14::T000371", + "skos:altLabel": "371", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_CTDProfileReductionSeparation_dbar" + }, + "dc:identifier": "SDN:R14::T000371", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD profile reduction Shallow / Deep pressure threshold - PRSEP. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000208/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000208/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000208/2/" + }, + "dce:identifier": "SDN:R14::T000208", + "pav:version": "2", + "skos:notation": "SDN:R14::T000208", + "skos:altLabel": "208", + "dc:date": "2025-12-11 11:04:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FloatFramesReceivedOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000208", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Provor frames received on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000287/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000287/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:40.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000287/2/" + }, + "dce:identifier": "SDN:R14::T000287", + "pav:version": "2", + "skos:notation": "SDN:R14::T000287", + "skos:altLabel": "287", + "dc:date": "2025-12-11 11:04:40.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000287", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the FLNTU (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000143/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000143/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000143/2/" + }, + "dce:identifier": "SDN:R14::T000143", + "pav:version": "2", + "skos:notation": "SDN:R14::T000143", + "skos:altLabel": "143", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ShallowSamplesDuringAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T000143", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples collected in shallow area during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000436/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000436/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000436/2/" + }, + "dce:identifier": "SDN:R14::T000436", + "pav:version": "2", + "skos:notation": "SDN:R14::T000436", + "skos:altLabel": "436", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMPERATURE_InternalVacuumAtSurface_degC" + }, + "dc:identifier": "SDN:R14::T000436", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal tube temperature at the surface. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300278/2/" + }, + "dce:identifier": "SDN:R14::T300278", + "pav:version": "2", + "skos:notation": "SDN:R14::T300278", + "skos:altLabel": "278.3", + "dc:date": "2025-12-11 11:04:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDStopProfileError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T300278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is an error on CTD stop profile command. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000167/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000167/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000167/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Profile absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000167", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "167", + "skos:notation": "SDN:R14::T000167", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000167", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000167/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000530/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000530/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000530/2/" + }, + "dce:identifier": "SDN:R14::T000530", + "pav:version": "2", + "skos:notation": "SDN:R14::T000530", + "skos:altLabel": "530", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryInitialAtProfileDepth_volts" + }, + "dc:identifier": "SDN:R14::T000530", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Measured at initial pump extension completion. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000445/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000445/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000445/2/" + }, + "dce:identifier": "SDN:R14::T000445", + "pav:version": "2", + "skos:notation": "SDN:R14::T000445", + "skos:altLabel": "445", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_AirPumpOnIntegrated_seconds" + }, + "dc:identifier": "SDN:R14::T000445", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Air pumped integrated. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000111/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000111/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000111/2/" + }, + "dce:identifier": "SDN:R14::T000111", + "pav:version": "2", + "skos:notation": "SDN:R14::T000111", + "skos:altLabel": "111", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToParkEntriesInParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T000111", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent to park pressure: number of entries in margin around park pressure target - specifically, how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000256/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000256/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000256/2/" + }, + "dce:identifier": "SDN:R14::T000256", + "pav:version": "2", + "skos:notation": "SDN:R14::T000256", + "skos:altLabel": "256", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AirPumpPulsesToInflateBladder_COUNT" + }, + "dc:identifier": "SDN:R14::T000256", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of 6-second pulses of the air pump required to inflate the air bladder. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000135/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000135/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000135/2/" + }, + "dce:identifier": "SDN:R14::T000135", + "pav:version": "2", + "skos:notation": "SDN:R14::T000135", + "skos:altLabel": "135", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples2ndBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100245/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100245/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100245/2/" + }, + "dce:identifier": "SDN:R14::T100245", + "pav:version": "2", + "skos:notation": "SDN:R14::T100245", + "skos:altLabel": "245.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TelemetryRetransmission_COUNT" + }, + "dc:identifier": "SDN:R14::T100245", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of repeated transmissions of float data for each Argos message. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000413/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000413/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000413/2/" + }, + "dce:identifier": "SDN:R14::T000413", + "pav:version": "2", + "skos:notation": "SDN:R14::T000413", + "skos:altLabel": "413", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_WhenInWaterSensed_dbar" + }, + "dc:identifier": "SDN:R14::T000413", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure from P,T,S when in water sensed. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000070/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000070/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000070/2/" + }, + "dce:identifier": "SDN:R14::T000070", + "pav:version": "2", + "skos:notation": "SDN:R14::T000070", + "skos:altLabel": "70", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FloatDate_YYYYMMDD" + }, + "dc:identifier": "SDN:R14::T000070", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal float date. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000066/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000066/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000066/2/" + }, + "dce:identifier": "SDN:R14::T000066", + "pav:version": "2", + "skos:notation": "SDN:R14::T000066", + "skos:altLabel": "66", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_ValveActionsAtSurface_HHMM" + }, + "dc:identifier": "SDN:R14::T000066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The time when the float moves the valve to acquire additional buoyancy for surface drift. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200290/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200290/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200290/2/" + }, + "dce:identifier": "SDN:R14::T200290", + "pav:version": "2", + "skos:notation": "SDN:R14::T200290", + "skos:altLabel": "290.2", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SecondGroundingCyclePhase_NUMBER" + }, + "dc:identifier": "SDN:R14::T200290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Phase of the float life or cycle when the second grounding occurred. See the manual for phase definition - this will vary with float type. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000350/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000350/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000350/2/" + }, + "dce:identifier": "SDN:R14::T000350", + "pav:version": "2", + "skos:notation": "SDN:R14::T000350", + "skos:altLabel": "350", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonNow_COUNT" + }, + "dc:identifier": "SDN:R14::T000350", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "POSITION_PistonNow. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000237/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000237/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000237/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Park measurements - Drift total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000237", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamplesTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "237", + "skos:notation": "SDN:R14::T000237", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000237", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000237/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000159/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000159/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000159/2/" + }, + "dce:identifier": "SDN:R14::T000159", + "pav:version": "2", + "skos:notation": "SDN:R14::T000159", + "skos:altLabel": "159", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileSamplesLowResolution_COUNT" + }, + "dc:identifier": "SDN:R14::T000159", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of low resolution profile samples. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000415/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000415/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000415/2/" + }, + "dce:identifier": "SDN:R14::T000415", + "pav:version": "2", + "skos:notation": "SDN:R14::T000415", + "skos:altLabel": "415", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PSAL_WhenInWaterSensed_psu" + }, + "dc:identifier": "SDN:R14::T000415", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Salinity from P,T,S when in water sensed. Template_Values:{unit:[psu, mpsu]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000578/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000578/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000578/2/" + }, + "dce:identifier": "SDN:R14::T000578", + "pav:version": "2", + "skos:notation": "SDN:R14::T000578", + "skos:altLabel": "578", + "dc:date": "2025-12-11 11:05:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SubCycle_NUMBER" + }, + "dc:identifier": "SDN:R14::T000578", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NUMBER_SubCycle. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000103/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000103/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000103/2/" + }, + "dce:identifier": "SDN:R14::T000103", + "pav:version": "2", + "skos:notation": "SDN:R14::T000103", + "skos:altLabel": "103", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_IridiumResets_COUNT" + }, + "dc:identifier": "SDN:R14::T000103", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Power Resets iridium. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000396/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000396/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000396/2/" + }, + "dce:identifier": "SDN:R14::T000396", + "pav:version": "2", + "skos:notation": "SDN:R14::T000396", + "skos:altLabel": "396", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MinimumDepthBinWithValidData_dbar" + }, + "dc:identifier": "SDN:R14::T000396", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum depth bin with valid data according to the float. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000127/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000127/2/" + }, + "dce:identifier": "SDN:R14::T000127", + "pav:version": "2", + "skos:notation": "SDN:R14::T000127", + "skos:altLabel": "127", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringProfileDrift_COUNT" + }, + "dc:identifier": "SDN:R14::T000127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions while drifting at profile depth. The first one: NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900011/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900011/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900011/2/" + }, + "dce:identifier": "SDN:R14::T900011", + "pav:version": "2", + "skos:notation": "SDN:R14::T900011", + "skos:altLabel": "900011", + "dc:date": "2025-12-11 11:04:54.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentToParkEnd_dbar" + }, + "dc:identifier": "SDN:R14::T900011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure when the float reaches park depth but still goes through settling etc so not quite equivalent to ParkStart. JULD_DESCENT_END and JULD with MC=200. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000405/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000405/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000405/2/" + }, + "dce:identifier": "SDN:R14::T000405", + "pav:version": "2", + "skos:notation": "SDN:R14::T000405", + "skos:altLabel": "405", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ShallowDeepBoundaryDescent_dbar" + }, + "dc:identifier": "SDN:R14::T000405", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Boundary pressure between shallow/deep areas at descent. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000062/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000062/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000062/2/" + }, + "dce:identifier": "SDN:R14::T000062", + "pav:version": "2", + "skos:notation": "SDN:R14::T000062", + "skos:altLabel": "62", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_DateFirstParkSample_YYYYMMDD" + }, + "dc:identifier": "SDN:R14::T000062", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float internal clock date of the first park sample. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000035/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000035/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000035/2/" + }, + "dce:identifier": "SDN:R14::T000035", + "pav:version": "2", + "skos:notation": "SDN:R14::T000035", + "skos:altLabel": "35", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetCorrectedNotResetNegative_1dbarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent but data is corrected on board the float. This is a cumulative NEGATIVE offset (real offset * -1) but no further correction required. Autocorrected. Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000340/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000340/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000340/2/" + }, + "dce:identifier": "SDN:R14::T000340", + "pav:version": "2", + "skos:notation": "SDN:R14::T000340", + "skos:altLabel": "340", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SystemAtSurface_hex" + }, + "dc:identifier": "SDN:R14::T000340", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "System flags at surface. See Manual for more information. Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000198/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000198/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000198/2/" + }, + "dce:identifier": "SDN:R14::T000198", + "pav:version": "2", + "skos:notation": "SDN:R14::T000198", + "skos:altLabel": "198", + "dc:date": "2025-12-11 11:04:36.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToParkEntriesInGap_COUNT" + }, + "dc:identifier": "SDN:R14::T000198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent to park float control - number of entries in gap order. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000482/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000482/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000482/2/" + }, + "dce:identifier": "SDN:R14::T000482", + "pav:version": "2", + "skos:notation": "SDN:R14::T000482", + "skos:altLabel": "482", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_TelemetryPhaseInitiationTimeRelativeEPOCH_minutes" + }, + "dc:identifier": "SDN:R14::T000482", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of telemetry phase initiation in a duration relative to EPOCH. This includes the ascent from profiling depth. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000429/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000429/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000429/2/" + }, + "dce:identifier": "SDN:R14::T000429", + "pav:version": "2", + "skos:notation": "SDN:R14::T000429", + "skos:altLabel": "429", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAtSurface_mbar" + }, + "dc:identifier": "SDN:R14::T000429", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface internal pressure. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000086/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000086/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000086/2/" + }, + "dce:identifier": "SDN:R14::T000086", + "pav:version": "2", + "skos:notation": "SDN:R14::T000086", + "skos:altLabel": "86", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_EmergencyAscents_COUNT" + }, + "dc:identifier": "SDN:R14::T000086", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Emergency ascents - Internal count. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900021/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900021/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900021/2/" + }, + "dce:identifier": "SDN:R14::T900021", + "pav:version": "2", + "skos:notation": "SDN:R14::T900021", + "skos:altLabel": "900021", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MinimumDescentToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T900021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum pressure recorded during descent to profile. MC minus 3. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000364/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000364/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000364/2/" + }, + "dce:identifier": "SDN:R14::T000364", + "pav:version": "2", + "skos:notation": "SDN:R14::T000364", + "skos:altLabel": "364", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_HoursIntoDesentToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T000364", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRES_HoursIntoDesentToProfile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg];int:[1..9999]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000547/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000547/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000547/2/" + }, + "dce:identifier": "SDN:R14::T000547", + "pav:version": "2", + "skos:notation": "SDN:R14::T000547", + "skos:altLabel": "547", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "SPEED_FirstGrounding_mm/s" + }, + "dc:identifier": "SDN:R14::T000547", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Vertical speed during the first grounding. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000045/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000045/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000045/2/" + }, + "dce:identifier": "SDN:R14::T000045", + "pav:version": "2", + "skos:notation": "SDN:R14::T000045", + "skos:altLabel": "45", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeReset_2mBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.04db resolution - may be used for other floats as well. This is a relative offset and no further correction is required. Autocorrected. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000292/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000292/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000292/2/" + }, + "dce:identifier": "SDN:R14::T000292", + "pav:version": "2", + "skos:notation": "SDN:R14::T000292", + "skos:altLabel": "292", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_IceDetected_COUNT" + }, + "dc:identifier": "SDN:R14::T000292", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Aborted profile. If unit = COUNT or NUMBER, it increments by one for each profile interrupted by ice detection. If units are bit then represents the ice evasion record for the last 8 profiles with the latest profile in the least significant bit. Template_Values:{unit:[LOGICAL, bit, NUMBER, COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100104/2/" + }, + "dce:identifier": "SDN:R14::T100104", + "pav:version": "2", + "skos:notation": "SDN:R14::T100104", + "skos:altLabel": "104.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_IridiumMessagesReceivedPreviousSession_COUNT" + }, + "dc:identifier": "SDN:R14::T100104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Incoming Iridium Messages Received during previous session. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000388/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000388/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000388/2/" + }, + "dce:identifier": "SDN:R14::T000388", + "pav:version": "2", + "skos:notation": "SDN:R14::T000388", + "skos:altLabel": "388", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ForOptodeSurface_dbar" + }, + "dc:identifier": "SDN:R14::T000388", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure used for Optode at surface. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000357/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000357/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000357/2/" + }, + "dce:identifier": "SDN:R14::T000357", + "pav:version": "2", + "skos:notation": "SDN:R14::T000357", + "skos:altLabel": "357", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonSurfaceAddedBuoyancy_COUNT" + }, + "dc:identifier": "SDN:R14::T000357", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston position, recorded AFTER the instrument reaches the surface and the bladder has been fully pumped to increase buoyancy. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000332/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000332/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000332/2/" + }, + "dce:identifier": "SDN:R14::T000332", + "pav:version": "2", + "skos:notation": "SDN:R14::T000332", + "skos:altLabel": "332", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusEndAscentToSurface_NUMBER" + }, + "dc:identifier": "SDN:R14::T000332", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the end date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000078/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000078/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000078/2/" + }, + "dce:identifier": "SDN:R14::T000078", + "pav:version": "2", + "skos:notation": "SDN:R14::T000078", + "skos:altLabel": "78", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ReceptionEndDateTime_NUMBER" + }, + "dc:identifier": "SDN:R14::T000078", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the end date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000356/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000356/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000356/2/" + }, + "dce:identifier": "SDN:R14::T000356", + "pav:version": "2", + "skos:notation": "SDN:R14::T000356", + "skos:altLabel": "356", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000356", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston position, recorded as the instrument reaches the surface. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000291/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000291/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000291/2/" + }, + "dce:identifier": "SDN:R14::T000291", + "pav:version": "2", + "skos:notation": "SDN:R14::T000291", + "skos:altLabel": "291", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Beached_NUMBER" + }, + "dc:identifier": "SDN:R14::T000291", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the float has beached. Template_Values:{unit:[LOGICAL, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100132/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100132/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100132/2/" + }, + "dce:identifier": "SDN:R14::T100132", + "pav:version": "2", + "skos:notation": "SDN:R14::T100132", + "skos:altLabel": "132.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_BuoyancyInversionValveActions_COUNT" + }, + "dc:identifier": "SDN:R14::T100132", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of solenoid valve actions needed to perform the buoyancy inversion phase when ice was detected during ascent. See 76 and 76.1. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000326/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000326/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000326/2/" + }, + "dce:identifier": "SDN:R14::T000326", + "pav:version": "2", + "skos:notation": "SDN:R14::T000326", + "skos:altLabel": "326", + "dc:date": "2025-12-11 11:04:43.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ResponseToPTSMeasurementFailedTheNonpedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000326", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Response to PTS measurement failed the nonpedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000300/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000300/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000300/2/" + }, + "dce:identifier": "SDN:R14::T000300", + "pav:version": "2", + "skos:notation": "SDN:R14::T000300", + "skos:altLabel": "300", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_OxygenSensorState_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000300", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oxygen Sensor State (1 = ON, 0 = OFF). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200520/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200520/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200520/2/" + }, + "dce:identifier": "SDN:R14::T200520", + "pav:version": "2", + "skos:notation": "SDN:R14::T200520", + "skos:altLabel": "520.2", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery14VStartAscentToSurface_volts" + }, + "dc:identifier": "SDN:R14::T200520", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 14V system when float starts ascending to surface. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000046/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000046/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000046/2/" + }, + "dce:identifier": "SDN:R14::T000046", + "pav:version": "2", + "skos:notation": "SDN:R14::T000046", + "skos:altLabel": "46", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetAfterReset_2mBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.04db resolution - may be used for other floats as well. This is a relative offset and no further correction is required. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required (changed from 4 to 2mBar resolution as per Gilson request). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000271/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000271/2/" + }, + "dce:identifier": "SDN:R14::T000271", + "pav:version": "2", + "skos:notation": "SDN:R14::T000271", + "skos:altLabel": "271", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterBootFailure_bit" + }, + "dc:identifier": "SDN:R14::T000271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there was an Argos transmitter boot failure. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000420/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000420/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000420/2/" + }, + "dce:identifier": "SDN:R14::T000420", + "pav:version": "2", + "skos:notation": "SDN:R14::T000420", + "skos:altLabel": "420", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuum_mbar" + }, + "dc:identifier": "SDN:R14::T000420", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRESSURE_InternalVacuum. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000324/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000324/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000324/2/" + }, + "dce:identifier": "SDN:R14::T000324", + "pav:version": "2", + "skos:notation": "SDN:R14::T000324", + "skos:altLabel": "324", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ResponseToPMeasurementFailedTheNonpedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000324", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Response to P measurement failed the nonpedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100330/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100330/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100330/2/" + }, + "dce:identifier": "SDN:R14::T100330", + "pav:version": "2", + "skos:notation": "SDN:R14::T100330", + "skos:altLabel": "330.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusBladderStateAtLaunch_NUMBER" + }, + "dc:identifier": "SDN:R14::T100330", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "External bladder state at deployment (0: float stay at surface, 1: heavy float at deployment). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000336/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000336/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000336/2/" + }, + "dce:identifier": "SDN:R14::T000336", + "pav:version": "2", + "skos:notation": "SDN:R14::T000336", + "skos:altLabel": "336", + "dc:date": "2025-12-11 11:04:43.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusStartAscentToSurface_NUMBER" + }, + "dc:identifier": "SDN:R14::T000336", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the start date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000348/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000348/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000348/2/" + }, + "dce:identifier": "SDN:R14::T000348", + "pav:version": "2", + "skos:notation": "SDN:R14::T000348", + "skos:altLabel": "348", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "REFERENCE_NTUSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000348", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu NTU Reference at surface. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000283/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000283/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000283/2/" + }, + "dce:identifier": "SDN:R14::T000283", + "pav:version": "2", + "skos:notation": "SDN:R14::T000283", + "skos:altLabel": "283", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuNullArgumentDetectedDuringMeasurement_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000283", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu : Null argument detected during measurement (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100124/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100124/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100124/2/" + }, + "dce:identifier": "SDN:R14::T100124", + "pav:version": "2", + "skos:notation": "SDN:R14::T100124", + "skos:altLabel": "124.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringDescentToPark_COUNT" + }, + "dc:identifier": "SDN:R14::T100124", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park# pressure. Needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[COUNT];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000240/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000240/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000240/2/" + }, + "dce:identifier": "SDN:R14::T000240", + "pav:version": "2", + "skos:notation": "SDN:R14::T000240", + "skos:altLabel": "240", + "dc:date": "2025-12-11 11:05:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesComplete_COUNT" + }, + "dc:identifier": "SDN:R14::T000240", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - Complete. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200278/2/" + }, + "dce:identifier": "SDN:R14::T200278", + "pav:version": "2", + "skos:notation": "SDN:R14::T200278", + "skos:altLabel": "278.2", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDStartProfileError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T200278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is an error on CTD start profile command. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000316/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000316/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:42.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000316/2/" + }, + "dce:identifier": "SDN:R14::T000316", + "pav:version": "2", + "skos:notation": "SDN:R14::T000316", + "skos:altLabel": "316", + "dc:date": "2025-12-11 11:04:42.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ExceptionDetectedWhileParsingThePTSPedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000316", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Exception detected while parsing the PTS pedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000305/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000305/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000305/2/" + }, + "dce:identifier": "SDN:R14::T000305", + "pav:version": "2", + "skos:notation": "SDN:R14::T000305", + "skos:altLabel": "305", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ProfileInProgress_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000305", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether a profile is in progress (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100083/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100083/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100083/2/" + }, + "dce:identifier": "SDN:R14::T100083", + "pav:version": "2", + "skos:notation": "SDN:R14::T100083", + "skos:altLabel": "83.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_PressureActivationStart_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T100083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure activation scrutation start date. The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000251/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000251/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000251/2/" + }, + "dce:identifier": "SDN:R14::T000251", + "pav:version": "2", + "skos:notation": "SDN:R14::T000251", + "skos:altLabel": "251", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorErrorDuringProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000251", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of moter errors during profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100361/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100361/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100361/2/" + }, + "dce:identifier": "SDN:R14::T100361", + "pav:version": "2", + "skos:notation": "SDN:R14::T100361", + "skos:altLabel": "361.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_TimeOutGPS_dbar" + }, + "dc:identifier": "SDN:R14::T100361", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when GPS acquisition times out. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000050/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000050/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000050/2/" + }, + "dce:identifier": "SDN:R14::T000050", + "pav:version": "2", + "skos:notation": "SDN:R14::T000050", + "skos:altLabel": "50", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_StartAscentToSurface_hours" + }, + "dc:identifier": "SDN:R14::T000050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent start time. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_ASCENT_START and JULD with MC=500. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000468/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000468/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000468/2/" + }, + "dce:identifier": "SDN:R14::T000468", + "pav:version": "2", + "skos:notation": "SDN:R14::T000468", + "skos:altLabel": "468", + "dc:date": "2025-12-11 11:04:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PistonRanDuringDescentFrom100db_seconds" + }, + "dc:identifier": "SDN:R14::T000468", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration that piston ran to descend from approximately 100db (IDG Var= TIP). Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100527/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100527/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100527/2/" + }, + "dce:identifier": "SDN:R14::T100527", + "pav:version": "2", + "skos:notation": "SDN:R14::T100527", + "skos:altLabel": "527.1", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryFlbbParkEnd_volts" + }, + "dc:identifier": "SDN:R14::T100527", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured by Flbb at end of park. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000115/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000115/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000115/2/" + }, + "dce:identifier": "SDN:R14::T000115", + "pav:version": "2", + "skos:notation": "SDN:R14::T000115", + "skos:altLabel": "115", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000115", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples collected during park phase. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900007/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900007/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900007/2/" + }, + "dce:identifier": "SDN:R14::T900007", + "pav:version": "2", + "skos:notation": "SDN:R14::T900007", + "skos:altLabel": "900007", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_2ndSettlingBeforePark_dbar" + }, + "dc:identifier": "SDN:R14::T900007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure when float was settled at the parking depth for the 2nd time. MC189 - buoyancy action. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000275/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000275/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000275/2/" + }, + "dce:identifier": "SDN:R14::T000275", + "pav:version": "2", + "skos:notation": "SDN:R14::T000275", + "skos:altLabel": "275", + "dc:date": "2025-12-11 11:04:38.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_AscentError_NUMBER" + }, + "dc:identifier": "SDN:R14::T000275", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "0=normal, 81=too shallow (grounding?), 82=over 2100dbar, 84=sensor error. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T210407/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T210407/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T210407/2/" + }, + "dce:identifier": "SDN:R14::T210407", + "pav:version": "2", + "skos:notation": "SDN:R14::T210407", + "skos:altLabel": "407.21", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentTimeOutExpiredAfterFailedAscent_dbar" + }, + "dc:identifier": "SDN:R14::T210407", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum pressure when descent times out after a previous failed ascent (from ice avoidancy or buoyancy issues). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000562/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000562/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000562/2/" + }, + "dce:identifier": "SDN:R14::T000562", + "pav:version": "2", + "skos:notation": "SDN:R14::T000562", + "skos:altLabel": "562", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingCTDSamplesInternalCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000562", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total number of slices of the ascending profile after reduction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500278/2/" + }, + "dce:identifier": "SDN:R14::T500278", + "pav:version": "2", + "skos:notation": "SDN:R14::T500278", + "skos:altLabel": "278.5", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDAverageError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T500278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is an error on CTD average command. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000299/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000299/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000299/2/" + }, + "dce:identifier": "SDN:R14::T000299", + "pav:version": "2", + "skos:notation": "SDN:R14::T000299", + "skos:altLabel": "299", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_OptodeStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000299", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the Optode (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300271/2/" + }, + "dce:identifier": "SDN:R14::T300271", + "pav:version": "2", + "skos:notation": "SDN:R14::T300271", + "skos:altLabel": "271.3", + "dc:date": "2025-12-11 11:04:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterNegativeAcknowledgeRecieved_bit" + }, + "dc:identifier": "SDN:R14::T300271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether an Argos transmitter negative acknowledgement was received. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900006/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900006/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900006/2/" + }, + "dce:identifier": "SDN:R14::T900006", + "pav:version": "2", + "skos:notation": "SDN:R14::T900006", + "skos:altLabel": "900006", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_1stSettlingBeforePark_dbar" + }, + "dc:identifier": "SDN:R14::T900006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure when float was settled at the parking depth for the 1st time. MC189 - buoyancy action. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000372/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000372/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000372/2/" + }, + "dce:identifier": "SDN:R14::T000372", + "pav:version": "2", + "skos:notation": "SDN:R14::T000372", + "skos:altLabel": "372", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_CTDProfileReductionSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000372", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD profile reduction Shallow zone slices thickness - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000288/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000288/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000288/2/" + }, + "dce:identifier": "SDN:R14::T000288", + "pav:version": "2", + "skos:notation": "SDN:R14::T000288", + "skos:altLabel": "288", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FloatStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000288", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the Float (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000437/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000437/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000437/2/" + }, + "dce:identifier": "SDN:R14::T000437", + "pav:version": "2", + "skos:notation": "SDN:R14::T000437", + "skos:altLabel": "437", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMPERATURE_InternalVacuumAirBladderFull_degC" + }, + "dc:identifier": "SDN:R14::T000437", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal tube temperature at surface after airbladder fill. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000521/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000521/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000521/2/" + }, + "dce:identifier": "SDN:R14::T000521", + "pav:version": "2", + "skos:notation": "SDN:R14::T000521", + "skos:altLabel": "521", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryCPUStartProfile_volts" + }, + "dc:identifier": "SDN:R14::T000521", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CPU battery voltage at profile depth. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000098/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000098/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000098/2/" + }, + "dce:identifier": "SDN:R14::T000098", + "pav:version": "2", + "skos:notation": "SDN:R14::T000098", + "skos:altLabel": "98", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentArgosMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000098", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Argos messages with descent data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000267/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000267/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000267/2/" + }, + "dce:identifier": "SDN:R14::T000267", + "pav:version": "2", + "skos:notation": "SDN:R14::T000267", + "skos:altLabel": "267", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_PressureOffsetAfterReset_bit" + }, + "dc:identifier": "SDN:R14::T000267", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the status of the pressure offset after reset. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000247/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000247/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000247/2/" + }, + "dce:identifier": "SDN:R14::T000247", + "pav:version": "2", + "skos:notation": "SDN:R14::T000247", + "skos:altLabel": "247", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentPTMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000247", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of descent PT messages. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000531/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000531/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000531/2/" + }, + "dce:identifier": "SDN:R14::T000531", + "pav:version": "2", + "skos:notation": "SDN:R14::T000531", + "skos:altLabel": "531", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryNoLoad_volts" + }, + "dc:identifier": "SDN:R14::T000531", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured with no load. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000545/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000545/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000545/2/" + }, + "dce:identifier": "SDN:R14::T000545", + "pav:version": "2", + "skos:notation": "SDN:R14::T000545", + "skos:altLabel": "545", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGEDROP_BatteryStartProfile_volts" + }, + "dc:identifier": "SDN:R14::T000545", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage drop, pump on at max pressure, starting profile (tenths of volts). Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000480/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000480/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000480/2/" + }, + "dce:identifier": "SDN:R14::T000480", + "pav:version": "2", + "skos:notation": "SDN:R14::T000480", + "skos:altLabel": "480", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SinceAscentEnd_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000480", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_SinceAscentEnd. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000569/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000569/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000569/2/" + }, + "dce:identifier": "SDN:R14::T000569", + "pav:version": "2", + "skos:notation": "SDN:R14::T000569", + "skos:altLabel": "569", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SUNAAPFSampleCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000569", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Incremented for each sample the SUNA measures (it can be used to track frames, and recognize if frames were missed). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000235/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000235/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000235/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Park measurements - Internal counter. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000235", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamplesInternal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "235", + "skos:notation": "SDN:R14::T000235", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000235", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000235/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000513/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000513/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000513/2/" + }, + "dce:identifier": "SDN:R14::T000513", + "pav:version": "2", + "skos:notation": "SDN:R14::T000513", + "skos:altLabel": "513", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Aux_volts" + }, + "dc:identifier": "SDN:R14::T000513", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Auxiliary voltage. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000170/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000170/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000170/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Shallow internal counter for ascending profile measurements of . Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000170", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesShallowInternalCounter_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "170", + "skos:notation": "SDN:R14::T000170", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000170", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000170/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000067/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000067/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000067/2/" + }, + "dce:identifier": "SDN:R14::T000067", + "pav:version": "2", + "skos:notation": "SDN:R14::T000067", + "skos:altLabel": "67", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_Satellite_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000067", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time derived from satellite communications. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300248/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300248/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300248/2/" + }, + "dce:identifier": "SDN:R14::T300248", + "pav:version": "2", + "skos:notation": "SDN:R14::T300248", + "skos:altLabel": "248.3", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkDriftEntriesInParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T300248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Drift at park during multiparking mode # pressure: number of entries in margin around park # pressure target. Specifically, it indicates how many times the float enters the band of pressure surrounding the target park # pressure (generally +/- 30db). This parameter is needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[COUNT];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100126/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100126/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100126/2/" + }, + "dce:identifier": "SDN:R14::T100126", + "pav:version": "2", + "skos:notation": "SDN:R14::T100126", + "skos:altLabel": "126.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT" + }, + "dc:identifier": "SDN:R14::T100126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of solenoid valve actions at the surface until the crossing of the GAP threshold. Number computed by the float from previous cycles behaviour. This float version provides 2 counts for surface valve actions performed before the GAP threshold (threshold used to detect float descent start, see T000126, 126). This first one (NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT) is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). It needs to be combined with the second (NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT, see T200126, 126.2) to get the parameter defined in T000126, 126: NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT = NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000537/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000537/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000537/2/" + }, + "dce:identifier": "SDN:R14::T000537", + "pav:version": "2", + "skos:notation": "SDN:R14::T000537", + "skos:altLabel": "537", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryPumpLastValueAsAscends_volts" + }, + "dc:identifier": "SDN:R14::T000537", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pump battery voltage, on last reading as ascending (IDG Var=Vpmp). Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000472/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000472/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000472/2/" + }, + "dce:identifier": "SDN:R14::T000472", + "pav:version": "2", + "skos:notation": "SDN:R14::T000472", + "skos:altLabel": "472", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpActionsInOutAtDepth_COUNT" + }, + "dc:identifier": "SDN:R14::T000472", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total duration of pump actions (in and out both reported) at depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000579/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000579/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000579/2/" + }, + "dce:identifier": "SDN:R14::T000579", + "pav:version": "2", + "skos:notation": "SDN:R14::T000579", + "skos:altLabel": "579", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_InternalCycle_NUMBER" + }, + "dc:identifier": "SDN:R14::T000579", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NUMBER_InternalCycle. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000203/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000203/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000203/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on immersion profile. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000203", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnPark_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "203", + "skos:notation": "SDN:R14::T000203", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000203", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000203/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000310/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000310/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000310/2/" + }, + "dce:identifier": "SDN:R14::T000310", + "pav:version": "2", + "skos:notation": "SDN:R14::T000310", + "skos:altLabel": "310", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_RemoteControlMessageOK_COUNT" + }, + "dc:identifier": "SDN:R14::T000310", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of messages sent by the remote control and received by the iridium float. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000496/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000496/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000496/2/" + }, + "dce:identifier": "SDN:R14::T000496", + "pav:version": "2", + "skos:notation": "SDN:R14::T000496", + "skos:altLabel": "496", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryNoLoad_mA" + }, + "dc:identifier": "SDN:R14::T000496", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CURRENT_BatteryNoLoad. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100554/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100554/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100554/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100554", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "554.1", + "skos:notation": "SDN:R14::T100554", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100554", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100554/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000227/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000227/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000227/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct optique frames emitted on ascending profile - Profile 1. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000227", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnAscendingProfile1_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "227", + "skos:notation": "SDN:R14::T000227", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000227", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000227/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300068/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300068/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300068/2/" + }, + "dce:identifier": "SDN:R14::T300068", + "pav:version": "2", + "skos:notation": "SDN:R14::T300068", + "skos:altLabel": "68.3", + "dc:date": "2025-12-11 11:04:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_LastIridiumGPSFix_DD" + }, + "dc:identifier": "SDN:R14::T300068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Day of month of last GPS fix/Time of Last GPS Fix. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000505/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000505/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000505/2/" + }, + "dce:identifier": "SDN:R14::T000505", + "pav:version": "2", + "skos:notation": "SDN:R14::T000505", + "skos:altLabel": "505", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatterySBEParkEnd_mA" + }, + "dc:identifier": "SDN:R14::T000505", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current measured when the SBE41 sampled at the end of park. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000162/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000162/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000162/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Deep total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000162", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesDeepTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "162", + "skos:notation": "SDN:R14::T000162", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000162", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000162/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300557/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300557/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300557/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the surface to parking depth phase. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T300557", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToParkSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:32.0", + "skos:altLabel": "557.3", + "skos:notation": "SDN:R14::T300557", + "pav:version": "3", + "dce:identifier": "SDN:R14::T300557", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300557/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:32.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000440/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000440/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000440/2/" + }, + "dce:identifier": "SDN:R14::T000440", + "pav:version": "2", + "skos:notation": "SDN:R14::T000440", + "skos:altLabel": "440", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "STATUS_LimitSwitch_hex" + }, + "dc:identifier": "SDN:R14::T000440", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "STATUS_LimitSwitch. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000320/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000320/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000320/2/" + }, + "dce:identifier": "SDN:R14::T000320", + "pav:version": "2", + "skos:notation": "SDN:R14::T000320", + "skos:altLabel": "320", + "dc:date": "2025-12-11 11:04:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PTException_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000320", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : PT exception (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000199/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000199/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000199/2/" + }, + "dce:identifier": "SDN:R14::T000199", + "pav:version": "2", + "skos:notation": "SDN:R14::T000199", + "skos:altLabel": "199", + "dc:date": "2025-12-11 11:04:36.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToProfileEntriesInGap_COUNT" + }, + "dc:identifier": "SDN:R14::T000199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent to profile float control - number of entries in gap order. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000529/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000529/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000529/2/" + }, + "dce:identifier": "SDN:R14::T000529", + "pav:version": "2", + "skos:notation": "SDN:R14::T000529", + "skos:altLabel": "529", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryOptics_volts" + }, + "dc:identifier": "SDN:R14::T000529", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of the optical sensor. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900022/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900022/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900022/2/" + }, + "dce:identifier": "SDN:R14::T900022", + "pav:version": "2", + "skos:notation": "SDN:R14::T900022", + "skos:altLabel": "900022", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MinimumDuringProfileDrift_dbar" + }, + "dc:identifier": "SDN:R14::T900022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum pressure during drifting at profile depth. MC minus 3. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000464/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000464/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000464/2/" + }, + "dce:identifier": "SDN:R14::T000464", + "pav:version": "2", + "skos:notation": "SDN:R14::T000464", + "skos:altLabel": "464", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_MotorDriveDuringDescent_minutes" + }, + "dc:identifier": "SDN:R14::T000464", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_MotorDriveDuringDescent. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000293/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000293/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000293/2/" + }, + "dce:identifier": "SDN:R14::T000293", + "pav:version": "2", + "skos:notation": "SDN:R14::T000293", + "skos:altLabel": "293", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_InvalidSequencePoint_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000293", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether an invalid sequence point has been detected (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000130/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000130/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000130/2/" + }, + "dce:identifier": "SDN:R14::T000130", + "pav:version": "2", + "skos:notation": "SDN:R14::T000130", + "skos:altLabel": "130", + "dc:date": "2025-12-11 11:05:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorActionsDuringDescentParkToProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000130", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of motor actions between parking depth and deepest position. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000358/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000358/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000358/2/" + }, + "dce:identifier": "SDN:R14::T000358", + "pav:version": "2", + "skos:notation": "SDN:R14::T000358", + "skos:altLabel": "358", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonTarget_NUMBER" + }, + "dc:identifier": "SDN:R14::T000358", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "POSITION_PistonTarget. Template_Values:{unit:[COUNT, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000432/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000432/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000432/2/" + }, + "dce:identifier": "SDN:R14::T000432", + "pav:version": "2", + "skos:notation": "SDN:R14::T000432", + "skos:altLabel": "432", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumEndXmit_inHg" + }, + "dc:identifier": "SDN:R14::T000432", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal pressure at the end of the transmission period. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000452/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000452/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000452/2/" + }, + "dce:identifier": "SDN:R14::T000452", + "pav:version": "2", + "skos:notation": "SDN:R14::T000452", + "skos:altLabel": "452", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_DescentTo50Decibars_seconds" + }, + "dc:identifier": "SDN:R14::T000452", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_DescentTo50Decibars (IDG Var=FallT). Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000368/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000368/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000368/2/" + }, + "dce:identifier": "SDN:R14::T000368", + "pav:version": "2", + "skos:notation": "SDN:R14::T000368", + "skos:altLabel": "368", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscendingProfileReductionSeparation_dbar" + }, + "dc:identifier": "SDN:R14::T000368", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction Surface / Bottom pressure threshold - PRSEP. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000517/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000517/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000517/2/" + }, + "dce:identifier": "SDN:R14::T000517", + "pav:version": "2", + "skos:notation": "SDN:R14::T000517", + "skos:altLabel": "517", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery12V_volts" + }, + "dc:identifier": "SDN:R14::T000517", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 12V system. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100288/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100288/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100288/2/" + }, + "dce:identifier": "SDN:R14::T100288", + "pav:version": "2", + "skos:notation": "SDN:R14::T100288", + "skos:altLabel": "288.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_InitialMemoryIntegrityCheck_LOGICAL" + }, + "dc:identifier": "SDN:R14::T100288", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Software check on the float memory contents (0 if problems were found and 1 if no problem occurred). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000456/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000456/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000456/2/" + }, + "dce:identifier": "SDN:R14::T000456", + "pav:version": "2", + "skos:notation": "SDN:R14::T000456", + "skos:altLabel": "456", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_DOXYSampleFrequencyDuringPark_hours" + }, + "dc:identifier": "SDN:R14::T000456", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY drift acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000015/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000015/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000015/2/" + }, + "dce:identifier": "SDN:R14::T000015", + "pav:version": "2", + "skos:notation": "SDN:R14::T000015", + "skos:altLabel": "15", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_MixedLayerMedian_degC" + }, + "dc:identifier": "SDN:R14::T000015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median of the mixed layer samples taken. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000391/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000391/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000391/2/" + }, + "dce:identifier": "SDN:R14::T000391", + "pav:version": "2", + "skos:notation": "SDN:R14::T000391", + "skos:altLabel": "391", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MaximumDepthBinWithValidData_dbar" + }, + "dc:identifier": "SDN:R14::T000391", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum depth bin with valid data according to the float. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000178/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000178/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000178/2/" + }, + "dce:identifier": "SDN:R14::T000178", + "pav:version": "2", + "skos:notation": "SDN:R14::T000178", + "skos:altLabel": "178", + "dc:date": "2025-12-11 11:04:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingProfileReductionLowerPart_COUNT" + }, + "dc:identifier": "SDN:R14::T000178", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of slices in deep zone for descending profile reduction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000122/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000122/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000122/2/" + }, + "dce:identifier": "SDN:R14::T000122", + "pav:version": "2", + "skos:notation": "SDN:R14::T000122", + "skos:altLabel": "122", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RepositionsAtProfileDepth_COUNT" + }, + "dc:identifier": "SDN:R14::T000122", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "At profile pressure stand-by, number of times the float readjusts its buoyancy - using either the pump or EV. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000146/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000146/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000146/2/" + }, + "dce:identifier": "SDN:R14::T000146", + "pav:version": "2", + "skos:notation": "SDN:R14::T000146", + "skos:altLabel": "146", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RangeOverflowDuringAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T000146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of range overflows in measurements during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000272/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000272/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000272/2/" + }, + "dce:identifier": "SDN:R14::T000272", + "pav:version": "2", + "skos:notation": "SDN:R14::T000272", + "skos:altLabel": "272", + "dc:date": "2025-12-11 11:04:38.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_8BitProfileCounterOverflowed_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000272", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The 8-bit profile counter overflowed (1/Yes or 0/No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900029/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900029/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900029/2/" + }, + "dce:identifier": "SDN:R14::T900029", + "pav:version": "2", + "skos:notation": "SDN:R14::T900029", + "skos:altLabel": "900029", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_WhenMinimumTemperatureAtPark_dbar" + }, + "dc:identifier": "SDN:R14::T900029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure where the minimum temperature was measured during park phase. MC minus 13 or 287. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000421/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000421/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000421/2/" + }, + "dce:identifier": "SDN:R14::T000421", + "pav:version": "2", + "skos:notation": "SDN:R14::T000421", + "skos:altLabel": "421", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAirBladderEmpty_inHg" + }, + "dc:identifier": "SDN:R14::T000421", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal Vacuum when air (sleeve) bladder is empty (IDG Var=VACb). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000081/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000081/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000081/2/" + }, + "dce:identifier": "SDN:R14::T000081", + "pav:version": "2", + "skos:notation": "SDN:R14::T000081", + "skos:altLabel": "81", + "dc:date": "2025-12-11 11:05:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_LastReset_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T000081", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Clock time of the last reset of the float. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000337/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000337/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000337/2/" + }, + "dce:identifier": "SDN:R14::T000337", + "pav:version": "2", + "skos:notation": "SDN:R14::T000337", + "skos:altLabel": "337", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusStartTransmission_NUMBER" + }, + "dc:identifier": "SDN:R14::T000337", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the start date-time of transmission (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000082/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000082/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000082/2/" + }, + "dce:identifier": "SDN:R14::T000082", + "pav:version": "2", + "skos:notation": "SDN:R14::T000082", + "skos:altLabel": "82", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_DateOfEmergencyAscent_DDMMYYYY" + }, + "dc:identifier": "SDN:R14::T000082", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Date of emergency ascent. Template_Values:{unit:[DDMMYYYY, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000448/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000448/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000448/2/" + }, + "dce:identifier": "SDN:R14::T000448", + "pav:version": "2", + "skos:notation": "SDN:R14::T000448", + "skos:altLabel": "448", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_BuoyancyPumpOn_seconds" + }, + "dc:identifier": "SDN:R14::T000448", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_BuoyancyPumpOn. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100558/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100558/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100558/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the drift at park depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100558", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "558.1", + "skos:notation": "SDN:R14::T100558", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100558", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100558/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T110127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T110127/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T110127/2/" + }, + "dce:identifier": "SDN:R14::T110127", + "pav:version": "2", + "skos:notation": "SDN:R14::T110127", + "skos:altLabel": "127.11", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsForFirstGroundingDetection_COUNT" + }, + "dc:identifier": "SDN:R14::T110127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions done at constant pressure to set the grounded flag for the first grounding event. Thus NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT = NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000147/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000147/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000147/2/" + }, + "dce:identifier": "SDN:R14::T000147", + "pav:version": "2", + "skos:notation": "SDN:R14::T000147", + "skos:altLabel": "147", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RangeOverflowDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of range overflows in measurements during parking. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000431/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000431/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000431/2/" + }, + "dce:identifier": "SDN:R14::T000431", + "pav:version": "2", + "skos:notation": "SDN:R14::T000431", + "skos:altLabel": "431", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumDuringPark_inHg" + }, + "dc:identifier": "SDN:R14::T000431", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Park vacuum. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100493/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100493/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100493/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Battery current measured by the sensors themselves. Template_Values:{unit:[COUNT, amps, mA];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100493", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_Battery_mA" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "493.1", + "skos:notation": "SDN:R14::T100493", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100493", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100493/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000114/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000114/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000114/2/" + }, + "dce:identifier": "SDN:R14::T000114", + "pav:version": "2", + "skos:notation": "SDN:R14::T000114", + "skos:altLabel": "114", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000114", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of STP spot samples collected during the profile, not including the park-level spot sample. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000138/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000138/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000138/2/" + }, + "dce:identifier": "SDN:R14::T000138", + "pav:version": "2", + "skos:notation": "SDN:R14::T000138", + "skos:altLabel": "138", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples5thBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100248/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100248/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100248/2/" + }, + "dce:identifier": "SDN:R14::T100248", + "pav:version": "2", + "skos:notation": "SDN:R14::T100248", + "skos:altLabel": "248.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkDriftEntriesInParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T100248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Drift at park pressure: number of entries in margin around park pressure target. Specifically, it indicates how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000073/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000073/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000073/2/" + }, + "dce:identifier": "SDN:R14::T000073", + "pav:version": "2", + "skos:notation": "SDN:R14::T000073", + "skos:altLabel": "73", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EOLStart_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T000073", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Clock time when End of Life mode starts. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000351/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000351/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000351/2/" + }, + "dce:identifier": "SDN:R14::T000351", + "pav:version": "2", + "skos:notation": "SDN:R14::T000351", + "skos:altLabel": "351", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000351", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston position at park pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100461/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100461/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:47.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100461/2/" + }, + "dce:identifier": "SDN:R14::T100461", + "pav:version": "2", + "skos:notation": "SDN:R14::T100461", + "skos:altLabel": "461.1", + "dc:date": "2025-12-11 11:04:47.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PreviousIridiumSession_seconds" + }, + "dc:identifier": "SDN:R14::T100461", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the previous iridium session. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000051/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000051/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000051/2/" + }, + "dce:identifier": "SDN:R14::T000051", + "pav:version": "2", + "skos:notation": "SDN:R14::T000051", + "skos:altLabel": "51", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EndDescentToPark_hours" + }, + "dc:identifier": "SDN:R14::T000051", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when park pressure is reached. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200571/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200571/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200571/2/" + }, + "dce:identifier": "SDN:R14::T200571", + "pav:version": "2", + "skos:notation": "SDN:R14::T200571", + "skos:altLabel": "571.2", + "dc:date": "2025-12-11 11:04:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_OptodeAcquisitionsFailed_COUNT" + }, + "dc:identifier": "SDN:R14::T200571", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of failed acquisitions of the DO sensor. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000469/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000469/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000469/2/" + }, + "dce:identifier": "SDN:R14::T000469", + "pav:version": "2", + "skos:notation": "SDN:R14::T000469", + "skos:altLabel": "469", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PistonRanDuringFirstSeek_seconds" + }, + "dc:identifier": "SDN:R14::T000469", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration that piston ran during first seek (park depth, IDG Var=TSK). Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000097/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000097/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000097/2/" + }, + "dce:identifier": "SDN:R14::T000097", + "pav:version": "2", + "skos:notation": "SDN:R14::T000097", + "skos:altLabel": "97", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentArgosMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000097", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Argos messages with ascent data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000116/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000116/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000116/2/" + }, + "dce:identifier": "SDN:R14::T000116", + "pav:version": "2", + "skos:notation": "SDN:R14::T000116", + "skos:altLabel": "116", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringAscentToSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000116", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions between start and end of ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900008/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900008/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900008/2/" + }, + "dce:identifier": "SDN:R14::T900008", + "pav:version": "2", + "skos:notation": "SDN:R14::T900008", + "skos:altLabel": "900008", + "dc:date": "2025-12-11 11:04:54.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_3rdSettlingBeforePark_dbar" + }, + "dc:identifier": "SDN:R14::T900008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure when float was settled at the parking depth for the 3rd time. MC189 - buoyancy action. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000400/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000400/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000400/2/" + }, + "dce:identifier": "SDN:R14::T000400", + "pav:version": "2", + "skos:notation": "SDN:R14::T000400", + "skos:altLabel": "400", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_PlusFourseconds_dbar" + }, + "dc:identifier": "SDN:R14::T000400", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRES measured 4 seconds after PRES_AscentStart_dbar. This can also be placed into the traj files with MC-10 depending on the timing event (often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100273/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100273/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100273/2/" + }, + "dce:identifier": "SDN:R14::T100273", + "pav:version": "2", + "skos:notation": "SDN:R14::T100273", + "skos:altLabel": "273.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_AntennaStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T100273", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the antenna (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000106/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000106/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000106/2/" + }, + "dce:identifier": "SDN:R14::T000106", + "pav:version": "2", + "skos:notation": "SDN:R14::T000106", + "skos:altLabel": "106", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PRESIridiumMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000106", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium messages containing PRES data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000279/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000279/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000279/2/" + }, + "dce:identifier": "SDN:R14::T000279", + "pav:version": "2", + "skos:notation": "SDN:R14::T000279", + "skos:altLabel": "279", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_DataEntryError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000279", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data entry error (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000563/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000563/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000563/2/" + }, + "dce:identifier": "SDN:R14::T000563", + "pav:version": "2", + "skos:notation": "SDN:R14::T000563", + "skos:altLabel": "563", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingCTDSamplesInternalCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000563", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total number of slices of the descending profile after reduction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000041/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000041/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000041/2/" + }, + "dce:identifier": "SDN:R14::T000041", + "pav:version": "2", + "skos:notation": "SDN:R14::T000041", + "skos:altLabel": "41", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeReset_1cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile. This is a relative offset. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required but this could be applied in DMQC. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000210/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000210/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000210/2/" + }, + "dce:identifier": "SDN:R14::T000210", + "pav:version": "2", + "skos:notation": "SDN:R14::T000210", + "skos:altLabel": "210", + "dc:date": "2025-12-11 11:04:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FloatPTOrPFramesOk_COUNT" + }, + "dc:identifier": "SDN:R14::T000210", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - PT or PTC OK. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000399/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000399/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000399/2/" + }, + "dce:identifier": "SDN:R14::T000399", + "pav:version": "2", + "skos:notation": "SDN:R14::T000399", + "skos:altLabel": "399", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_Now_dbar" + }, + "dc:identifier": "SDN:R14::T000399", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Test message data reporting pressure at the surface during drift - cycle 0. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000065/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000065/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000065/2/" + }, + "dce:identifier": "SDN:R14::T000065", + "pav:version": "2", + "skos:notation": "SDN:R14::T000065", + "skos:altLabel": "65", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_InitialValveActionDescentToPark_HHMM" + }, + "dc:identifier": "SDN:R14::T000065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time in the day when the float first activated the valve during its descent. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200407/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200407/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200407/2/" + }, + "dce:identifier": "SDN:R14::T200407", + "pav:version": "2", + "skos:notation": "SDN:R14::T200407", + "skos:altLabel": "407.2", + "dc:date": "2025-12-11 11:04:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentTimeOutExpired_dbar" + }, + "dc:identifier": "SDN:R14::T200407", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when descending time out. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000099/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000099/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000099/2/" + }, + "dce:identifier": "SDN:R14::T000099", + "pav:version": "2", + "skos:notation": "SDN:R14::T000099", + "skos:altLabel": "99", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkArgosMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000099", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Argos messages with park data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000367/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000367/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000367/2/" + }, + "dce:identifier": "SDN:R14::T000367", + "pav:version": "2", + "skos:notation": "SDN:R14::T000367", + "skos:altLabel": "367", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscendingProfileReductionETS_dbar" + }, + "dc:identifier": "SDN:R14::T000367", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000248/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000248/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000248/2/" + }, + "dce:identifier": "SDN:R14::T000248", + "pav:version": "2", + "skos:notation": "SDN:R14::T000248", + "skos:altLabel": "248", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkPTMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of drift PT messages. Template_Values:{unit:[COUNT, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000030/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000030/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000030/2/" + }, + "dce:identifier": "SDN:R14::T000030", + "pav:version": "2", + "skos:notation": "SDN:R14::T000030", + "skos:altLabel": "30", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetNotTruncated_dbar" + }, + "dc:identifier": "SDN:R14::T000030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset. This IS NOT used to correct pressure on board. Not autocorrected. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000033/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000033/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000033/2/" + }, + "dce:identifier": "SDN:R14::T000033", + "pav:version": "2", + "skos:notation": "SDN:R14::T000033", + "skos:altLabel": "33", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetCorrectedNotReset_1dbarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent but data is corrected on board the float. This is a cumulative offset but no further correction required. Autocorrected. Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000342/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000342/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000342/2/" + }, + "dce:identifier": "SDN:R14::T000342", + "pav:version": "2", + "skos:notation": "SDN:R14::T000342", + "skos:altLabel": "342", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_UpDown_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000342", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating whether the float is in Up time (0) or Down time (1). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900033/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900033/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900033/2/" + }, + "dce:identifier": "SDN:R14::T900033", + "pav:version": "2", + "skos:notation": "SDN:R14::T900033", + "skos:altLabel": "900033", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_ParkMean_degC" + }, + "dc:identifier": "SDN:R14::T900033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Mean temperature during park phase. MC minus 4 or 296. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000258/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000258/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000258/2/" + }, + "dce:identifier": "SDN:R14::T000258", + "pav:version": "2", + "skos:notation": "SDN:R14::T000258", + "skos:altLabel": "258", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TEMPSampleErrorDeepZoneDuringDescending_COUNT" + }, + "dc:identifier": "SDN:R14::T000258", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Error of temperature measurements in deep zone during descent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000057/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000057/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000057/2/" + }, + "dce:identifier": "SDN:R14::T000057", + "pav:version": "2", + "skos:notation": "SDN:R14::T000057", + "skos:altLabel": "57", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EndAscentToSurfaceEstimated_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Theoretical time of end of ascent to surface. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000407/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000407/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000407/2/" + }, + "dce:identifier": "SDN:R14::T000407", + "pav:version": "2", + "skos:notation": "SDN:R14::T000407", + "skos:altLabel": "407", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ShallowMiddleBoundaryAscent_dbar" + }, + "dc:identifier": "SDN:R14::T000407", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Boundary pressure between shallow/middle areas at ascent. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000335/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000335/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000335/2/" + }, + "dce:identifier": "SDN:R14::T000335", + "pav:version": "2", + "skos:notation": "SDN:R14::T000335", + "skos:altLabel": "335", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusHistoryQCPerformed_hex" + }, + "dc:identifier": "SDN:R14::T000335", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag History performed (from profile file). Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000270/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000270/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000270/2/" + }, + "dce:identifier": "SDN:R14::T000270", + "pav:version": "2", + "skos:notation": "SDN:R14::T000270", + "skos:altLabel": "270", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_BatteryPumpVoltage_bit" + }, + "dc:identifier": "SDN:R14::T000270", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the status of the pump battery voltage. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000352/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000352/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000352/2/" + }, + "dce:identifier": "SDN:R14::T000352", + "pav:version": "2", + "skos:notation": "SDN:R14::T000352", + "skos:altLabel": "352", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonParkEnd_COUNT" + }, + "dc:identifier": "SDN:R14::T000352", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston position at end of park period before descent to profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000501/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000501/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000501/2/" + }, + "dce:identifier": "SDN:R14::T000501", + "pav:version": "2", + "skos:notation": "SDN:R14::T000501", + "skos:altLabel": "501", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryPistonPumpOn_mA" + }, + "dc:identifier": "SDN:R14::T000501", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery Current during pumping to ascend. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000417/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000417/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000417/2/" + }, + "dce:identifier": "SDN:R14::T000417", + "pav:version": "2", + "skos:notation": "SDN:R14::T000417", + "skos:altLabel": "417", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_AirBladder_COUNT" + }, + "dc:identifier": "SDN:R14::T000417", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRESSURE_AirBladder. If measured in COUNT, it should be close to 148. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900001/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900001/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900001/2/" + }, + "dce:identifier": "SDN:R14::T900001", + "pav:version": "2", + "skos:notation": "SDN:R14::T900001", + "skos:altLabel": "900001", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_1stSettlingBeforePark_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T900001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Time when float was settled at the parking depth for the 1st time. MC189 - buoyancy action. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000303/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000303/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000303/2/" + }, + "dce:identifier": "SDN:R14::T000303", + "pav:version": "2", + "skos:notation": "SDN:R14::T000303", + "skos:altLabel": "303", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_PressureActivationTestMessage_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000303", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Current argos message is a pressure-activation test message (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000311/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000311/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000311/2/" + }, + "dce:identifier": "SDN:R14::T000311", + "pav:version": "2", + "skos:notation": "SDN:R14::T000311", + "skos:altLabel": "311", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_RTCStatus_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000311", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Real time clock status (1= OK, 0=not OK). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300290/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300290/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300290/2/" + }, + "dce:identifier": "SDN:R14::T300290", + "pav:version": "2", + "skos:notation": "SDN:R14::T300290", + "skos:altLabel": "290.3", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDErrorCyclePhase_NUMBER" + }, + "dc:identifier": "SDN:R14::T300290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Phase of the float life or cycle when the CTD error occurred. See the manual for phase definition - this will vary with float type. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000049/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000049/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000049/2/" + }, + "dce:identifier": "SDN:R14::T000049", + "pav:version": "2", + "skos:notation": "SDN:R14::T000049", + "skos:altLabel": "49", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EndAscentToSurface_hours" + }, + "dc:identifier": "SDN:R14::T000049", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent end time, just before Argos transmission. Units can vary and the raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_ASCENT_END and JULD with MC=600. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000327/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000327/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000327/2/" + }, + "dce:identifier": "SDN:R14::T000327", + "pav:version": "2", + "skos:notation": "SDN:R14::T000327", + "skos:altLabel": "327", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ResponseToPTSMmeasurementFailedThePedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000327", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Response to PTS measurement failed the pedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900013/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900013/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900013/2/" + }, + "dce:identifier": "SDN:R14::T900013", + "pav:version": "2", + "skos:notation": "SDN:R14::T900013", + "skos:altLabel": "900013", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentToParkMinPressure_dbar" + }, + "dc:identifier": "SDN:R14::T900013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum pressure during descent to park. MC minus 3. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000262/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000262/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000262/2/" + }, + "dce:identifier": "SDN:R14::T000262", + "pav:version": "2", + "skos:notation": "SDN:R14::T000262", + "skos:altLabel": "262", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SensorAnomaly_COUNT" + }, + "dc:identifier": "SDN:R14::T000262", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Clarification needed. Number of anomalous sensor readings. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000037/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000037/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000037/2/" + }, + "dce:identifier": "SDN:R14::T000037", + "pav:version": "2", + "skos:notation": "SDN:R14::T000037", + "skos:altLabel": "37", + "dc:date": "2025-12-11 11:05:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeReset_dbar" + }, + "dc:identifier": "SDN:R14::T000037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure measurement which is then used to correct pressure on board the float. This is a relative offset and no further correction is required. Autocorrecting so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000321/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000321/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000321/2/" + }, + "dce:identifier": "SDN:R14::T000321", + "pav:version": "2", + "skos:notation": "SDN:R14::T000321", + "skos:altLabel": "321", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PTSException_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000321", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : PTS exception (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000540/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000540/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000540/2/" + }, + "dce:identifier": "SDN:R14::T000540", + "pav:version": "2", + "skos:notation": "SDN:R14::T000540", + "skos:altLabel": "540", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatterySBEAscent_volts" + }, + "dc:identifier": "SDN:R14::T000540", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Voltage measured when ctd switched on sampling during profile ascend phase. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000484/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000484/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000484/2/" + }, + "dce:identifier": "SDN:R14::T000484", + "pav:version": "2", + "skos:notation": "SDN:R14::T000484", + "skos:altLabel": "484", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_Transmission_minutes" + }, + "dc:identifier": "SDN:R14::T000484", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission time duration. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000286/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000286/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000286/2/" + }, + "dce:identifier": "SDN:R14::T000286", + "pav:version": "2", + "skos:notation": "SDN:R14::T000286", + "skos:altLabel": "286", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuResponseFailedRegexMatch_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000286", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu : Response failed regex match (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000131/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000131/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000131/2/" + }, + "dce:identifier": "SDN:R14::T000131", + "pav:version": "2", + "skos:notation": "SDN:R14::T000131", + "skos:altLabel": "131", + "dc:date": "2025-12-11 11:05:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorActionsDuringDescentToProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000131", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of motor actions between start and end of descent from park depth to profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900023/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900023/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:55.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900023/2/" + }, + "dce:identifier": "SDN:R14::T900023", + "pav:version": "2", + "skos:notation": "SDN:R14::T900023", + "skos:altLabel": "900023", + "dc:date": "2025-12-11 11:04:55.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ParkGrounded_dbar" + }, + "dc:identifier": "SDN:R14::T900023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure during park phase when float is grounded. MC901 references grounding information. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000549/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000549/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000549/2/" + }, + "dce:identifier": "SDN:R14::T000549", + "pav:version": "2", + "skos:notation": "SDN:R14::T000549", + "skos:altLabel": "549", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_SUNAAPFSupply_mA" + }, + "dc:identifier": "SDN:R14::T000549", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SUNA APF frame supply current. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100127/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100127/2/" + }, + "dce:identifier": "SDN:R14::T100127", + "pav:version": "2", + "skos:notation": "SDN:R14::T100127", + "skos:altLabel": "127.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsForGroundingDetection_COUNT" + }, + "dc:identifier": "SDN:R14::T100127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions done at constant pressure to set the grounded flag. The second one: NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000294/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000294/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000294/2/" + }, + "dce:identifier": "SDN:R14::T000294", + "pav:version": "2", + "skos:notation": "SDN:R14::T000294", + "skos:altLabel": "294", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_NegativeSbeNumber_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000294", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate a negative SBE number (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000230/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000230/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000230/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile optique measurements - Internal counter - Profile 1. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000230", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileMeasurementsProfile1_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "230", + "skos:notation": "SDN:R14::T000230", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000230", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000230/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900017/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900017/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900017/2/" + }, + "dce:identifier": "SDN:R14::T900017", + "pav:version": "2", + "skos:notation": "SDN:R14::T900017", + "skos:altLabel": "900017", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_InitialStabilizationDuringDescentToPark_dbar" + }, + "dc:identifier": "SDN:R14::T900017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure when first stabilization appears during descent to park. MC 150. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000359/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000359/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000359/2/" + }, + "dce:identifier": "SDN:R14::T000359", + "pav:version": "2", + "skos:notation": "SDN:R14::T000359", + "skos:altLabel": "359", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonPosition1_COUNT" + }, + "dc:identifier": "SDN:R14::T000359", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Apex ascent profile piston position 1. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000319/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000319/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:42.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000319/2/" + }, + "dce:identifier": "SDN:R14::T000319", + "pav:version": "2", + "skos:notation": "SDN:R14::T000319", + "skos:altLabel": "319", + "dc:date": "2025-12-11 11:04:42.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PNoResponse_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000319", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : P No response (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100418/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100418/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100418/2/" + }, + "dce:identifier": "SDN:R14::T100418", + "pav:version": "2", + "skos:notation": "SDN:R14::T100418", + "skos:altLabel": "418.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DuringMaxBuoyancyAndGPSAcquisition_dbar" + }, + "dc:identifier": "SDN:R14::T100418", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when buoyancy is max during getting GPS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000254/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000254/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000254/2/" + }, + "dce:identifier": "SDN:R14::T000254", + "pav:version": "2", + "skos:notation": "SDN:R14::T000254", + "skos:altLabel": "254", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_CTDAcquisitionsFailed_COUNT" + }, + "dc:identifier": "SDN:R14::T000254", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Failed CTD Acquisitions. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100364/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100364/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100364/2/" + }, + "dce:identifier": "SDN:R14::T100364", + "pav:version": "2", + "skos:notation": "SDN:R14::T100364", + "skos:altLabel": "364.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MaxDifferencePvsPTorPTSSamples_dbar" + }, + "dc:identifier": "SDN:R14::T100364", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The maximum (in absolute value) divergence between pressures from closely-spaced (i.e., a few seconds apart in time) P-only sample requests and PT or PTS sample requests. The divergence is measured as the P-only sample minus the pressure from the PTS (or PT) sample. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000532/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000532/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000532/2/" + }, + "dce:identifier": "SDN:R14::T000532", + "pav:version": "2", + "skos:notation": "SDN:R14::T000532", + "skos:altLabel": "532", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryParkEnd_volts" + }, + "dc:identifier": "SDN:R14::T000532", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured at end of park with no load. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000453/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000453/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000453/2/" + }, + "dce:identifier": "SDN:R14::T000453", + "pav:version": "2", + "skos:notation": "SDN:R14::T000453", + "skos:altLabel": "453", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_DescentToPark_hours" + }, + "dc:identifier": "SDN:R14::T000453", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_DescentToPark. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000100/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000100/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000100/2/" + }, + "dce:identifier": "SDN:R14::T000100", + "pav:version": "2", + "skos:notation": "SDN:R14::T000100", + "skos:altLabel": "100", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentIridiumMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Iridium messages with ascent data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000278/2/" + }, + "dce:identifier": "SDN:R14::T000278", + "pav:version": "2", + "skos:notation": "SDN:R14::T000278", + "skos:altLabel": "278", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the CTD (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000518/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000518/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000518/2/" + }, + "dce:identifier": "SDN:R14::T000518", + "pav:version": "2", + "skos:notation": "SDN:R14::T000518", + "skos:altLabel": "518", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery14V_volts" + }, + "dc:identifier": "SDN:R14::T000518", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 14v system. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000556/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000556/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000556/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium messages used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000556", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentIridiumMessages_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "556", + "skos:notation": "SDN:R14::T000556", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000556", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000556/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000016/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000016/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000016/2/" + }, + "dce:identifier": "SDN:R14::T000016", + "pav:version": "2", + "skos:notation": "SDN:R14::T000016", + "skos:altLabel": "16", + "dc:date": "2025-12-11 11:04:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_MixedLayerInfimum_degC" + }, + "dc:identifier": "SDN:R14::T000016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Infimum of the mixed-layer median temperature since the last successful telemetry. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000263/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000263/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:56.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000263/2/" + }, + "dce:identifier": "SDN:R14::T000263", + "pav:version": "2", + "skos:notation": "SDN:R14::T000263", + "skos:altLabel": "263", + "dc:date": "2025-12-11 11:04:56.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_CoherenceProblem_COUNT" + }, + "dc:identifier": "SDN:R14::T000263", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SBE sensor data check used to diagnose problems. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000222/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000222/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000222/2/" + }, + "dce:identifier": "SDN:R14::T000222", + "pav:version": "2", + "skos:notation": "SDN:R14::T000222", + "skos:altLabel": "222", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesReceivedOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000222", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames received on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000328/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000328/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000328/2/" + }, + "dce:identifier": "SDN:R14::T000328", + "pav:version": "2", + "skos:notation": "SDN:R14::T000328", + "skos:altLabel": "328", + "dc:date": "2025-12-11 11:04:43.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SBE43NullArgumentDetectedDuringPTSMeasurement_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000328", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SBE43 : Null argument detected during PTS measurement (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T700271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T700271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T700271/2/" + }, + "dce:identifier": "SDN:R14::T700271", + "pav:version": "2", + "skos:notation": "SDN:R14::T700271", + "skos:altLabel": "271.7", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterXmitFail_bit" + }, + "dc:identifier": "SDN:R14::T700271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the Argos transmitter transmission attempt has failed. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000500/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000500/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000500/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Battery Current measured at park pressure with no load, incorrect unit in prefLabel and duplicate of CURRENT_BatteryParkNoLoad_mA - ID 499. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R14::T000500", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryParkNoLoad_volts" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-12 11:39:43.0", + "skos:altLabel": "500", + "skos:notation": "SDN:R14::T000500", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000500", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000500/3/" + }, + "pav:authoredOn": "2025-12-12 11:39:43.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000246/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000246/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000246/2/" + }, + "dce:identifier": "SDN:R14::T000246", + "pav:version": "2", + "skos:notation": "SDN:R14::T000246", + "skos:altLabel": "246", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentPTMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000246", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of ascent PT messages. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000524/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000524/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000524/2/" + }, + "dce:identifier": "SDN:R14::T000524", + "pav:version": "2", + "skos:notation": "SDN:R14::T000524", + "skos:altLabel": "524", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryCPUDepth_volts" + }, + "dc:identifier": "SDN:R14::T000524", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CPU battery voltage at (unspecified) depth. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000083/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000083/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000083/2/" + }, + "dce:identifier": "SDN:R14::T000083", + "pav:version": "2", + "skos:notation": "SDN:R14::T000083", + "skos:altLabel": "83", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TimeOfFirstEmergencyAscent_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of first emergency ascent. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300520/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300520/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300520/2/" + }, + "dce:identifier": "SDN:R14::T300520", + "pav:version": "2", + "skos:notation": "SDN:R14::T300520", + "skos:altLabel": "520.3", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery7VStartDescentToPark_volts" + }, + "dc:identifier": "SDN:R14::T300520", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 7V system when float starts descending to park. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000483/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000483/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000483/2/" + }, + "dce:identifier": "SDN:R14::T000483", + "pav:version": "2", + "skos:notation": "SDN:R14::T000483", + "skos:altLabel": "483", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_ToAscend_seconds" + }, + "dc:identifier": "SDN:R14::T000483", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time taken to reach the surface. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000148/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000148/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000148/2/" + }, + "dce:identifier": "SDN:R14::T000148", + "pav:version": "2", + "skos:notation": "SDN:R14::T000148", + "skos:altLabel": "148", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClass0_COUNT" + }, + "dc:identifier": "SDN:R14::T000148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class 0 - accuracy >1500m radius. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000214/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000214/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000214/2/" + }, + "dce:identifier": "SDN:R14::T000214", + "pav:version": "2", + "skos:notation": "SDN:R14::T000214", + "skos:altLabel": "214", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesCrcOkOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000214", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames received with crc ok on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000242/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000242/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000242/2/" + }, + "dce:identifier": "SDN:R14::T000242", + "pav:version": "2", + "skos:notation": "SDN:R14::T000242", + "skos:altLabel": "242", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesReceived_COUNT" + }, + "dc:identifier": "SDN:R14::T000242", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - Received. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000238/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000238/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000238/2/" + }, + "dce:identifier": "SDN:R14::T000238", + "pav:version": "2", + "skos:notation": "SDN:R14::T000238", + "skos:altLabel": "238", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkGapOrder_COUNT" + }, + "dc:identifier": "SDN:R14::T000238", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Park float control - Gap order. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000516/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000516/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000516/2/" + }, + "dce:identifier": "SDN:R14::T000516", + "pav:version": "2", + "skos:notation": "SDN:R14::T000516", + "skos:altLabel": "516", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery7V_volts" + }, + "dc:identifier": "SDN:R14::T000516", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 7v system. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000307/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000307/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000307/2/" + }, + "dce:identifier": "SDN:R14::T000307", + "pav:version": "2", + "skos:notation": "SDN:R14::T000307", + "skos:altLabel": "307", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ProfileTerminationFlag#1_byte" + }, + "dc:identifier": "SDN:R14::T000307", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "See description in manufacturer manual. Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000197/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000197/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000197/2/" + }, + "dce:identifier": "SDN:R14::T000197", + "pav:version": "2", + "skos:notation": "SDN:R14::T000197", + "skos:altLabel": "197", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingPRESSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number pressure measurements in descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900009/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900009/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900009/2/" + }, + "dce:identifier": "SDN:R14::T900009", + "pav:version": "2", + "skos:notation": "SDN:R14::T900009", + "skos:altLabel": "900009", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentStartToPark_dbar" + }, + "dc:identifier": "SDN:R14::T900009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure taken at the end of piston retraction. JULD_PARK_START and JULD with MC = 250. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000401/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000401/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000401/2/" + }, + "dce:identifier": "SDN:R14::T000401", + "pav:version": "2", + "skos:notation": "SDN:R14::T000401", + "skos:altLabel": "401", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_PlusTwoseconds_dbar" + }, + "dc:identifier": "SDN:R14::T000401", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRES measured 2 seconds after PRES_AscentStart_dbar. This can also be placed into the traj files with MC-10 depending on the timing event (often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000475/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000475/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000475/2/" + }, + "dce:identifier": "SDN:R14::T000475", + "pav:version": "2", + "skos:notation": "SDN:R14::T000475", + "skos:altLabel": "475", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SampleFrequencyDuringAscent_seconds" + }, + "dc:identifier": "SDN:R14::T000475", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD ascent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000206/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000206/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000206/2/" + }, + "dce:identifier": "SDN:R14::T000206", + "pav:version": "2", + "skos:notation": "SDN:R14::T000206", + "skos:altLabel": "206", + "dc:date": "2025-12-11 11:04:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FloatFramesOkOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000206", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Provor frames ok on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000564/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000564/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000564/2/" + }, + "dce:identifier": "SDN:R14::T000564", + "pav:version": "2", + "skos:notation": "SDN:R14::T000564", + "skos:altLabel": "564", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringProfileDrift_COUNT" + }, + "dc:identifier": "SDN:R14::T000564", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions during drift at profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000141/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000141/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000141/2/" + }, + "dce:identifier": "SDN:R14::T000141", + "pav:version": "2", + "skos:notation": "SDN:R14::T000141", + "skos:altLabel": "141", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FltnuAscentSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000141", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent: Flntu profile length. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200083/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200083/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200083/2/" + }, + "dce:identifier": "SDN:R14::T200083", + "pav:version": "2", + "skos:notation": "SDN:R14::T200083", + "skos:altLabel": "83.2", + "dc:date": "2025-12-11 11:04:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_PressureActivationStop_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T200083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure activation scrutation end date. The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000211/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000211/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000211/2/" + }, + "dce:identifier": "SDN:R14::T000211", + "pav:version": "2", + "skos:notation": "SDN:R14::T000211", + "skos:altLabel": "211", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesCompleteOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000211", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames complete on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200361/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200361/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200361/2/" + }, + "dce:identifier": "SDN:R14::T200361", + "pav:version": "2", + "skos:notation": "SDN:R14::T200361", + "skos:altLabel": "361.2", + "dc:date": "2025-12-11 11:04:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_TimeOutIridium_dbar" + }, + "dc:identifier": "SDN:R14::T200361", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when iridium communications timed out. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000499/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000499/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000499/2/" + }, + "dce:identifier": "SDN:R14::T000499", + "pav:version": "2", + "skos:notation": "SDN:R14::T000499", + "skos:altLabel": "499", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryParkNoLoad_mA" + }, + "dc:identifier": "SDN:R14::T000499", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery Current measured at park pressure with no load, same as BOTTOM battery current (older floats). Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000374/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000374/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000374/2/" + }, + "dce:identifier": "SDN:R14::T000374", + "pav:version": "2", + "skos:notation": "SDN:R14::T000374", + "skos:altLabel": "374", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescendingProfileReductionSeparation_dbar" + }, + "dc:identifier": "SDN:R14::T000374", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descending profile reduction Shallow / Deep pressure threshold - PRSEP. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000508/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000508/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000508/2/" + }, + "dce:identifier": "SDN:R14::T000508", + "pav:version": "2", + "skos:notation": "SDN:R14::T000508", + "skos:altLabel": "508", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryPumpLastValueAsAscends_mA" + }, + "dc:identifier": "SDN:R14::T000508", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Current measured in the last portion of pumping as the float ascends. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000165/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000165/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000165/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Shallow total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000165", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesShallowTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "165", + "skos:notation": "SDN:R14::T000165", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000165", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000165/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000443/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000443/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000443/2/" + }, + "dce:identifier": "SDN:R14::T000443", + "pav:version": "2", + "skos:notation": "SDN:R14::T000443", + "skos:altLabel": "443", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "STATUS_LimitSwitchOUTAtStartAscent_NUMBER" + }, + "dc:identifier": "SDN:R14::T000443", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Binary reporting of piston position (0=IN, 1=OUT, IDG Var=LIMsw). Not the same LIMsw as in Cy0. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000021/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000021/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000021/2/" + }, + "dce:identifier": "SDN:R14::T000021", + "pav:version": "2", + "skos:notation": "SDN:R14::T000021", + "skos:altLabel": "21", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "IRRADIANCE_W1_MeanBeforeAscent_uW/cm^2/nm" + }, + "dc:identifier": "SDN:R14::T000021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[uW/cm^2/nm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400112/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400112/2/" + }, + "dce:identifier": "SDN:R14::T400112", + "pav:version": "2", + "skos:notation": "SDN:R14::T400112", + "skos:altLabel": "112.4", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_InAirSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T400112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "In air measurements (Internal counter). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000189/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000189/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000189/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Depth total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000189", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesDeepTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "189", + "skos:notation": "SDN:R14::T000189", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000189", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000189/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000467/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000467/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000467/2/" + }, + "dce:identifier": "SDN:R14::T000467", + "pav:version": "2", + "skos:notation": "SDN:R14::T000467", + "skos:altLabel": "467", + "dc:date": "2025-12-11 11:04:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_OptiqueSampleFrequencyDuringPark_hours" + }, + "dc:identifier": "SDN:R14::T000467", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optique drift acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400271/2/" + }, + "dce:identifier": "SDN:R14::T400271", + "pav:version": "2", + "skos:notation": "SDN:R14::T400271", + "skos:altLabel": "271.4", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterRebootDetected_bit" + }, + "dc:identifier": "SDN:R14::T400271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether an Argos transmitter reboot was detected. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000533/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000533/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000533/2/" + }, + "dce:identifier": "SDN:R14::T000533", + "pav:version": "2", + "skos:notation": "SDN:R14::T000533", + "skos:altLabel": "533", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryParkNoLoad_volts" + }, + "dc:identifier": "SDN:R14::T000533", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage during inactive park phase. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200418/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200418/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200418/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Pressure when buoyancy is max during sending messages. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T200418", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DuringMaximumBuoyancyAndIridiumTransmission_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 11:04:33.0", + "skos:altLabel": "418.2", + "skos:notation": "SDN:R14::T200418", + "pav:version": "3", + "dce:identifier": "SDN:R14::T200418", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200418/3/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000202/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000202/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000202/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on descending profile. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000202", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnDescendingProfile_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "202", + "skos:notation": "SDN:R14::T000202", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000202", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000202/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000411/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000411/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000411/2/" + }, + "dce:identifier": "SDN:R14::T000411", + "pav:version": "2", + "skos:notation": "SDN:R14::T000411", + "skos:altLabel": "411", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_TUR3ProfileReductionSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000411", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 profile reduction Number of slices in shallow zone - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000343/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000343/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000343/2/" + }, + "dce:identifier": "SDN:R14::T000343", + "pav:version": "2", + "skos:notation": "SDN:R14::T000343", + "skos:altLabel": "343", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_WakeUpByWatchDogAlarm_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000343", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Wake-up by watchdog alarm (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000259/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000259/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000259/2/" + }, + "dce:identifier": "SDN:R14::T000259", + "pav:version": "2", + "skos:notation": "SDN:R14::T000259", + "skos:altLabel": "259", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TEMPSampleErrorShallowZoneDuringAscending_COUNT" + }, + "dc:identifier": "SDN:R14::T000259", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Error of temperature measurements in deep shallow during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000157/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000157/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000157/2/" + }, + "dce:identifier": "SDN:R14::T000157", + "pav:version": "2", + "skos:notation": "SDN:R14::T000157", + "skos:altLabel": "157", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_GPSSatellites_COUNT" + }, + "dc:identifier": "SDN:R14::T000157", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of GPS satellites seen by the float. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000408/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000408/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000408/2/" + }, + "dce:identifier": "SDN:R14::T000408", + "pav:version": "2", + "skos:notation": "SDN:R14::T000408", + "skos:altLabel": "408", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceComplement_dbar" + }, + "dc:identifier": "SDN:R14::T000408", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure complement. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000435/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000435/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000435/2/" + }, + "dce:identifier": "SDN:R14::T000435", + "pav:version": "2", + "skos:notation": "SDN:R14::T000435", + "skos:altLabel": "435", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumRange_mbar" + }, + "dc:identifier": "SDN:R14::T000435", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Range of internal vacuum reported by the float (e.g., <=725 or 726-750). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000153/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000153/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000153/2/" + }, + "dce:identifier": "SDN:R14::T000153", + "pav:version": "2", + "skos:notation": "SDN:R14::T000153", + "skos:altLabel": "153", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClassA_COUNT" + }, + "dc:identifier": "SDN:R14::T000153", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class A. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000370/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000370/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000370/2/" + }, + "dce:identifier": "SDN:R14::T000370", + "pav:version": "2", + "skos:notation": "SDN:R14::T000370", + "skos:altLabel": "370", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_CTDProfileReductionBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000370", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD profile reduction Deep zone slices thickness - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000069/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000069/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000069/2/" + }, + "dce:identifier": "SDN:R14::T000069", + "pav:version": "2", + "skos:notation": "SDN:R14::T000069", + "skos:altLabel": "69", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FloatDayOfYear_days" + }, + "dc:identifier": "SDN:R14::T000069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal float day of year. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000353/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000353/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000353/2/" + }, + "dce:identifier": "SDN:R14::T000353", + "pav:version": "2", + "skos:notation": "SDN:R14::T000353", + "skos:altLabel": "353", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonParkStart_COUNT" + }, + "dc:identifier": "SDN:R14::T000353", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Plunger position at parking start. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000218/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000218/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000218/2/" + }, + "dce:identifier": "SDN:R14::T000218", + "pav:version": "2", + "skos:notation": "SDN:R14::T000218", + "skos:altLabel": "218", + "dc:date": "2025-12-11 11:04:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesOkOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000218", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames ok on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000502/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000502/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000502/2/" + }, + "dce:identifier": "SDN:R14::T000502", + "pav:version": "2", + "skos:notation": "SDN:R14::T000502", + "skos:altLabel": "502", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryPumpOn_mA" + }, + "dc:identifier": "SDN:R14::T000502", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current when buoyancy pump is on. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000459/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000459/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000459/2/" + }, + "dce:identifier": "SDN:R14::T000459", + "pav:version": "2", + "skos:notation": "SDN:R14::T000459", + "skos:altLabel": "459", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_GroundingRelativeToCycleBeginning_hours" + }, + "dc:identifier": "SDN:R14::T000459", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Gounding day relative to cycle beginning. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000418/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000418/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000418/2/" + }, + "dce:identifier": "SDN:R14::T000418", + "pav:version": "2", + "skos:notation": "SDN:R14::T000418", + "skos:altLabel": "418", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_BladderNow_dbar" + }, + "dc:identifier": "SDN:R14::T000418", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Current pressure of the air bladder now. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500104/2/" + }, + "dce:identifier": "SDN:R14::T500104", + "pav:version": "2", + "skos:notation": "SDN:R14::T500104", + "skos:altLabel": "104.5", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RemoteControlCommandKO_COUNT" + }, + "dc:identifier": "SDN:R14::T500104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of remote control commands rejected by the float. See also ID 309. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000125/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000125/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000125/2/" + }, + "dce:identifier": "SDN:R14::T000125", + "pav:version": "2", + "skos:notation": "SDN:R14::T000125", + "skos:altLabel": "125", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringDescentToProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000125", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions during descent to start profile pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000403/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000403/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000403/2/" + }, + "dce:identifier": "SDN:R14::T000403", + "pav:version": "2", + "skos:notation": "SDN:R14::T000403", + "skos:altLabel": "403", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_Settling1_dbar" + }, + "dc:identifier": "SDN:R14::T000403", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRES_Settling1. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000060/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000060/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000060/2/" + }, + "dce:identifier": "SDN:R14::T000060", + "pav:version": "2", + "skos:notation": "SDN:R14::T000060", + "skos:altLabel": "60", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FloatTime_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float internal clock time. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM, days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000312/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000312/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000312/2/" + }, + "dce:identifier": "SDN:R14::T000312", + "pav:version": "2", + "skos:notation": "SDN:R14::T000312", + "skos:altLabel": "312", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SatlanticStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000312", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the Satlantic optical sensor. Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000427/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000427/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000427/2/" + }, + "dce:identifier": "SDN:R14::T000427", + "pav:version": "2", + "skos:notation": "SDN:R14::T000427", + "skos:altLabel": "427", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAtLaunch_inHg" + }, + "dc:identifier": "SDN:R14::T000427", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal vacuum when float launched. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900014/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900014/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900014/2/" + }, + "dce:identifier": "SDN:R14::T900014", + "pav:version": "2", + "skos:notation": "SDN:R14::T900014", + "skos:altLabel": "900014", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentToProfileMaxPressure_dbar" + }, + "dc:identifier": "SDN:R14::T900014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum pressure during descent to profile. MC minus 2. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000362/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000362/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000362/2/" + }, + "dce:identifier": "SDN:R14::T000362", + "pav:version": "2", + "skos:notation": "SDN:R14::T000362", + "skos:altLabel": "362", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_1HourIntoDescentToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T000362", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure taken 1 hour after the beginning of descent. If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000038/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000038/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000038/2/" + }, + "dce:identifier": "SDN:R14::T000038", + "pav:version": "2", + "skos:notation": "SDN:R14::T000038", + "skos:altLabel": "38", + "dc:date": "2025-12-11 11:05:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeResetTruncated_dbar" + }, + "dc:identifier": "SDN:R14::T000038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure measurement which is then used to correct pressure on board the float. This is a cumulative offset and no further correction is required. Negative offsets truncated to 0. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required. NOTE: if the SPO is >40 for the Argo CTD, then the autocorrection is PARTIALLY applied (40 is subtracted, leaving the excess offset uncorrected) and the pressures may need to be adjusted in RT and DM. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000485/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000485/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000485/2/" + }, + "dce:identifier": "SDN:R14::T000485", + "pav:version": "2", + "skos:notation": "SDN:R14::T000485", + "skos:altLabel": "485", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_TUR3SampleFrequencyDuringAscent_seconds" + }, + "dc:identifier": "SDN:R14::T000485", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 ascent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000386/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000386/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000386/2/" + }, + "dce:identifier": "SDN:R14::T000386", + "pav:version": "2", + "skos:notation": "SDN:R14::T000386", + "skos:altLabel": "386", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DOXYProfileReductionSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000386", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY profile reduction Number of slices in shallow zone - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000132/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000132/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000132/2/" + }, + "dce:identifier": "SDN:R14::T000132", + "pav:version": "2", + "skos:notation": "SDN:R14::T000132", + "skos:altLabel": "132", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorActionsDuringAscentToSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000132", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of motor actions between start and end of descent to profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900024/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900024/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:55.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900024/2/" + }, + "dce:identifier": "SDN:R14::T900024", + "pav:version": "2", + "skos:notation": "SDN:R14::T900024", + "skos:altLabel": "900024", + "dc:date": "2025-12-11 11:04:55.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ParkMaximum_dbar" + }, + "dc:identifier": "SDN:R14::T900024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum pressure during park phase. MC minus 2 or 298. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000117/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000117/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000117/2/" + }, + "dce:identifier": "SDN:R14::T000117", + "pav:version": "2", + "skos:notation": "SDN:R14::T000117", + "skos:altLabel": "117", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsAtSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000117", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions at emergence before transmission. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000052/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000052/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000052/2/" + }, + "dce:identifier": "SDN:R14::T000052", + "pav:version": "2", + "skos:notation": "SDN:R14::T000052", + "skos:altLabel": "52", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_StartDescentToPark_hours" + }, + "dc:identifier": "SDN:R14::T000052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time after the crossing the gap threshold. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000295/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000295/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000295/2/" + }, + "dce:identifier": "SDN:R14::T000295", + "pav:version": "2", + "skos:notation": "SDN:R14::T000295", + "skos:altLabel": "295", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_NextPressureTimeout_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000295", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "FLAG_NextPressureTimeout. Different from ascent timeout since it refers to a single pressure point timeout. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000330/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000330/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000330/2/" + }, + "dce:identifier": "SDN:R14::T000330", + "pav:version": "2", + "skos:notation": "SDN:R14::T000330", + "skos:altLabel": "330", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ShallowWaterTrapDetected_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000330", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Shallow water trap detected (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400557/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400557/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400557/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the parking depth to profile depth phase. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T400557", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToProfileSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "557.4", + "skos:notation": "SDN:R14::T400557", + "pav:version": "3", + "dce:identifier": "SDN:R14::T400557", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400557/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000076/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000076/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000076/2/" + }, + "dce:identifier": "SDN:R14::T000076", + "pav:version": "2", + "skos:notation": "SDN:R14::T000076", + "skos:altLabel": "76", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_BuoyancyInversionStart_FloatDay" + }, + "dc:identifier": "SDN:R14::T000076", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when the float starts the buoyancy inversion phase when ice was detected during ascent. When the ascent profile is aborted because of the Ice detection algorithm, the float starts a buoyancy inversion phase. The current label reports the start time of this phase and NUMBER_BuoyancyInversionValveActions_COUNT the number of valve actions needed to invert float buoyancy. See 132.1. Template_Values:{unit:[FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100529/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100529/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100529/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured by the individual sensors. Template_Values:{unit:[COUNT, volts, mV];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100529", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery_volts" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "529.1", + "skos:notation": "SDN:R14::T100529", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100529", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100529/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000354/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000354/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000354/2/" + }, + "dce:identifier": "SDN:R14::T000354", + "pav:version": "2", + "skos:notation": "SDN:R14::T000354", + "skos:altLabel": "354", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000354", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston position at maximum profile pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000560/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000560/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000560/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the drift at parking depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000560", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "560", + "skos:notation": "SDN:R14::T000560", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000560", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000560/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000020/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000020/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000020/2/" + }, + "dce:identifier": "SDN:R14::T000020", + "pav:version": "2", + "skos:notation": "SDN:R14::T000020", + "skos:altLabel": "20", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CHLT_MeanBeforeAscent_mg/m^3" + }, + "dc:identifier": "SDN:R14::T000020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[mmol/L, umol/L, umol/kg, ug/L, kg/m^3, mg/m^3, ml/L]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000101/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000101/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000101/2/" + }, + "dce:identifier": "SDN:R14::T000101", + "pav:version": "2", + "skos:notation": "SDN:R14::T000101", + "skos:altLabel": "101", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentIridiumMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Iridium messages with descent data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100488/2/" + }, + "dce:identifier": "SDN:R14::T100488", + "pav:version": "2", + "skos:notation": "SDN:R14::T100488", + "skos:altLabel": "488.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredAtSurfaceDuringDescent_cm^3" + }, + "dc:identifier": "SDN:R14::T100488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume transferred from the external bladder during the descent to park (between the surface and the second threshold of the buoyancy reduction phase). This is the oil volume tranferred during the NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT valve actions (Id 126). Reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000109/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000109/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000109/2/" + }, + "dce:identifier": "SDN:R14::T000109", + "pav:version": "2", + "skos:notation": "SDN:R14::T000109", + "skos:altLabel": "109", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_BinsWithBadData_COUNT" + }, + "dc:identifier": "SDN:R14::T000109", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pressure bins with bad data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000017/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000017/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000017/2/" + }, + "dce:identifier": "SDN:R14::T000017", + "pav:version": "2", + "skos:notation": "SDN:R14::T000017", + "skos:altLabel": "17", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_MotorMeanOfProfile_amps" + }, + "dc:identifier": "SDN:R14::T000017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Mean of motor current during upcast. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900020/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900020/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900020/2/" + }, + "dce:identifier": "SDN:R14::T900020", + "pav:version": "2", + "skos:notation": "SDN:R14::T900020", + "skos:altLabel": "900020", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MaximumDuringProfileDrift_dbar" + }, + "dc:identifier": "SDN:R14::T900020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum pressure during drifting at profile depth. MC minus 2. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000264/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000264/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000264/2/" + }, + "dce:identifier": "SDN:R14::T000264", + "pav:version": "2", + "skos:notation": "SDN:R14::T000264", + "skos:altLabel": "264", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ExceptionProgramCounter_NUMBER" + }, + "dc:identifier": "SDN:R14::T000264", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Exception Program Counter (EPC) used to store the address of the instruction that was executing when the exception was generated. The new Emergency Apex-APF11 float message provide a 4 bytes information called PC: The exception program counter. Customers would report emergency messages to Teledyne, and from that TWR will identify the source of the problem. Actual instruction addresses in the running program change for every version of code released. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000044/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000044/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000044/2/" + }, + "dce:identifier": "SDN:R14::T000044", + "pav:version": "2", + "skos:notation": "SDN:R14::T000044", + "skos:altLabel": "44", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetAfterReset_5cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.5db resolution - may be used for other floats as well. This is a relative offset and no further correction is required. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000322/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000322/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000322/2/" + }, + "dce:identifier": "SDN:R14::T000322", + "pav:version": "2", + "skos:notation": "SDN:R14::T000322", + "skos:altLabel": "322", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PTSNoResponse_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000322", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : PTS No response (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000329/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000329/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000329/2/" + }, + "dce:identifier": "SDN:R14::T000329", + "pav:version": "2", + "skos:notation": "SDN:R14::T000329", + "skos:altLabel": "329", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SeabirdStringLengthError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000329", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is a Seabird string length error (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000068/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000068/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000068/2/" + }, + "dce:identifier": "SDN:R14::T000068", + "pav:version": "2", + "skos:notation": "SDN:R14::T000068", + "skos:altLabel": "68", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TransmissionStart_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of the first transmission for this cycle. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. TRANSMISSION_START_TIME and in JULD with MC=700. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000346/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000346/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000346/2/" + }, + "dce:identifier": "SDN:R14::T000346", + "pav:version": "2", + "skos:notation": "SDN:R14::T000346", + "skos:altLabel": "346", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "REFERENCE_BlueFlntuSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000346", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu BlueReference at surface. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000274/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000274/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000274/2/" + }, + "dce:identifier": "SDN:R14::T000274", + "pav:version": "2", + "skos:notation": "SDN:R14::T000274", + "skos:altLabel": "274", + "dc:date": "2025-12-11 11:04:39.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_AscendingProfile_NUMBER" + }, + "dc:identifier": "SDN:R14::T000274", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of profile upcast. 0=UPCAST_BUSY 1=UPCST_DONE 2=UPCAST_TIMEOUT 3=UPCAST_ICE_DETECTION. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000423/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000423/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000423/2/" + }, + "dce:identifier": "SDN:R14::T000423", + "pav:version": "2", + "skos:notation": "SDN:R14::T000423", + "skos:altLabel": "423", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumDuringDescent50dbar_inHg" + }, + "dc:identifier": "SDN:R14::T000423", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal Vacuum at 50 dbar as float is sinking towards drift depth. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000281/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000281/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000281/2/" + }, + "dce:identifier": "SDN:R14::T000281", + "pav:version": "2", + "skos:notation": "SDN:R14::T000281", + "skos:altLabel": "281", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_DeepProfile_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000281", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the current profile is a deep profile (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000339/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000339/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000339/2/" + }, + "dce:identifier": "SDN:R14::T000339", + "pav:version": "2", + "skos:notation": "SDN:R14::T000339", + "skos:altLabel": "339", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SystemAtDepth_hex" + }, + "dc:identifier": "SDN:R14::T000339", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "System flags at depth. See Manual for more information. Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300407/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300407/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300407/2/" + }, + "dce:identifier": "SDN:R14::T300407", + "pav:version": "2", + "skos:notation": "SDN:R14::T300407", + "skos:altLabel": "407.3", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_IceAvoidance_dbar" + }, + "dc:identifier": "SDN:R14::T300407", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when float avoids ice. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000084/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000084/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000084/2/" + }, + "dce:identifier": "SDN:R14::T000084", + "pav:version": "2", + "skos:notation": "SDN:R14::T000084", + "skos:altLabel": "84", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsOnFirstEmergencyAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T000084", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Emergency ascent - pump actions at emergency depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900012/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900012/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900012/2/" + }, + "dce:identifier": "SDN:R14::T900012", + "pav:version": "2", + "skos:notation": "SDN:R14::T900012", + "skos:altLabel": "900012", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentToParkMaxPressure_dbar" + }, + "dc:identifier": "SDN:R14::T900012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum pressure during descent to park. MC minus 2. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000036/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000036/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000036/2/" + }, + "dce:identifier": "SDN:R14::T000036", + "pav:version": "2", + "skos:notation": "SDN:R14::T000036", + "skos:altLabel": "36", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetCorrectedNotResetNegative_1cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent but data is corrected on board the float. This is a cumulative NEGATIVE offset (real offset * -1) but no further correction required. Autocorrected. Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000149/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000149/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000149/2/" + }, + "dce:identifier": "SDN:R14::T000149", + "pav:version": "2", + "skos:notation": "SDN:R14::T000149", + "skos:altLabel": "149", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClass1_COUNT" + }, + "dc:identifier": "SDN:R14::T000149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class 1 - accuracy better than 1500m radius. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000314/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000314/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000314/2/" + }, + "dce:identifier": "SDN:R14::T000314", + "pav:version": "2", + "skos:notation": "SDN:R14::T000314", + "skos:altLabel": "314", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ExceptionDetectedWhileParsingThePNonpedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000314", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Exception detected while parsing the P nonpedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000243/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000243/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000243/2/" + }, + "dce:identifier": "SDN:R14::T000243", + "pav:version": "2", + "skos:notation": "SDN:R14::T000243", + "skos:altLabel": "243", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesRecombined_COUNT" + }, + "dc:identifier": "SDN:R14::T000243", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - Recombined. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000490/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000490/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000490/2/" + }, + "dce:identifier": "SDN:R14::T000490", + "pav:version": "2", + "skos:notation": "SDN:R14::T000490", + "skos:altLabel": "490", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryAvgPumpOnStartAscent_mA" + }, + "dc:identifier": "SDN:R14::T000490", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Average pump motor current taken at start of ascent. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000338/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000338/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000338/2/" + }, + "dce:identifier": "SDN:R14::T000338", + "pav:version": "2", + "skos:notation": "SDN:R14::T000338", + "skos:altLabel": "338", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_System_NUMBER" + }, + "dc:identifier": "SDN:R14::T000338", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "FLAG_System. Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000273/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000273/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000273/2/" + }, + "dce:identifier": "SDN:R14::T000273", + "pav:version": "2", + "skos:notation": "SDN:R14::T000273", + "skos:altLabel": "273", + "dc:date": "2025-12-11 11:04:38.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_AirInflationSystemByPassedExcessiveEnergyConsumption_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000273", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Air inflation system by-passed excessive energy consumption (1/Yes or 0/No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200558/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200558/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200558/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the drift at park depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T200558", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "558.2", + "skos:notation": "SDN:R14::T200558", + "pav:version": "3", + "dce:identifier": "SDN:R14::T200558", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200558/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000308/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000308/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000308/2/" + }, + "dce:identifier": "SDN:R14::T000308", + "pav:version": "2", + "skos:notation": "SDN:R14::T000308", + "skos:altLabel": "308", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ProfileTerminationFlag#2_byte" + }, + "dc:identifier": "SDN:R14::T000308", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "See description in manufacturer manual. Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000053/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000053/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000053/2/" + }, + "dce:identifier": "SDN:R14::T000053", + "pav:version": "2", + "skos:notation": "SDN:R14::T000053", + "skos:altLabel": "53", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EndDescentToProfile_hours" + }, + "dc:identifier": "SDN:R14::T000053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when float reaches profile pressure. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_DEEP_DESCENT_END or JULD_DEEP_PARK_START and JULD with MC=400 or JULD with MC=450. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100112/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100112/2/" + }, + "dce:identifier": "SDN:R14::T100112", + "pav:version": "2", + "skos:notation": "SDN:R14::T100112", + "skos:altLabel": "112.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToParkAndToProfEntriesInParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T100112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Cumulated numbers of entries in both parking zones (at park and profile depth). Specifically, how many times the float enters the band of pressure surrounding the target park/profile pressure (thus 2 is the nominal value for a float which never experienced stabilization issues). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000297/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000297/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000297/2/" + }, + "dce:identifier": "SDN:R14::T000297", + "pav:version": "2", + "skos:notation": "SDN:R14::T000297", + "skos:altLabel": "297", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_OptodeNoResponse_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000297", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optode : No response (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000118/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000118/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000118/2/" + }, + "dce:identifier": "SDN:R14::T000118", + "pav:version": "2", + "skos:notation": "SDN:R14::T000118", + "skos:altLabel": "118", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000118", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions while at park depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900004/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900004/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900004/2/" + }, + "dce:identifier": "SDN:R14::T900004", + "pav:version": "2", + "skos:notation": "SDN:R14::T900004", + "skos:altLabel": "900004", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_DateGrounded_DDMMYYYY" + }, + "dc:identifier": "SDN:R14::T900004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Date the float grounded. MC901 references grounding information. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000402/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000402/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000402/2/" + }, + "dce:identifier": "SDN:R14::T000402", + "pav:version": "2", + "skos:notation": "SDN:R14::T000402", + "skos:altLabel": "402", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_Settling0_dbar" + }, + "dc:identifier": "SDN:R14::T000402", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRES_Settling0. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000028/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000028/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000028/2/" + }, + "dce:identifier": "SDN:R14::T000028", + "pav:version": "2", + "skos:notation": "SDN:R14::T000028", + "skos:altLabel": "28", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetTruncatedPlus3dbar_dbar" + }, + "dc:identifier": "SDN:R14::T000028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset, negative offsets truncated to 0, 3dbar added. Not autocorrected. Subtract 3 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000306/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000306/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000306/2/" + }, + "dce:identifier": "SDN:R14::T000306", + "pav:version": "2", + "skos:notation": "SDN:R14::T000306", + "skos:altLabel": "306", + "dc:date": "2025-12-11 11:04:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ProfileTermination_hex" + }, + "dc:identifier": "SDN:R14::T000306", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the profile termination (see manual). Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200248/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200248/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200248/2/" + }, + "dce:identifier": "SDN:R14::T200248", + "pav:version": "2", + "skos:notation": "SDN:R14::T200248", + "skos:altLabel": "248.2", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkDriftExitsFromParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T200248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Drift at park pressure: number of exits from margin around park pressure target. Specifically, it indicates how many times the float exits the band of pressure surrounding the target park pressure (generally +/- 30db). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000565/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000565/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000565/2/" + }, + "dce:identifier": "SDN:R14::T000565", + "pav:version": "2", + "skos:notation": "SDN:R14::T000565", + "skos:altLabel": "565", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SBEFPCommandTimeouts_COUNT" + }, + "dc:identifier": "SDN:R14::T000565", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of timeouts while measuring pressure with the SBE sensor using a Fast Pressure command. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000241/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000241/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000241/2/" + }, + "dce:identifier": "SDN:R14::T000241", + "pav:version": "2", + "skos:notation": "SDN:R14::T000241", + "skos:altLabel": "241", + "dc:date": "2025-12-11 11:05:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesCrcOk_COUNT" + }, + "dc:identifier": "SDN:R14::T000241", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - CRC OK. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900028/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900028/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900028/2/" + }, + "dce:identifier": "SDN:R14::T900028", + "pav:version": "2", + "skos:notation": "SDN:R14::T900028", + "skos:altLabel": "900028", + "dc:date": "2025-12-11 11:04:52.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_WhenMaximumTemperatureAtPark_dbar" + }, + "dc:identifier": "SDN:R14::T900028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure where the maximum temperature was measured during park phase. MC minus 12 or 288. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000212/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000212/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000212/2/" + }, + "dce:identifier": "SDN:R14::T000212", + "pav:version": "2", + "skos:notation": "SDN:R14::T000212", + "skos:altLabel": "212", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesCompleteOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000212", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames complete on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000375/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000375/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000375/2/" + }, + "dce:identifier": "SDN:R14::T000375", + "pav:version": "2", + "skos:notation": "SDN:R14::T000375", + "skos:altLabel": "375", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescendingProfileReductionSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000375", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descending profile reduction Surface slices thickness - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000543/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000543/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000543/2/" + }, + "dce:identifier": "SDN:R14::T000543", + "pav:version": "2", + "skos:notation": "SDN:R14::T000543", + "skos:altLabel": "543", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatterySurfaceAirPumpOn_volts" + }, + "dc:identifier": "SDN:R14::T000543", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Voltage measured when AIR PUMP is switched on at the surface for extra buoyancy. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000022/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000022/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000022/2/" + }, + "dce:identifier": "SDN:R14::T000022", + "pav:version": "2", + "skos:notation": "SDN:R14::T000022", + "skos:altLabel": "22", + "dc:date": "2025-12-11 11:04:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "IRRADIANCE_W2_MeanBeforeAscent_uW/cm^2/nm" + }, + "dc:identifier": "SDN:R14::T000022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[uW/cm^2/nm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000289/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000289/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000289/2/" + }, + "dce:identifier": "SDN:R14::T000289", + "pav:version": "2", + "skos:notation": "SDN:R14::T000289", + "skos:altLabel": "289", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_GPSStatus_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000289", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating whether GPS is valid (1) or not valid (0). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000567/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000567/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000567/2/" + }, + "dce:identifier": "SDN:R14::T000567", + "pav:version": "2", + "skos:notation": "SDN:R14::T000567", + "skos:altLabel": "567", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SUNAAPFErrorCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000567", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Incremented each time an error is encountered. The APF interface provides a mechanism to access error messages. If the error counter increases between frames, the operator or control system can retrieve the accumulated error message(s). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000534/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000534/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000534/2/" + }, + "dce:identifier": "SDN:R14::T000534", + "pav:version": "2", + "skos:notation": "SDN:R14::T000534", + "skos:altLabel": "534", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryPistonPumpOn_volts" + }, + "dc:identifier": "SDN:R14::T000534", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Buoyancy pump voltage. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100065/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100065/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100065/2/" + }, + "dce:identifier": "SDN:R14::T100065", + "pav:version": "2", + "skos:notation": "SDN:R14::T100065", + "skos:altLabel": "65.1", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_ValveActionsAtSurface_minutes" + }, + "dc:identifier": "SDN:R14::T100065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the basic valve actions which is computed by the float from preceding cycles. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000233/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000233/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000233/2/" + }, + "dce:identifier": "SDN:R14::T000233", + "pav:version": "2", + "skos:notation": "SDN:R14::T000233", + "skos:altLabel": "233", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SpyFramesEmitted_COUNT" + }, + "dc:identifier": "SDN:R14::T000233", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct spy frames emitted. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000511/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000511/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000511/2/" + }, + "dce:identifier": "SDN:R14::T000511", + "pav:version": "2", + "skos:notation": "SDN:R14::T000511", + "skos:altLabel": "511", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_MotorStartProfile_amps" + }, + "dc:identifier": "SDN:R14::T000511", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Motor current in profile depth. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000195/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000195/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000195/2/" + }, + "dce:identifier": "SDN:R14::T000195", + "pav:version": "2", + "skos:notation": "SDN:R14::T000195", + "skos:altLabel": "195", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PRESSamplesDuringDescentToPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pressure samples collected as the float descends from the Shallow to the park pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000344/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000344/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000344/2/" + }, + "dce:identifier": "SDN:R14::T000344", + "pav:version": "2", + "skos:notation": "SDN:R14::T000344", + "skos:altLabel": "344", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ArgosTransmitterExceptionStatus_bit" + }, + "dc:identifier": "SDN:R14::T000344", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether an Argos transmitter exception has been detected. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000257/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000257/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000257/2/" + }, + "dce:identifier": "SDN:R14::T000257", + "pav:version": "2", + "skos:notation": "SDN:R14::T000257", + "skos:altLabel": "257", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TEMPSampleErrorDeepZoneDuringAscending_COUNT" + }, + "dc:identifier": "SDN:R14::T000257", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Error of temperature measurements in deep zone during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000409/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000409/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000409/2/" + }, + "dce:identifier": "SDN:R14::T000409", + "pav:version": "2", + "skos:notation": "SDN:R14::T000409", + "skos:altLabel": "409", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_TUR3ProfileReductionBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000409", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 profile reduction Deep zone slices thickness - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000535/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000535/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000535/2/" + }, + "dce:identifier": "SDN:R14::T000535", + "pav:version": "2", + "skos:notation": "SDN:R14::T000535", + "skos:altLabel": "535", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryProfileNoLoad_volts" + }, + "dc:identifier": "SDN:R14::T000535", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage just before the profile begins, no load on the batteries. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000192/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000192/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000192/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Surface relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000192", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesShallowRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "192", + "skos:notation": "SDN:R14::T000192", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000192", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000192/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000154/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000154/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000154/2/" + }, + "dce:identifier": "SDN:R14::T000154", + "pav:version": "2", + "skos:notation": "SDN:R14::T000154", + "skos:altLabel": "154", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClassB_COUNT" + }, + "dc:identifier": "SDN:R14::T000154", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class B. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000470/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000470/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000470/2/" + }, + "dce:identifier": "SDN:R14::T000470", + "pav:version": "2", + "skos:notation": "SDN:R14::T000470", + "skos:altLabel": "470", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpActionsAtSurface_seconds" + }, + "dc:identifier": "SDN:R14::T000470", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of pump actions at the surface. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000201/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000201/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000201/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on ascending profile. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000201", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnAscendingProfile_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "201", + "skos:notation": "SDN:R14::T000201", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000201", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000201/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100311/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100311/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100311/2/" + }, + "dce:identifier": "SDN:R14::T100311", + "pav:version": "2", + "skos:notation": "SDN:R14::T100311", + "skos:altLabel": "311.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_TelonicsPTTStatus_byte" + }, + "dc:identifier": "SDN:R14::T100311", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Implemented a status byte for the Telonics ST21 PTT to facilitate diagnostics. This byte records the state of 8 status bits for the Telonics PTT. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000219/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000219/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000219/2/" + }, + "dce:identifier": "SDN:R14::T000219", + "pav:version": "2", + "skos:notation": "SDN:R14::T000219", + "skos:altLabel": "219", + "dc:date": "2025-12-11 11:04:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesOkOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000219", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames ok on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000559/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000559/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000559/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium messages used to transmit data collected during the drift at profile depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000559", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileDriftIridiumMessages_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "559", + "skos:notation": "SDN:R14::T000559", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000559", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000559/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000001/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000001/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000001/2/" + }, + "dce:identifier": "SDN:R14::T000001", + "pav:version": "2", + "skos:notation": "SDN:R14::T000001", + "skos:altLabel": "1", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_GreyListPSAL_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Y=YES, N=NO or field is absent. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000494/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000494/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000494/2/" + }, + "dce:identifier": "SDN:R14::T000494", + "pav:version": "2", + "skos:notation": "SDN:R14::T000494", + "skos:altLabel": "494", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryInitialAtProfileDepth_mA" + }, + "dc:identifier": "SDN:R14::T000494", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery Current measured at bottom (park or pressure) at initial pump extension completion. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000225/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000225/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000225/2/" + }, + "dce:identifier": "SDN:R14::T000225", + "pav:version": "2", + "skos:notation": "SDN:R14::T000225", + "skos:altLabel": "225", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesRecombinedOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000225", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames recombined on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000503/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000503/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000503/2/" + }, + "dce:identifier": "SDN:R14::T000503", + "pav:version": "2", + "skos:notation": "SDN:R14::T000503", + "skos:altLabel": "503", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatterySampledbyFlntu_mA" + }, + "dc:identifier": "SDN:R14::T000503", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu sampled battery current. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000313/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000313/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000313/2/" + }, + "dce:identifier": "SDN:R14::T000313", + "pav:version": "2", + "skos:notation": "SDN:R14::T000313", + "skos:altLabel": "313", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ExceptionDetectedWhileParsingPPedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000313", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Exception detected while parsing the P pedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600271/2/" + }, + "dce:identifier": "SDN:R14::T600271", + "pav:version": "2", + "skos:notation": "SDN:R14::T600271", + "skos:altLabel": "271.6", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterIncommunicado_bit" + }, + "dc:identifier": "SDN:R14::T600271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the Argos transmitter attempt to communicate failed. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100470/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100470/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100470/2/" + }, + "dce:identifier": "SDN:R14::T100470", + "pav:version": "2", + "skos:notation": "SDN:R14::T100470", + "skos:altLabel": "470.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpActionsAdditionalAtSurfaceForGPSAcquisition_seconds" + }, + "dc:identifier": "SDN:R14::T100470", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of additional pump actions at the surface performed during GPS acquisition in case of insufficient buoyancy. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000476/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000476/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000476/2/" + }, + "dce:identifier": "SDN:R14::T000476", + "pav:version": "2", + "skos:notation": "SDN:R14::T000476", + "skos:altLabel": "476", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SampleFrequencyDuringDescent_seconds" + }, + "dc:identifier": "SDN:R14::T000476", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD descent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000249/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000249/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000249/2/" + }, + "dce:identifier": "SDN:R14::T000249", + "pav:version": "2", + "skos:notation": "SDN:R14::T000249", + "skos:altLabel": "249", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DOXYErrorsAscending_COUNT" + }, + "dc:identifier": "SDN:R14::T000249", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of DOXY Optode errors during profile. Zero if no sensor installed. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000527/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000527/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000527/2/" + }, + "dce:identifier": "SDN:R14::T000527", + "pav:version": "2", + "skos:notation": "SDN:R14::T000527", + "skos:altLabel": "527", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryFlntuParkEnd_volts" + }, + "dc:identifier": "SDN:R14::T000527", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured by Flntu at end of park. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000184/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000184/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000184/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Profile relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000184", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "184", + "skos:notation": "SDN:R14::T000184", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000184", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000184/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900015/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900015/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900015/2/" + }, + "dce:identifier": "SDN:R14::T900015", + "pav:version": "2", + "skos:notation": "SDN:R14::T900015", + "skos:altLabel": "900015", + "dc:date": "2025-12-11 11:04:54.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentToProfileMinPressure_dbar" + }, + "dc:identifier": "SDN:R14::T900015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum pressure during descent to profile. MC minus 3. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100557/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100557/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100557/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the ascent to surface phase. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100557", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "557.1", + "skos:notation": "SDN:R14::T100557", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100557", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100557/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000462/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000462/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000462/2/" + }, + "dce:identifier": "SDN:R14::T000462", + "pav:version": "2", + "skos:notation": "SDN:R14::T000462", + "skos:altLabel": "462", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_TransmissionLastHousekeepingMessage_seconds" + }, + "dc:identifier": "SDN:R14::T000462", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time required to transmit the last housekeeping message. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000039/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000039/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000039/2/" + }, + "dce:identifier": "SDN:R14::T000039", + "pav:version": "2", + "skos:notation": "SDN:R14::T000039", + "skos:altLabel": "39", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetAfterReset_dbar" + }, + "dc:identifier": "SDN:R14::T000039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure measured after pressure has been corrected on board the float. This is a relative measurement and no further correction is required. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required. This value used as a check on the autocorrecting of pressure onboard the float. Significant values may indicate a need for additional correction. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000323/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000323/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:42.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000323/2/" + }, + "dce:identifier": "SDN:R14::T000323", + "pav:version": "2", + "skos:notation": "SDN:R14::T000323", + "skos:altLabel": "323", + "dc:date": "2025-12-11 11:04:42.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PUnreliable_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000323", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : P unreliable (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000570/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000570/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000570/2/" + }, + "dce:identifier": "SDN:R14::T000570", + "pav:version": "2", + "skos:notation": "SDN:R14::T000570", + "skos:altLabel": "570", + "dc:date": "2025-12-11 11:05:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_SUNAAPFSupplyVoltage_volts" + }, + "dc:identifier": "SDN:R14::T000570", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Voltage measured inside SUNA via ADC. The voltage available to the SUNA just outside its power regulators. SUNA can operate on 6 to 18 VDC. This voltage allows the operator to monitor supply voltage, and in the case of a drop to make decisions on the continued operation of the SUNA. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000486/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000486/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000486/2/" + }, + "dce:identifier": "SDN:R14::T000486", + "pav:version": "2", + "skos:notation": "SDN:R14::T000486", + "skos:altLabel": "486", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_TUR3SampleFrequencyDuringDescent_seconds" + }, + "dc:identifier": "SDN:R14::T000486", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 descent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000133/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000133/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000133/2/" + }, + "dce:identifier": "SDN:R14::T000133", + "pav:version": "2", + "skos:notation": "SDN:R14::T000133", + "skos:altLabel": "133", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000133", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total number of samples collected during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900025/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900025/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900025/2/" + }, + "dce:identifier": "SDN:R14::T900025", + "pav:version": "2", + "skos:notation": "SDN:R14::T900025", + "skos:altLabel": "900025", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ParkMean_dbar" + }, + "dc:identifier": "SDN:R14::T900025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Mean pressure during the park phase. MC minus 4 or 296. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000217/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000217/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000217/2/" + }, + "dce:identifier": "SDN:R14::T000217", + "pav:version": "2", + "skos:notation": "SDN:R14::T000217", + "skos:altLabel": "217", + "dc:date": "2025-12-11 11:04:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000217", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100290/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100290/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100290/2/" + }, + "dce:identifier": "SDN:R14::T100290", + "pav:version": "2", + "skos:notation": "SDN:R14::T100290", + "skos:altLabel": "290.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FirstGroundingCyclePhase_NUMBER" + }, + "dc:identifier": "SDN:R14::T100290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Phase of the float life or cycle when the first grounding occurred. See the manual for phase definition - this will vary with float type. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000152/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000152/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000152/2/" + }, + "dce:identifier": "SDN:R14::T000152", + "pav:version": "2", + "skos:notation": "SDN:R14::T000152", + "skos:altLabel": "152", + "dc:date": "2025-12-11 11:05:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositions_COUNT" + }, + "dc:identifier": "SDN:R14::T000152", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total number of Argos positions received. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000296/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000296/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000296/2/" + }, + "dce:identifier": "SDN:R14::T000296", + "pav:version": "2", + "skos:notation": "SDN:R14::T000296", + "skos:altLabel": "296", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_OptodeFailed_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000296", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optode : Failed (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000580/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000580/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000580/2/" + }, + "dce:identifier": "SDN:R14::T000580", + "pav:version": "2", + "skos:notation": "SDN:R14::T000580", + "skos:altLabel": "580", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SubCyclesDoneSinceDeployment_COUNT" + }, + "dc:identifier": "SDN:R14::T000580", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NUMBER_SubCyclesDoneSinceDeployment. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000430/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000430/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000430/2/" + }, + "dce:identifier": "SDN:R14::T000430", + "pav:version": "2", + "skos:notation": "SDN:R14::T000430", + "skos:altLabel": "430", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumBeforeFill_inHg" + }, + "dc:identifier": "SDN:R14::T000430", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumBeforeFill. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000519/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000519/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000519/2/" + }, + "dce:identifier": "SDN:R14::T000519", + "pav:version": "2", + "skos:notation": "SDN:R14::T000519", + "skos:altLabel": "519", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery18V_volts" + }, + "dc:identifier": "SDN:R14::T000519", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 18v system. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000454/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000454/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000454/2/" + }, + "dce:identifier": "SDN:R14::T000454", + "pav:version": "2", + "skos:notation": "SDN:R14::T000454", + "skos:altLabel": "454", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_DOXYSampleFrequencyDuringAscent_seconds" + }, + "dc:identifier": "SDN:R14::T000454", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY ascent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000277/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000277/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000277/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "When is ice detection active - months in reverse order. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000277", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_BitMaskMonthsIceDetectionActive_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 11:03:58.0", + "skos:altLabel": "277", + "skos:notation": "SDN:R14::T000277", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000277", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000277/3/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000561/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000561/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000561/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the drift at profile depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000561", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileDriftSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "561", + "skos:notation": "SDN:R14::T000561", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000561", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000561/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100564/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100564/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100564/2/" + }, + "dce:identifier": "SDN:R14::T100564", + "pav:version": "2", + "skos:notation": "SDN:R14::T100564", + "skos:altLabel": "564.1", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsToLeaveReleasingSystem_COUNT" + }, + "dc:identifier": "SDN:R14::T100564", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions needed to leave the releasing system for floats deployed in Autonomous System for Argo float Release (ASFAR) mode. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200127/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200127/2/" + }, + "dce:identifier": "SDN:R14::T200127", + "pav:version": "2", + "skos:notation": "SDN:R14::T200127", + "skos:altLabel": "127.2", + "dc:date": "2025-12-11 11:04:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsWhenGroundedAtProfilePressure_COUNT" + }, + "dc:identifier": "SDN:R14::T200127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions needed to leave the sea bottom when grounded at profile pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000455/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000455/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000455/2/" + }, + "dce:identifier": "SDN:R14::T000455", + "pav:version": "2", + "skos:notation": "SDN:R14::T000455", + "skos:altLabel": "455", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_DOXYSampleFrequencyDuringDescent_seconds" + }, + "dc:identifier": "SDN:R14::T000455", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY descent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000120/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000120/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000120/2/" + }, + "dce:identifier": "SDN:R14::T000120", + "pav:version": "2", + "skos:notation": "SDN:R14::T000120", + "skos:altLabel": "120", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringDescentToProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000120", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions during descent to start profile pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000102/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000102/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000102/2/" + }, + "dce:identifier": "SDN:R14::T000102", + "pav:version": "2", + "skos:notation": "SDN:R14::T000102", + "skos:altLabel": "102", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkIridiumMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000102", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Iridium messages with park data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000478/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000478/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000478/2/" + }, + "dce:identifier": "SDN:R14::T000478", + "pav:version": "2", + "skos:notation": "SDN:R14::T000478", + "skos:altLabel": "478", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_Settling0_seconds" + }, + "dc:identifier": "SDN:R14::T000478", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_Settling0. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000209/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000209/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000209/2/" + }, + "dce:identifier": "SDN:R14::T000209", + "pav:version": "2", + "skos:notation": "SDN:R14::T000209", + "skos:altLabel": "209", + "dc:date": "2025-12-11 11:04:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FloatPTOrPTCFrames_COUNT" + }, + "dc:identifier": "SDN:R14::T000209", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - PT or PTC frames. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000265/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000265/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000265/2/" + }, + "dce:identifier": "SDN:R14::T000265", + "pav:version": "2", + "skos:notation": "SDN:R14::T000265", + "skos:altLabel": "265", + "dc:date": "2025-12-11 11:04:38.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_CPUBatteryVoltage_bit" + }, + "dc:identifier": "SDN:R14::T000265", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the status of the CPU battery voltage. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000144/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000144/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000144/2/" + }, + "dce:identifier": "SDN:R14::T000144", + "pav:version": "2", + "skos:notation": "SDN:R14::T000144", + "skos:altLabel": "144", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DeepSamplesDuringDescent_COUNT" + }, + "dc:identifier": "SDN:R14::T000144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples collected in deep area during descent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000422/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000422/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000422/2/" + }, + "dce:identifier": "SDN:R14::T000422", + "pav:version": "2", + "skos:notation": "SDN:R14::T000422", + "skos:altLabel": "422", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAirBladderFull_inHg" + }, + "dc:identifier": "SDN:R14::T000422", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal Vacuum when air (sleeve) bladder is full (IDG Var=VACa). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000075/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000075/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000075/2/" + }, + "dce:identifier": "SDN:R14::T000075", + "pav:version": "2", + "skos:notation": "SDN:R14::T000075", + "skos:altLabel": "75", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TimeGrounded_HHMM" + }, + "dc:identifier": "SDN:R14::T000075", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time the float grounded. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000168/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000168/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000168/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Profile relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000168", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "168", + "skos:notation": "SDN:R14::T000168", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000168", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000168/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:47.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100278/2/" + }, + "dce:identifier": "SDN:R14::T100278", + "pav:version": "2", + "skos:notation": "SDN:R14::T100278", + "skos:altLabel": "278.1", + "dc:date": "2025-12-11 11:04:47.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDFastPressureError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T100278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is an error on CTD fast pressure command. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000446/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000446/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000446/2/" + }, + "dce:identifier": "SDN:R14::T000446", + "pav:version": "2", + "skos:notation": "SDN:R14::T000446", + "skos:altLabel": "446", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_Ascent1900DB_seconds" + }, + "dc:identifier": "SDN:R14::T000446", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_Ascent1900DB. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100556/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100556/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100556/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100556", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "556.1", + "skos:notation": "SDN:R14::T100556", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100556", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100556/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000424/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000424/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000424/2/" + }, + "dce:identifier": "SDN:R14::T000424", + "pav:version": "2", + "skos:notation": "SDN:R14::T000424", + "skos:altLabel": "424", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumOilBladderEmpty_inHg" + }, + "dc:identifier": "SDN:R14::T000424", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal vacuum when all oil is inside pressure case. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000112/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000112/2/" + }, + "dce:identifier": "SDN:R14::T000112", + "pav:version": "2", + "skos:notation": "SDN:R14::T000112", + "skos:altLabel": "112", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToProfileEntriesInProfileMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T000112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent to profile pressure: number of entries in margin around profile pressure target - specifically, how many times the float enters the band of pressure surrounding the target profile pressure (generally +/- 30db). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000191/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000191/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000191/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Surface absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000191", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesShallowAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "191", + "skos:notation": "SDN:R14::T000191", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000191", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000191/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000085/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000085/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000085/2/" + }, + "dce:identifier": "SDN:R14::T000085", + "pav:version": "2", + "skos:notation": "SDN:R14::T000085", + "skos:altLabel": "85", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_FirstEmergencyAscent_dbar" + }, + "dc:identifier": "SDN:R14::T000085", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure that triggered the first emergency ascent. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100391/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100391/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100391/2/" + }, + "dce:identifier": "SDN:R14::T100391", + "pav:version": "2", + "skos:notation": "SDN:R14::T100391", + "skos:altLabel": "391.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ExceededMaximumProfileDepth_dbar" + }, + "dc:identifier": "SDN:R14::T100391", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure where the float exceeds its maximum profile depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000136/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000136/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000136/2/" + }, + "dce:identifier": "SDN:R14::T000136", + "pav:version": "2", + "skos:notation": "SDN:R14::T000136", + "skos:altLabel": "136", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples3rdBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000136", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000414/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000414/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000414/2/" + }, + "dce:identifier": "SDN:R14::T000414", + "pav:version": "2", + "skos:notation": "SDN:R14::T000414", + "skos:altLabel": "414", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_WhenInWaterSensed_degC" + }, + "dc:identifier": "SDN:R14::T000414", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature from P,T,S when in water sensed. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000071/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000071/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000071/2/" + }, + "dce:identifier": "SDN:R14::T000071", + "pav:version": "2", + "skos:notation": "SDN:R14::T000071", + "skos:altLabel": "71", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FloatDateTimeDownTimeExpired_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T000071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of expiry of the descent time and beginning of ascent. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400488/2/" + }, + "dce:identifier": "SDN:R14::T400488", + "pav:version": "2", + "skos:notation": "SDN:R14::T400488", + "skos:altLabel": "488.4", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredDuringDescentToProfile_cm^3" + }, + "dc:identifier": "SDN:R14::T400488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume transferred from the external bladder during the descent to start profile pressure. This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToProfile_COUNT valve actions (Id 125). Reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000244/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000244/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000244/2/" + }, + "dce:identifier": "SDN:R14::T000244", + "pav:version": "2", + "skos:notation": "SDN:R14::T000244", + "skos:altLabel": "244", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesTechnical_COUNT" + }, + "dc:identifier": "SDN:R14::T000244", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - Technical frames. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000491/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000491/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000491/2/" + }, + "dce:identifier": "SDN:R14::T000491", + "pav:version": "2", + "skos:notation": "SDN:R14::T000491", + "skos:altLabel": "491", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryFlntu_mA" + }, + "dc:identifier": "SDN:R14::T000491", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current measured when Flntu sampled at unspecified time in profile. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000438/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000438/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:57.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000438/2/" + }, + "dce:identifier": "SDN:R14::T000438", + "pav:version": "2", + "skos:notation": "SDN:R14::T000438", + "skos:altLabel": "438", + "dc:date": "2025-12-11 11:04:57.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMPERATURE_InternalVacuumProfileStart_degC" + }, + "dc:identifier": "SDN:R14::T000438", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal tube temperature at the profile depth. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000095/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000095/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000095/2/" + }, + "dce:identifier": "SDN:R14::T000095", + "pav:version": "2", + "skos:notation": "SDN:R14::T000095", + "skos:altLabel": "95", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_LastAscentPumpedRawSample_dbar" + }, + "dc:identifier": "SDN:R14::T000095", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last (shallowest) pumped raw pressure sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped). This may be duplicated in the traj files with MC599. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600104/2/" + }, + "dce:identifier": "SDN:R14::T600104", + "pav:version": "2", + "skos:notation": "SDN:R14::T600104", + "skos:altLabel": "104.6", + "dc:date": "2025-12-11 11:04:51.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RemoteControlCommandOK_COUNT" + }, + "dc:identifier": "SDN:R14::T600104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of remote control commands successfully considered. The float can receive message with multiple remote commands. It reports the number of received messages (in FLAG_RemoteControlMessageOK_COUNT and FLAG_RemoteControlMessageKO_COUNT) and also the the number of received commands (in these 2 new labels). See ID 310. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100303/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100303/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100303/2/" + }, + "dce:identifier": "SDN:R14::T100303", + "pav:version": "2", + "skos:notation": "SDN:R14::T100303", + "skos:altLabel": "303.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_InitialCheckError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T100303", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Auto-test is performed at the beginning of the mission (Either 0 = Problem, 1 = OK, or detailed auto-test for float hardware resulting in a detailed code for each tested sub-part). Template_Values:{unit:[LOGICAL, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000373/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000373/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000373/2/" + }, + "dce:identifier": "SDN:R14::T000373", + "pav:version": "2", + "skos:notation": "SDN:R14::T000373", + "skos:altLabel": "373", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescendingProfileReductionBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000373", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descending profile reduction Deep zone slices thickness - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000160/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000160/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000160/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Deep absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000160", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesDeepAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "160", + "skos:notation": "SDN:R14::T000160", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000160", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000160/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000309/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000309/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000309/2/" + }, + "dce:identifier": "SDN:R14::T000309", + "pav:version": "2", + "skos:notation": "SDN:R14::T000309", + "skos:altLabel": "309", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_RemoteControlMessageKO_COUNT" + }, + "dc:identifier": "SDN:R14::T000309", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of received messages which have been rejected by the float. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900030/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900030/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900030/2/" + }, + "dce:identifier": "SDN:R14::T900030", + "pav:version": "2", + "skos:notation": "SDN:R14::T900030", + "skos:altLabel": "900030", + "dc:date": "2025-12-11 11:04:54.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PSAL_LastAscentPumpedRawSample_psu" + }, + "dc:identifier": "SDN:R14::T900030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Last (shallowest) pumped raw salinity sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped). MC599. Template_Values:{unit:[psu, mpsu]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000104/2/" + }, + "dce:identifier": "SDN:R14::T000104", + "pav:version": "2", + "skos:notation": "SDN:R14::T000104", + "skos:altLabel": "104", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_IridiumPacketsReceivedPreviousSession_COUNT" + }, + "dc:identifier": "SDN:R14::T000104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Incoming Iridium Packets Received during previous session. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000054/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000054/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000054/2/" + }, + "dce:identifier": "SDN:R14::T000054", + "pav:version": "2", + "skos:notation": "SDN:R14::T000054", + "skos:altLabel": "54", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_StartDescentToProfile_hours" + }, + "dc:identifier": "SDN:R14::T000054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when descent to profile pressure starts. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_PARK_END and JULD with MC=300. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000119/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000119/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000119/2/" + }, + "dce:identifier": "SDN:R14::T000119", + "pav:version": "2", + "skos:notation": "SDN:R14::T000119", + "skos:altLabel": "119", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringDescentToPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000119", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions between the crossing of the gap threshold and the end of descent at park pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000128/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000128/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000128/2/" + }, + "dce:identifier": "SDN:R14::T000128", + "pav:version": "2", + "skos:notation": "SDN:R14::T000128", + "skos:altLabel": "128", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorActionsDuringProfileDrift_COUNT" + }, + "dc:identifier": "SDN:R14::T000128", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of motor actions while drifting at profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000406/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000406/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000406/2/" + }, + "dce:identifier": "SDN:R14::T000406", + "pav:version": "2", + "skos:notation": "SDN:R14::T000406", + "skos:altLabel": "406", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ShallowestInProfile_dbar" + }, + "dc:identifier": "SDN:R14::T000406", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Shallowest profile point. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000063/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000063/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000063/2/" + }, + "dce:identifier": "SDN:R14::T000063", + "pav:version": "2", + "skos:notation": "SDN:R14::T000063", + "skos:altLabel": "63", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TimeFirstParkSample_hours" + }, + "dc:identifier": "SDN:R14::T000063", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float internal clock time of the first park sample. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000566/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000566/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000566/2/" + }, + "dce:identifier": "SDN:R14::T000566", + "pav:version": "2", + "skos:notation": "SDN:R14::T000566", + "skos:altLabel": "566", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_VectorToSensorBoardsDialogErrors_COUNT" + }, + "dc:identifier": "SDN:R14::T000566", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of dialog errors between vector and sensor boards. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000341/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000341/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000341/2/" + }, + "dce:identifier": "SDN:R14::T000341", + "pav:version": "2", + "skos:notation": "SDN:R14::T000341", + "skos:altLabel": "341", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_TimerDone_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000341", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Timer done (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400104/2/" + }, + "dce:identifier": "SDN:R14::T400104", + "pav:version": "2", + "skos:notation": "SDN:R14::T400104", + "skos:altLabel": "104.4", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_InAirIridiumPackets_COUNT" + }, + "dc:identifier": "SDN:R14::T400104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit sensor data collected during the in air measurement phase. Internal counter measured by the float. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000213/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000213/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000213/2/" + }, + "dce:identifier": "SDN:R14::T000213", + "pav:version": "2", + "skos:notation": "SDN:R14::T000213", + "skos:altLabel": "213", + "dc:date": "2025-12-11 11:04:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesCrcOkOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000213", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames received with crc ok on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000460/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000460/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000460/2/" + }, + "dce:identifier": "SDN:R14::T000460", + "pav:version": "2", + "skos:notation": "SDN:R14::T000460", + "skos:altLabel": "460", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SinceLastIridiumGPSFix_DD" + }, + "dc:identifier": "SDN:R14::T000460", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Days since the last GPS fix/Hours since the Last GPS Fix (HH). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000087/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000087/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000087/2/" + }, + "dce:identifier": "SDN:R14::T000087", + "pav:version": "2", + "skos:notation": "SDN:R14::T000087", + "skos:altLabel": "87", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_EmergencyAscent_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000087", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether an emergency ascent was performed. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000376/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000376/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000376/2/" + }, + "dce:identifier": "SDN:R14::T000376", + "pav:version": "2", + "skos:notation": "SDN:R14::T000376", + "skos:altLabel": "376", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentStartAfterReset_dbar" + }, + "dc:identifier": "SDN:R14::T000376", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure after pressure reset just prior to descent (IDG VAR=PFS). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000365/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000365/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000365/2/" + }, + "dce:identifier": "SDN:R14::T000365", + "pav:version": "2", + "skos:notation": "SDN:R14::T000365", + "skos:altLabel": "365", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscendingProfileReductionBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000365", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction Deep zone slices thickness - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000023/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000023/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000023/2/" + }, + "dce:identifier": "SDN:R14::T000023", + "pav:version": "2", + "skos:notation": "SDN:R14::T000023", + "skos:altLabel": "23", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "IRRADIANCE_W3_MeanBeforeAscent_uW/cm^2/nm" + }, + "dc:identifier": "SDN:R14::T000023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[uW/cm^2/nm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000506/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000360/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000155/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000215/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000492/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000231/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000457/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000204/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000441/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000541/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000425/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100260/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000489/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000220/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000554/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000268/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000134/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100546/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000163/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000228/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000110/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000331/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000473/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000538/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000158/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000347/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000252/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000282/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000317/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000315/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000250/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000384/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000552/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100115/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000449/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000298/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000520/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000266/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T120127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000363/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000568/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000428/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000522/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000536/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000193/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000471/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000495/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000226/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000142/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000161/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000504/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000528/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000301/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000487/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000284/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000433/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000121/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000479/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000169/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000447/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000234/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200556/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000105/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000395/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000544/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000107/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000174/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200554/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000239/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000571/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000333/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000302/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000465/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000318/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000253/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100118/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000285/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000221/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000245/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400520/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000180/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000523/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000444/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000509/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000269/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100123/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000129/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000172/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000223/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000539/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000474/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000557/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000229/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000507/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000164/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000442/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000355/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000410/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100520/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000514/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000156/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000434/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000458/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000334/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000497/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000426/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000166/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000385/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000466/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000113/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000276/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000123/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000345/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000280/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000369/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000255/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000404/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000171/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000236/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100287/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200557/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000550/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000387/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000481/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000546/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000542/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100105/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200260/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100407/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000232/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000450/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000510/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000366/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000515/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000260/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000325/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000525/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000558/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100398/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000493/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000224/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100492/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000498/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000526/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000183/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000461/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100571/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000216/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000304/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000151/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000124/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000477/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000371/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000208/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000287/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000143/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000436/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000167/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000530/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000445/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000111/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000256/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100245/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000413/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000350/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000237/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000159/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000415/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000578/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000103/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000396/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000405/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000340/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000482/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000429/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000364/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000547/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000292/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000388/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000357/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000332/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000356/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000291/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100132/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000326/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000300/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200520/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000420/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000324/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100330/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000336/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000348/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000283/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100124/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000240/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000316/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000305/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000251/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100361/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000468/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100527/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000115/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000275/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T210407/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000562/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000299/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000372/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000288/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000437/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000521/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000267/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000247/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000531/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000545/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000480/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000569/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000235/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000513/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000170/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000537/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000472/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000579/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000310/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000496/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100554/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000227/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000505/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000162/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300557/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000440/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000320/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000529/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000464/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000293/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000130/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000358/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000432/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000452/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000368/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000517/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100288/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000456/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000391/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000178/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000122/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000272/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000421/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000337/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000448/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100558/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T110127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000431/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100493/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000114/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000351/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100461/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200571/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000469/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000116/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000400/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100273/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000106/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000279/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000563/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000210/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000399/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200407/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000367/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000342/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000258/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000407/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000335/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000270/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000352/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000501/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000417/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000303/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000311/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000327/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000262/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000321/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000540/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000484/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000286/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000131/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000549/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000294/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000230/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000359/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000319/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100418/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000254/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100364/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000453/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000518/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000556/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000263/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000222/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000328/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T700271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000500/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000246/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000524/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300520/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000483/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000214/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000242/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000238/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000516/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000307/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000401/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000475/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000206/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000564/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000141/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000211/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200361/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000499/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000374/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000508/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000165/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000467/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000533/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200418/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000202/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000411/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000343/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000259/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000157/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000408/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000435/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000153/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000370/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000353/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000218/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000502/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000459/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000418/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000125/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000403/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000312/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000427/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000362/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000485/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000386/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000132/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000117/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000295/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000330/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400557/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100529/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000354/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000560/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000109/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000264/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000322/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000329/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000346/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000274/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000423/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000281/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000339/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300407/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000314/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000243/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000338/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000273/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200558/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000308/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000297/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000118/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000402/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000306/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000565/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000241/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000212/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000375/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000543/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000289/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000567/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000534/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000233/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000511/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000344/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000257/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000409/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000535/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000192/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000154/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000201/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100311/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000219/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000559/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000494/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000225/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000503/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000313/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000476/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000249/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000527/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000184/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100557/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000462/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000323/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000570/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000486/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000133/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000217/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000152/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000296/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000580/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000430/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000519/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000454/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000277/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000561/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100564/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000455/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000120/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000102/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000478/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000209/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000265/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000422/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000168/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000446/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100556/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000424/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000191/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100391/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000414/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000244/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000491/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000438/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100303/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000373/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000160/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000309/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000119/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000128/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000406/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000566/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000341/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000213/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000460/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000376/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000365/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of technical parameters reported by a float at every cycle. Technical parameter names are stored in the float 'tech.nc' file, under TECHNICAL_PARAMETER_NAME, which is populated by R14 prefLabel. Detailed information (incl. Template_Values explanation) is in the user manual (https://dx.doi.org/10.13155/29825), in the Reference Table 14 section.", + "dc:title": "Argo technical parameter names", + "skos:prefLabel": "Argo technical parameter names", + "owl:versionInfo": "6", + "dc:date": "2026-03-27 02:00:00.0", + "skos:altLabel": "TECHNICAL_PARAMETER_NAME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "TECHNICAL_PARAMETER_NAME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R15.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R15.jsonld new file mode 100644 index 0000000..819a526 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R15.jsonld @@ -0,0 +1,6329 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/687/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/687/1/" + }, + "dce:identifier": "SDN:R15::687", + "pav:version": "1", + "skos:notation": "SDN:R15::687", + "skos:altLabel": "687", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-13" + }, + "dc:identifier": "SDN:R15::687", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (TST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/435/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/435/1/" + }, + "dce:identifier": "SDN:R15::435", + "pav:version": "1", + "skos:notation": "SDN:R15::435", + "skos:altLabel": "435", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-15" + }, + "dc:identifier": "SDN:R15::435", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DPST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/810/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/810/1/" + }, + "dce:identifier": "SDN:R15::810", + "pav:version": "1", + "skos:notation": "SDN:R15::810", + "skos:altLabel": "810", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET+10" + }, + "dc:identifier": "SDN:R15::810", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/690/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/690/1/" + }, + "dce:identifier": "SDN:R15::690", + "pav:version": "1", + "skos:notation": "SDN:R15::690", + "skos:altLabel": "690", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-10" + }, + "dc:identifier": "SDN:R15::690", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards TST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/499/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/499/1/" + }, + "dce:identifier": "SDN:R15::499", + "pav:version": "1", + "skos:notation": "SDN:R15::499", + "skos:altLabel": "499", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-1" + }, + "dc:identifier": "SDN:R15::499", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards AST (see AST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/248/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/248/1/" + }, + "dce:identifier": "SDN:R15::248", + "pav:version": "1", + "skos:notation": "SDN:R15::248", + "skos:altLabel": "248", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-2" + }, + "dc:identifier": "SDN:R15::248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards PST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/239/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/239/1/" + }, + "dce:identifier": "SDN:R15::239", + "pav:version": "1", + "skos:notation": "SDN:R15::239", + "skos:altLabel": "239", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-11" + }, + "dc:identifier": "SDN:R15::239", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/444/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/444/1/" + }, + "dce:identifier": "SDN:R15::444", + "pav:version": "1", + "skos:notation": "SDN:R15::444", + "skos:altLabel": "444", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-6" + }, + "dc:identifier": "SDN:R15::444", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DPST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/148/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/148/1/" + }, + "dce:identifier": "SDN:R15::148", + "pav:version": "1", + "skos:notation": "SDN:R15::148", + "skos:altLabel": "148", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-2" + }, + "dc:identifier": "SDN:R15::148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards FST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/289/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/289/1/" + }, + "dce:identifier": "SDN:R15::289", + "pav:version": "1", + "skos:notation": "SDN:R15::289", + "skos:altLabel": "289", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-11" + }, + "dc:identifier": "SDN:R15::289", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/485/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/485/1/" + }, + "dce:identifier": "SDN:R15::485", + "pav:version": "1", + "skos:notation": "SDN:R15::485", + "skos:altLabel": "485", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-15" + }, + "dc:identifier": "SDN:R15::485", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (AST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/696/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/696/1/" + }, + "dce:identifier": "SDN:R15::696", + "pav:version": "1", + "skos:notation": "SDN:R15::696", + "skos:altLabel": "696", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-4" + }, + "dc:identifier": "SDN:R15::696", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to TST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/600/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/600/1/" + }, + "dce:identifier": "SDN:R15::600", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/AET/" + }, + "skos:notation": "SDN:R15::600", + "skos:altLabel": "600", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET" + }, + "dc:identifier": "SDN:R15::600", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at the end of ascent." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/790/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/790/1/" + }, + "dce:identifier": "SDN:R15::790", + "pav:version": "1", + "skos:notation": "SDN:R15::790", + "skos:altLabel": "790", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-10" + }, + "dc:identifier": "SDN:R15::790", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards TET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/90/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/90/1/" + }, + "dce:identifier": "SDN:R15::90", + "pav:version": "1", + "skos:notation": "SDN:R15::90", + "skos:altLabel": "90", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-10" + }, + "dc:identifier": "SDN:R15::90", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/140/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/140/1/" + }, + "dce:identifier": "SDN:R15::140", + "pav:version": "1", + "skos:notation": "SDN:R15::140", + "skos:altLabel": "140", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-10" + }, + "dc:identifier": "SDN:R15::140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards FST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/538/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/538/1/" + }, + "dce:identifier": "SDN:R15::538", + "pav:version": "1", + "skos:notation": "SDN:R15::538", + "skos:altLabel": "538", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-12" + }, + "dc:identifier": "SDN:R15::538", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DAST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/394/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/394/1/" + }, + "dce:identifier": "SDN:R15::394", + "pav:version": "1", + "skos:notation": "SDN:R15::394", + "skos:altLabel": "394", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-6" + }, + "dc:identifier": "SDN:R15::394", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DDET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/494/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/494/1/" + }, + "dce:identifier": "SDN:R15::494", + "pav:version": "1", + "skos:notation": "SDN:R15::494", + "skos:altLabel": "494", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-6" + }, + "dc:identifier": "SDN:R15::494", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards AST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/110/", + "pav:authoredOn": "2025-09-02 12:51:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/110/1/" + }, + "dce:identifier": "SDN:R15::110", + "pav:version": "1", + "skos:notation": "SDN:R15::110", + "skos:altLabel": "110", + "dc:date": "2025-09-02 12:51:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST+10" + }, + "dc:identifier": "SDN:R15::110", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/146/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/146/1/" + }, + "dce:identifier": "SDN:R15::146", + "pav:version": "1", + "skos:notation": "SDN:R15::146", + "skos:altLabel": "146", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-4" + }, + "dc:identifier": "SDN:R15::146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to FST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/0/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/0/1/" + }, + "dce:identifier": "SDN:R15::0", + "pav:version": "1", + "skos:notation": "SDN:R15::0", + "skos:altLabel": "0", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Launch time" + }, + "dc:identifier": "SDN:R15::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Launch time and location of the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/385/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/385/1/" + }, + "dce:identifier": "SDN:R15::385", + "pav:version": "1", + "skos:notation": "SDN:R15::385", + "skos:altLabel": "385", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-15" + }, + "dc:identifier": "SDN:R15::385", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DDET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/688/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/688/1/" + }, + "dce:identifier": "SDN:R15::688", + "pav:version": "1", + "skos:notation": "SDN:R15::688", + "skos:altLabel": "688", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-12" + }, + "dc:identifier": "SDN:R15::688", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (TST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/298/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/298/1/" + }, + "dce:identifier": "SDN:R15::298", + "pav:version": "1", + "skos:notation": "SDN:R15::298", + "skos:altLabel": "298", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-2" + }, + "dc:identifier": "SDN:R15::298", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards PET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/187/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/187/1/" + }, + "dce:identifier": "SDN:R15::187", + "pav:version": "1", + "skos:notation": "SDN:R15::187", + "skos:altLabel": "187", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-13" + }, + "dc:identifier": "SDN:R15::187", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/711/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/711/1/" + }, + "dce:identifier": "SDN:R15::711", + "pav:version": "1", + "skos:notation": "SDN:R15::711", + "skos:altLabel": "711", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "LMT+11" + }, + "dc:identifier": "SDN:R15::711", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/96/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/96/1/" + }, + "dce:identifier": "SDN:R15::96", + "pav:version": "1", + "skos:notation": "SDN:R15::96", + "skos:altLabel": "96", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-4" + }, + "dc:identifier": "SDN:R15::96", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/550/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/550/1/" + }, + "dce:identifier": "SDN:R15::550", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DAST/" + }, + "skos:notation": "SDN:R15::550", + "skos:altLabel": "550", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST" + }, + "dc:identifier": "SDN:R15::550", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at the start of the float's ascent from profile pressure to drift pressure. Used for floats that profile on descent and then move back up to drift pressure." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/149/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/149/1/" + }, + "dce:identifier": "SDN:R15::149", + "pav:version": "1", + "skos:notation": "SDN:R15::149", + "skos:altLabel": "149", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-1" + }, + "dc:identifier": "SDN:R15::149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards FST (see FST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/811/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/811/1/" + }, + "dce:identifier": "SDN:R15::811", + "pav:version": "1", + "skos:notation": "SDN:R15::811", + "skos:altLabel": "811", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET+11" + }, + "dc:identifier": "SDN:R15::811", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/389/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/389/1/" + }, + "dce:identifier": "SDN:R15::389", + "pav:version": "1", + "skos:notation": "SDN:R15::389", + "skos:altLabel": "389", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-11" + }, + "dc:identifier": "SDN:R15::389", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/702/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Earliest time of all messages received by telecommunications system - may or may not have a location fix." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R15::702", + "skos:prefLabel": { + "@language": "en", + "@value": "FMT" + }, + "owl:versionInfo": "1", + "dc:date": "2021-11-30 09:53:34.0", + "skos:altLabel": "702", + "skos:notation": "SDN:R15::702", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/RMC/current/RSPEC/" + }, + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FMT/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R15::702", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/702/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/87/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/87/1/" + }, + "dce:identifier": "SDN:R15::87", + "pav:version": "1", + "skos:notation": "SDN:R15::87", + "skos:altLabel": "87", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-13" + }, + "dc:identifier": "SDN:R15::87", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/500/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/500/1/" + }, + "dce:identifier": "SDN:R15::500", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/AST/" + }, + "skos:notation": "SDN:R15::500", + "skos:altLabel": "500", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST" + }, + "dc:identifier": "SDN:R15::500", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at the start of the float's ascent to the surface." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/198/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/198/1/" + }, + "dce:identifier": "SDN:R15::198", + "pav:version": "1", + "skos:notation": "SDN:R15::198", + "skos:altLabel": "198", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-2" + }, + "dc:identifier": "SDN:R15::198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/436/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/436/1/" + }, + "dce:identifier": "SDN:R15::436", + "pav:version": "1", + "skos:notation": "SDN:R15::436", + "skos:altLabel": "436", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-14" + }, + "dc:identifier": "SDN:R15::436", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DPST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/275/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/275/1/" + }, + "dce:identifier": "SDN:R15::275", + "pav:version": "1", + "skos:notation": "SDN:R15::275", + "skos:altLabel": "275", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RAFOS" + }, + "dc:identifier": "SDN:R15::275", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "RAFOS positions and times determined during drift." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/697/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/697/1/" + }, + "dce:identifier": "SDN:R15::697", + "pav:version": "1", + "skos:notation": "SDN:R15::697", + "skos:altLabel": "697", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-3" + }, + "dc:identifier": "SDN:R15::697", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards TST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/700/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/700/1/" + }, + "dce:identifier": "SDN:R15::700", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/TST/" + }, + "skos:notation": "SDN:R15::700", + "skos:altLabel": "700", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST" + }, + "dc:identifier": "SDN:R15::700", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time and location of the start of transmission for the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/196/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/196/1/" + }, + "dce:identifier": "SDN:R15::196", + "pav:version": "1", + "skos:notation": "SDN:R15::196", + "skos:altLabel": "196", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-4" + }, + "dc:identifier": "SDN:R15::196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/189/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/189/1/" + }, + "dce:identifier": "SDN:R15::189", + "pav:version": "1", + "skos:notation": "SDN:R15::189", + "skos:altLabel": "189", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-11" + }, + "dc:identifier": "SDN:R15::189", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/545/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/545/1/" + }, + "dce:identifier": "SDN:R15::545", + "pav:version": "1", + "skos:notation": "SDN:R15::545", + "skos:altLabel": "545", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-5" + }, + "dc:identifier": "SDN:R15::545", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DAST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/799/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/799/1/" + }, + "dce:identifier": "SDN:R15::799", + "pav:version": "1", + "skos:notation": "SDN:R15::799", + "skos:altLabel": "799", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-1" + }, + "dc:identifier": "SDN:R15::799", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards TET (see TET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/85/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/85/1/" + }, + "dce:identifier": "SDN:R15::85", + "pav:version": "1", + "skos:notation": "SDN:R15::85", + "skos:altLabel": "85", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-15" + }, + "dc:identifier": "SDN:R15::85", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/902/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/902/1/" + }, + "dce:identifier": "SDN:R15::902", + "pav:version": "1", + "skos:notation": "SDN:R15::902", + "skos:altLabel": "902", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Time before recovery" + }, + "dc:identifier": "SDN:R15::902", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last time before float recovery. For floats that have been recovered, it is important to know when this occurred. This time in the JULD array will be the last time before the float was recovered. Determined by inspection of data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/597/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/597/1/" + }, + "dce:identifier": "SDN:R15::597", + "pav:version": "1", + "skos:notation": "SDN:R15::597", + "skos:altLabel": "597", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-3" + }, + "dc:identifier": "SDN:R15::597", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards AET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/398/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/398/1/" + }, + "dce:identifier": "SDN:R15::398", + "pav:version": "1", + "skos:notation": "SDN:R15::398", + "skos:altLabel": "398", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-2" + }, + "dc:identifier": "SDN:R15::398", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DDET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/400/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/400/1/" + }, + "dce:identifier": "SDN:R15::400", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DDET/" + }, + "skos:notation": "SDN:R15::400", + "skos:altLabel": "400", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET" + }, + "dc:identifier": "SDN:R15::400", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float first approaches within 3% of the eventual deep drift/profile pressure. This variable is based on pressure only and can be measured or estimated." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/539/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/539/1/" + }, + "dce:identifier": "SDN:R15::539", + "pav:version": "1", + "skos:notation": "SDN:R15::539", + "skos:altLabel": "539", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-11" + }, + "dc:identifier": "SDN:R15::539", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/395/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/395/1/" + }, + "dce:identifier": "SDN:R15::395", + "pav:version": "1", + "skos:notation": "SDN:R15::395", + "skos:altLabel": "395", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-5" + }, + "dc:identifier": "SDN:R15::395", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DDET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/586/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/586/1/" + }, + "dce:identifier": "SDN:R15::586", + "pav:version": "1", + "skos:notation": "SDN:R15::586", + "skos:altLabel": "586", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-14" + }, + "dc:identifier": "SDN:R15::586", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (AET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/111/", + "pav:authoredOn": "2025-09-02 12:51:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/111/1/" + }, + "dce:identifier": "SDN:R15::111", + "pav:version": "1", + "skos:notation": "SDN:R15::111", + "skos:altLabel": "111", + "dc:date": "2025-09-02 12:51:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST+11" + }, + "dc:identifier": "SDN:R15::111", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/249/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/249/1/" + }, + "dce:identifier": "SDN:R15::249", + "pav:version": "1", + "skos:notation": "SDN:R15::249", + "skos:altLabel": "249", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-1" + }, + "dc:identifier": "SDN:R15::249", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards PST (see PST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/547/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/547/1/" + }, + "dce:identifier": "SDN:R15::547", + "pav:version": "1", + "skos:notation": "SDN:R15::547", + "skos:altLabel": "547", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-3" + }, + "dc:identifier": "SDN:R15::547", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DAST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/588/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/588/1/" + }, + "dce:identifier": "SDN:R15::588", + "pav:version": "1", + "skos:notation": "SDN:R15::588", + "skos:altLabel": "588", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-12" + }, + "dc:identifier": "SDN:R15::588", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (AET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/445/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/445/1/" + }, + "dce:identifier": "SDN:R15::445", + "pav:version": "1", + "skos:notation": "SDN:R15::445", + "skos:altLabel": "445", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-5" + }, + "dc:identifier": "SDN:R15::445", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DPST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/386/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/386/1/" + }, + "dce:identifier": "SDN:R15::386", + "pav:version": "1", + "skos:notation": "SDN:R15::386", + "skos:altLabel": "386", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-14" + }, + "dc:identifier": "SDN:R15::386", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DDET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/788/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/788/1/" + }, + "dce:identifier": "SDN:R15::788", + "pav:version": "1", + "skos:notation": "SDN:R15::788", + "skos:altLabel": "788", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-12" + }, + "dc:identifier": "SDN:R15::788", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (TET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/135/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/135/1/" + }, + "dce:identifier": "SDN:R15::135", + "pav:version": "1", + "skos:notation": "SDN:R15::135", + "skos:altLabel": "135", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-15" + }, + "dc:identifier": "SDN:R15::135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (FST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/486/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/486/1/" + }, + "dce:identifier": "SDN:R15::486", + "pav:version": "1", + "skos:notation": "SDN:R15::486", + "skos:altLabel": "486", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-14" + }, + "dc:identifier": "SDN:R15::486", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (AST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/138/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/138/1/" + }, + "dce:identifier": "SDN:R15::138", + "pav:version": "1", + "skos:notation": "SDN:R15::138", + "skos:altLabel": "138", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-12" + }, + "dc:identifier": "SDN:R15::138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (FST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/94/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/94/1/" + }, + "dce:identifier": "SDN:R15::94", + "pav:version": "1", + "skos:notation": "SDN:R15::94", + "skos:altLabel": "94", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-6" + }, + "dc:identifier": "SDN:R15::94", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/97/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/97/1/" + }, + "dce:identifier": "SDN:R15::97", + "pav:version": "1", + "skos:notation": "SDN:R15::97", + "skos:altLabel": "97", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-3" + }, + "dc:identifier": "SDN:R15::97", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/447/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/447/1/" + }, + "dce:identifier": "SDN:R15::447", + "pav:version": "1", + "skos:notation": "SDN:R15::447", + "skos:altLabel": "447", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-3" + }, + "dc:identifier": "SDN:R15::447", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DPST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/488/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/488/1/" + }, + "dce:identifier": "SDN:R15::488", + "pav:version": "1", + "skos:notation": "SDN:R15::488", + "skos:altLabel": "488", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-12" + }, + "dc:identifier": "SDN:R15::488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (AST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/LLT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FLT/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Surface times and locations (if available) during surface drift. Should be listed in chronological order." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R15::703", + "skos:prefLabel": { + "@language": "en", + "@value": "FMT+1" + }, + "owl:versionInfo": "1", + "dc:date": "2021-11-30 09:53:34.0", + "skos:altLabel": "703", + "skos:notation": "SDN:R15::703", + "pav:version": "1", + "dce:identifier": "SDN:R15::703", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/595/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/595/1/" + }, + "dce:identifier": "SDN:R15::595", + "pav:version": "1", + "skos:notation": "SDN:R15::595", + "skos:altLabel": "595", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-5" + }, + "dc:identifier": "SDN:R15::595", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards AET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/88/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/88/1/" + }, + "dce:identifier": "SDN:R15::88", + "pav:version": "1", + "skos:notation": "SDN:R15::88", + "skos:altLabel": "88", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-12" + }, + "dc:identifier": "SDN:R15::88", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/245/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/245/1/" + }, + "dce:identifier": "SDN:R15::245", + "pav:version": "1", + "skos:notation": "SDN:R15::245", + "skos:altLabel": "245", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-5" + }, + "dc:identifier": "SDN:R15::245", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards PST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/785/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/785/1/" + }, + "dce:identifier": "SDN:R15::785", + "pav:version": "1", + "skos:notation": "SDN:R15::785", + "skos:altLabel": "785", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-15" + }, + "dc:identifier": "SDN:R15::785", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (TET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/286/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/286/1/" + }, + "dce:identifier": "SDN:R15::286", + "pav:version": "1", + "skos:notation": "SDN:R15::286", + "skos:altLabel": "286", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-14" + }, + "dc:identifier": "SDN:R15::286", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (PET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/100/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/100/1/" + }, + "dce:identifier": "SDN:R15::100", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DST/" + }, + "skos:notation": "SDN:R15::100", + "skos:altLabel": "100", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST" + }, + "dc:identifier": "SDN:R15::100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made when float leaves the surface, beginning descent." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/501/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/501/1/" + }, + "dce:identifier": "SDN:R15::501", + "pav:version": "1", + "skos:notation": "SDN:R15::501", + "skos:altLabel": "501", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST+1" + }, + "dc:identifier": "SDN:R15::501", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Down-time end time: end date of the down-time parameter reported by APEX floats." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/199/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/199/1/" + }, + "dce:identifier": "SDN:R15::199", + "pav:version": "1", + "skos:notation": "SDN:R15::199", + "skos:altLabel": "199", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-1" + }, + "dc:identifier": "SDN:R15::199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DET (see DET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/496/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/496/1/" + }, + "dce:identifier": "SDN:R15::496", + "pav:version": "1", + "skos:notation": "SDN:R15::496", + "skos:altLabel": "496", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-4" + }, + "dc:identifier": "SDN:R15::496", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to AST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/794/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/794/1/" + }, + "dce:identifier": "SDN:R15::794", + "pav:version": "1", + "skos:notation": "SDN:R15::794", + "skos:altLabel": "794", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-6" + }, + "dc:identifier": "SDN:R15::794", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards TET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/438/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/438/1/" + }, + "dce:identifier": "SDN:R15::438", + "pav:version": "1", + "skos:notation": "SDN:R15::438", + "skos:altLabel": "438", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-12" + }, + "dc:identifier": "SDN:R15::438", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DPST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/293/", + "pav:authoredOn": "2025-09-02 12:51:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/293/1/" + }, + "dce:identifier": "SDN:R15::293", + "pav:version": "1", + "skos:notation": "SDN:R15::293", + "skos:altLabel": "293", + "dc:date": "2025-09-02 12:51:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-7" + }, + "dc:identifier": "SDN:R15::293", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Used to report PMEAN (Mean of pressure differences of park-level PT samples)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/797/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/797/1/" + }, + "dce:identifier": "SDN:R15::797", + "pav:version": "1", + "skos:notation": "SDN:R15::797", + "skos:altLabel": "797", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-3" + }, + "dc:identifier": "SDN:R15::797", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards TET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/296/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/296/1/" + }, + "dce:identifier": "SDN:R15::296", + "pav:version": "1", + "skos:notation": "SDN:R15::296", + "skos:altLabel": "296", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-4" + }, + "dc:identifier": "SDN:R15::296", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to PET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/236/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/236/1/" + }, + "dce:identifier": "SDN:R15::236", + "pav:version": "1", + "skos:notation": "SDN:R15::236", + "skos:altLabel": "236", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-14" + }, + "dc:identifier": "SDN:R15::236", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (PST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/299/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/299/1/" + }, + "dce:identifier": "SDN:R15::299", + "pav:version": "1", + "skos:notation": "SDN:R15::299", + "skos:altLabel": "299", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-1" + }, + "dc:identifier": "SDN:R15::299", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards PET (see PET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/495/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/495/1/" + }, + "dce:identifier": "SDN:R15::495", + "pav:version": "1", + "skos:notation": "SDN:R15::495", + "skos:altLabel": "495", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-5" + }, + "dc:identifier": "SDN:R15::495", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards AST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/147/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/147/1/" + }, + "dce:identifier": "SDN:R15::147", + "pav:version": "1", + "skos:notation": "SDN:R15::147", + "skos:altLabel": "147", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-3" + }, + "dc:identifier": "SDN:R15::147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards FST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/685/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/685/1/" + }, + "dce:identifier": "SDN:R15::685", + "pav:version": "1", + "skos:notation": "SDN:R15::685", + "skos:altLabel": "685", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-15" + }, + "dc:identifier": "SDN:R15::685", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (TST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/598/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/598/1/" + }, + "dce:identifier": "SDN:R15::598", + "pav:version": "1", + "skos:notation": "SDN:R15::598", + "skos:altLabel": "598", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-2" + }, + "dc:identifier": "SDN:R15::598", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards AET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/611/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/611/1/" + }, + "dce:identifier": "SDN:R15::611", + "pav:version": "1", + "skos:notation": "SDN:R15::611", + "skos:altLabel": "611", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET+11" + }, + "dc:identifier": "SDN:R15::611", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/240/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/240/1/" + }, + "dce:identifier": "SDN:R15::240", + "pav:version": "1", + "skos:notation": "SDN:R15::240", + "skos:altLabel": "240", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-10" + }, + "dc:identifier": "SDN:R15::240", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards PST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/610/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/610/1/" + }, + "dce:identifier": "SDN:R15::610", + "pav:version": "1", + "skos:notation": "SDN:R15::610", + "skos:altLabel": "610", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET+10" + }, + "dc:identifier": "SDN:R15::610", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/689/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/689/1/" + }, + "dce:identifier": "SDN:R15::689", + "pav:version": "1", + "skos:notation": "SDN:R15::689", + "skos:altLabel": "689", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-11" + }, + "dc:identifier": "SDN:R15::689", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/188/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/188/1/" + }, + "dce:identifier": "SDN:R15::188", + "pav:version": "1", + "skos:notation": "SDN:R15::188", + "skos:altLabel": "188", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-12" + }, + "dc:identifier": "SDN:R15::188", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/548/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/548/1/" + }, + "dce:identifier": "SDN:R15::548", + "pav:version": "1", + "skos:notation": "SDN:R15::548", + "skos:altLabel": "548", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-2" + }, + "dc:identifier": "SDN:R15::548", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DAST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/450/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/450/1/" + }, + "dce:identifier": "SDN:R15::450", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DPST/" + }, + "skos:notation": "SDN:R15::450", + "skos:altLabel": "450", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST" + }, + "dc:identifier": "SDN:R15::450", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float transitions to a deep park drift mission. This variable is only defined if the float enters a deep drift phase (i.e. DPST not defined in cases of constant deep pressure due to bottom hits, or buoyancy issues)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/589/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/589/1/" + }, + "dce:identifier": "SDN:R15::589", + "pav:version": "1", + "skos:notation": "SDN:R15::589", + "skos:altLabel": "589", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-11" + }, + "dc:identifier": "SDN:R15::589", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/537/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/537/1/" + }, + "dce:identifier": "SDN:R15::537", + "pav:version": "1", + "skos:notation": "SDN:R15::537", + "skos:altLabel": "537", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-13" + }, + "dc:identifier": "SDN:R15::537", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DAST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/387/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/387/1/" + }, + "dce:identifier": "SDN:R15::387", + "pav:version": "1", + "skos:notation": "SDN:R15::387", + "skos:altLabel": "387", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-13" + }, + "dc:identifier": "SDN:R15::387", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DDET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/144/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/144/1/" + }, + "dce:identifier": "SDN:R15::144", + "pav:version": "1", + "skos:notation": "SDN:R15::144", + "skos:altLabel": "144", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-6" + }, + "dc:identifier": "SDN:R15::144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards FST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/150/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/150/1/" + }, + "dce:identifier": "SDN:R15::150", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FST/" + }, + "skos:notation": "SDN:R15::150", + "skos:altLabel": "150", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST" + }, + "dc:identifier": "SDN:R15::150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when a float first becomes water-neutral." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/800/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/800/1/" + }, + "dce:identifier": "SDN:R15::800", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/TET/" + }, + "skos:notation": "SDN:R15::800", + "skos:altLabel": "800", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET" + }, + "dc:identifier": "SDN:R15::800", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time and location of the end of transmission for the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/185/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/185/1/" + }, + "dce:identifier": "SDN:R15::185", + "pav:version": "1", + "skos:notation": "SDN:R15::185", + "skos:altLabel": "185", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-15" + }, + "dc:identifier": "SDN:R15::185", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/235/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/235/1/" + }, + "dce:identifier": "SDN:R15::235", + "pav:version": "1", + "skos:notation": "SDN:R15::235", + "skos:altLabel": "235", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-15" + }, + "dc:identifier": "SDN:R15::235", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (PST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/238/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/238/1/" + }, + "dce:identifier": "SDN:R15::238", + "pav:version": "1", + "skos:notation": "SDN:R15::238", + "skos:altLabel": "238", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-12" + }, + "dc:identifier": "SDN:R15::238", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (PST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/535/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/535/1/" + }, + "dce:identifier": "SDN:R15::535", + "pav:version": "1", + "skos:notation": "SDN:R15::535", + "skos:altLabel": "535", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-15" + }, + "dc:identifier": "SDN:R15::535", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DAST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/448/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/448/1/" + }, + "dce:identifier": "SDN:R15::448", + "pav:version": "1", + "skos:notation": "SDN:R15::448", + "skos:altLabel": "448", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-2" + }, + "dc:identifier": "SDN:R15::448", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DPST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/489/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/489/1/" + }, + "dce:identifier": "SDN:R15::489", + "pav:version": "1", + "skos:notation": "SDN:R15::489", + "skos:altLabel": "489", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-11" + }, + "dc:identifier": "SDN:R15::489", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/695/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/695/1/" + }, + "dce:identifier": "SDN:R15::695", + "pav:version": "1", + "skos:notation": "SDN:R15::695", + "skos:altLabel": "695", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-5" + }, + "dc:identifier": "SDN:R15::695", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards TST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/194/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/194/1/" + }, + "dce:identifier": "SDN:R15::194", + "pav:version": "1", + "skos:notation": "SDN:R15::194", + "skos:altLabel": "194", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-6" + }, + "dc:identifier": "SDN:R15::194", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/437/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/437/1/" + }, + "dce:identifier": "SDN:R15::437", + "pav:version": "1", + "skos:notation": "SDN:R15::437", + "skos:altLabel": "437", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-13" + }, + "dc:identifier": "SDN:R15::437", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DPST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/246/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/246/1/" + }, + "dce:identifier": "SDN:R15::246", + "pav:version": "1", + "skos:notation": "SDN:R15::246", + "skos:altLabel": "246", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-4" + }, + "dc:identifier": "SDN:R15::246", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to PST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/699/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/699/1/" + }, + "dce:identifier": "SDN:R15::699", + "pav:version": "1", + "skos:notation": "SDN:R15::699", + "skos:altLabel": "699", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-1" + }, + "dc:identifier": "SDN:R15::699", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards TST (see TST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/701/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/701/1/" + }, + "dce:identifier": "SDN:R15::701", + "pav:version": "1", + "skos:notation": "SDN:R15::701", + "skos:altLabel": "701", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST+1" + }, + "dc:identifier": "SDN:R15::701", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission start time directly transmitted by an APEX float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/540/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/540/1/" + }, + "dce:identifier": "SDN:R15::540", + "pav:version": "1", + "skos:notation": "SDN:R15::540", + "skos:altLabel": "540", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-10" + }, + "dc:identifier": "SDN:R15::540", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DAST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/287/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/287/1/" + }, + "dce:identifier": "SDN:R15::287", + "pav:version": "1", + "skos:notation": "SDN:R15::287", + "skos:altLabel": "287", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-13" + }, + "dc:identifier": "SDN:R15::287", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (PET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/502/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/502/1/" + }, + "dce:identifier": "SDN:R15::502", + "pav:version": "1", + "skos:notation": "SDN:R15::502", + "skos:altLabel": "502", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST+2" + }, + "dc:identifier": "SDN:R15::502", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent start time directly transmitted by APEX floats." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/698/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/698/1/" + }, + "dce:identifier": "SDN:R15::698", + "pav:version": "1", + "skos:notation": "SDN:R15::698", + "skos:altLabel": "698", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-2" + }, + "dc:identifier": "SDN:R15::698", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards TST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/197/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/197/1/" + }, + "dce:identifier": "SDN:R15::197", + "pav:version": "1", + "skos:notation": "SDN:R15::197", + "skos:altLabel": "197", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-3" + }, + "dc:identifier": "SDN:R15::197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/704/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Latest time of all messages received by telecommunications system - may or may not have a location fix." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R15::704", + "skos:prefLabel": { + "@language": "en", + "@value": "LMT" + }, + "owl:versionInfo": "1", + "dc:date": "2021-11-30 09:53:34.0", + "skos:altLabel": "704", + "skos:notation": "SDN:R15::704", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/RMC/current/RSPEC/" + }, + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/LMT/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R15::704", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/704/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/203/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/203/1/" + }, + "dce:identifier": "SDN:R15::203", + "pav:version": "1", + "skos:notation": "SDN:R15::203", + "skos:altLabel": "203", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET+3" + }, + "dc:identifier": "SDN:R15::203", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest bin reached during descending profile." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/390/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/390/1/" + }, + "dce:identifier": "SDN:R15::390", + "pav:version": "1", + "skos:notation": "SDN:R15::390", + "skos:altLabel": "390", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-10" + }, + "dc:identifier": "SDN:R15::390", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DDET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/497/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/497/1/" + }, + "dce:identifier": "SDN:R15::497", + "pav:version": "1", + "skos:notation": "SDN:R15::497", + "skos:altLabel": "497", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-3" + }, + "dc:identifier": "SDN:R15::497", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards AST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/546/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/546/1/" + }, + "dce:identifier": "SDN:R15::546", + "pav:version": "1", + "skos:notation": "SDN:R15::546", + "skos:altLabel": "546", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-4" + }, + "dc:identifier": "SDN:R15::546", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DAST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/439/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/439/1/" + }, + "dce:identifier": "SDN:R15::439", + "pav:version": "1", + "skos:notation": "SDN:R15::439", + "skos:altLabel": "439", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-11" + }, + "dc:identifier": "SDN:R15::439", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/396/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/396/1/" + }, + "dce:identifier": "SDN:R15::396", + "pav:version": "1", + "skos:notation": "SDN:R15::396", + "skos:altLabel": "396", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-4" + }, + "dc:identifier": "SDN:R15::396", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DDET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/295/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/295/1/" + }, + "dce:identifier": "SDN:R15::295", + "pav:version": "1", + "skos:notation": "SDN:R15::295", + "skos:altLabel": "295", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-5" + }, + "dc:identifier": "SDN:R15::295", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards PET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/237/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/237/1/" + }, + "dce:identifier": "SDN:R15::237", + "pav:version": "1", + "skos:notation": "SDN:R15::237", + "skos:altLabel": "237", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-13" + }, + "dc:identifier": "SDN:R15::237", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (PST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/86/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/86/1/" + }, + "dce:identifier": "SDN:R15::86", + "pav:version": "1", + "skos:notation": "SDN:R15::86", + "skos:altLabel": "86", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-14" + }, + "dc:identifier": "SDN:R15::86", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/903/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/903/1/" + }, + "dce:identifier": "SDN:R15::903", + "pav:version": "1", + "skos:notation": "SDN:R15::903", + "skos:altLabel": "903", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX pressure offset" + }, + "dc:identifier": "SDN:R15::903", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure offset used to correct APEX pressure measurements." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/399/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/399/1/" + }, + "dce:identifier": "SDN:R15::399", + "pav:version": "1", + "skos:notation": "SDN:R15::399", + "skos:altLabel": "399", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-1" + }, + "dc:identifier": "SDN:R15::399", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DDET (see DDET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/89/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/89/1/" + }, + "dce:identifier": "SDN:R15::89", + "pav:version": "1", + "skos:notation": "SDN:R15::89", + "skos:altLabel": "89", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-11" + }, + "dc:identifier": "SDN:R15::89", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/244/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/244/1/" + }, + "dce:identifier": "SDN:R15::244", + "pav:version": "1", + "skos:notation": "SDN:R15::244", + "skos:altLabel": "244", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-6" + }, + "dc:identifier": "SDN:R15::244", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards PST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/587/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/587/1/" + }, + "dce:identifier": "SDN:R15::587", + "pav:version": "1", + "skos:notation": "SDN:R15::587", + "skos:altLabel": "587", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-13" + }, + "dc:identifier": "SDN:R15::587", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (AET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/686/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/686/1/" + }, + "dce:identifier": "SDN:R15::686", + "pav:version": "1", + "skos:notation": "SDN:R15::686", + "skos:altLabel": "686", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-14" + }, + "dc:identifier": "SDN:R15::686", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (TST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/901/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/901/1/" + }, + "dce:identifier": "SDN:R15::901", + "pav:version": "1", + "skos:notation": "SDN:R15::901", + "skos:altLabel": "901", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded" + }, + "dc:identifier": "SDN:R15::901", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Grounded flag. Configuration phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/440/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/440/1/" + }, + "dce:identifier": "SDN:R15::440", + "pav:version": "1", + "skos:notation": "SDN:R15::440", + "skos:altLabel": "440", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-10" + }, + "dc:identifier": "SDN:R15::440", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DPST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/397/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/397/1/" + }, + "dce:identifier": "SDN:R15::397", + "pav:version": "1", + "skos:notation": "SDN:R15::397", + "skos:altLabel": "397", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-3" + }, + "dc:identifier": "SDN:R15::397", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DDET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/200/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/200/1/" + }, + "dce:identifier": "SDN:R15::200", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DET/" + }, + "skos:notation": "SDN:R15::200", + "skos:altLabel": "200", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET" + }, + "dc:identifier": "SDN:R15::200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float first approaches within 3% of the eventual drift pressure. Float may be transitioning from the surface or from a deep profile. This variable is based on measured or estimated pressure only In the case of a float that overshoots the drift pressure on descent, DET is the time of the overshoot." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/786/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/786/1/" + }, + "dce:identifier": "SDN:R15::786", + "pav:version": "1", + "skos:notation": "SDN:R15::786", + "skos:altLabel": "786", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-14" + }, + "dc:identifier": "SDN:R15::786", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (TET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/446/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/446/1/" + }, + "dce:identifier": "SDN:R15::446", + "pav:version": "1", + "skos:notation": "SDN:R15::446", + "skos:altLabel": "446", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-4" + }, + "dc:identifier": "SDN:R15::446", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DPST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/285/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/285/1/" + }, + "dce:identifier": "SDN:R15::285", + "pav:version": "1", + "skos:notation": "SDN:R15::285", + "skos:altLabel": "285", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-15" + }, + "dc:identifier": "SDN:R15::285", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (PET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/710/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/710/1/" + }, + "dce:identifier": "SDN:R15::710", + "pav:version": "1", + "skos:notation": "SDN:R15::710", + "skos:altLabel": "710", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "LMT+10" + }, + "dc:identifier": "SDN:R15::710", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/694/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/694/1/" + }, + "dce:identifier": "SDN:R15::694", + "pav:version": "1", + "skos:notation": "SDN:R15::694", + "skos:altLabel": "694", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-6" + }, + "dc:identifier": "SDN:R15::694", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards TST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/789/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/789/1/" + }, + "dce:identifier": "SDN:R15::789", + "pav:version": "1", + "skos:notation": "SDN:R15::789", + "skos:altLabel": "789", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-11" + }, + "dc:identifier": "SDN:R15::789", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/195/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/195/1/" + }, + "dce:identifier": "SDN:R15::195", + "pav:version": "1", + "skos:notation": "SDN:R15::195", + "skos:altLabel": "195", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-5" + }, + "dc:identifier": "SDN:R15::195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/549/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/549/1/" + }, + "dce:identifier": "SDN:R15::549", + "pav:version": "1", + "skos:notation": "SDN:R15::549", + "skos:altLabel": "549", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-1" + }, + "dc:identifier": "SDN:R15::549", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DAST (see DAST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/137/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/137/1/" + }, + "dce:identifier": "SDN:R15::137", + "pav:version": "1", + "skos:notation": "SDN:R15::137", + "skos:altLabel": "137", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-13" + }, + "dc:identifier": "SDN:R15::137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (FST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/136/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/136/1/" + }, + "dce:identifier": "SDN:R15::136", + "pav:version": "1", + "skos:notation": "SDN:R15::136", + "skos:altLabel": "136", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-14" + }, + "dc:identifier": "SDN:R15::136", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (FST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/388/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/388/1/" + }, + "dce:identifier": "SDN:R15::388", + "pav:version": "1", + "skos:notation": "SDN:R15::388", + "skos:altLabel": "388", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-12" + }, + "dc:identifier": "SDN:R15::388", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DDET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/290/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/290/1/" + }, + "dce:identifier": "SDN:R15::290", + "pav:version": "1", + "skos:notation": "SDN:R15::290", + "skos:altLabel": "290", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-10" + }, + "dc:identifier": "SDN:R15::290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards PET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/487/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/487/1/" + }, + "dce:identifier": "SDN:R15::487", + "pav:version": "1", + "skos:notation": "SDN:R15::487", + "skos:altLabel": "487", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-13" + }, + "dc:identifier": "SDN:R15::487", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (AST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/139/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/139/1/" + }, + "dce:identifier": "SDN:R15::139", + "pav:version": "1", + "skos:notation": "SDN:R15::139", + "skos:altLabel": "139", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-11" + }, + "dc:identifier": "SDN:R15::139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/95/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/95/1/" + }, + "dce:identifier": "SDN:R15::95", + "pav:version": "1", + "skos:notation": "SDN:R15::95", + "skos:altLabel": "95", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-5" + }, + "dc:identifier": "SDN:R15::95", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/1100/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/1100/1/" + }, + "pav:authoredOn": "2025-09-29 14:51:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/1100/2/" + }, + "dce:identifier": "SDN:R15::1100", + "pav:version": "2", + "skos:notation": "SDN:R15::1100", + "skos:altLabel": "1100", + "dc:date": "2025-09-29 14:51:43.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "1100" + }, + "dc:identifier": "SDN:R15::1100", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This is a deprecated MC concerning DO measures, in air or near surface. It was replaced and should be updated to 599, 710 or 711 depending on the parameter and the in-air/near-surface status." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/590/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/590/1/" + }, + "dce:identifier": "SDN:R15::590", + "pav:version": "1", + "skos:notation": "SDN:R15::590", + "skos:altLabel": "590", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-10" + }, + "dc:identifier": "SDN:R15::590", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards AET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/250/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/250/1/" + }, + "dce:identifier": "SDN:R15::250", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/PST/" + }, + "skos:notation": "SDN:R15::250", + "skos:altLabel": "250", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST" + }, + "dc:identifier": "SDN:R15::250", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float transitions to its Park or Drift mission. This variable is based on float logic based on a descent timer (i.e. SOLO), or be based on measurements of pressure (i.e. PROVOR)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/186/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/186/1/" + }, + "dce:identifier": "SDN:R15::186", + "pav:version": "1", + "skos:notation": "SDN:R15::186", + "skos:altLabel": "186", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-14" + }, + "dc:identifier": "SDN:R15::186", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/98/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/98/1/" + }, + "dce:identifier": "SDN:R15::98", + "pav:version": "1", + "skos:notation": "SDN:R15::98", + "skos:altLabel": "98", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-2" + }, + "dc:identifier": "SDN:R15::98", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/593/", + "pav:authoredOn": "2025-09-02 12:51:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/593/1/" + }, + "dce:identifier": "SDN:R15::593", + "pav:version": "1", + "skos:notation": "SDN:R15::593", + "skos:altLabel": "593", + "dc:date": "2025-09-02 12:51:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-7" + }, + "dc:identifier": "SDN:R15::593", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent aborted time due to the ICE algorithm (with pressure if available, with shallowest PRES measurement if not)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/99/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/99/1/" + }, + "dce:identifier": "SDN:R15::99", + "pav:version": "1", + "skos:notation": "SDN:R15::99", + "skos:altLabel": "99", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-1" + }, + "dc:identifier": "SDN:R15::99", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DST (see DST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/796/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/796/1/" + }, + "dce:identifier": "SDN:R15::796", + "pav:version": "1", + "skos:notation": "SDN:R15::796", + "skos:altLabel": "796", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-4" + }, + "dc:identifier": "SDN:R15::796", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to TET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/596/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/596/1/" + }, + "dce:identifier": "SDN:R15::596", + "pav:version": "1", + "skos:notation": "SDN:R15::596", + "skos:altLabel": "596", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-4" + }, + "dc:identifier": "SDN:R15::596", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to AET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/599/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/599/1/" + }, + "dce:identifier": "SDN:R15::599", + "pav:version": "1", + "skos:notation": "SDN:R15::599", + "skos:altLabel": "599", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-1" + }, + "dc:identifier": "SDN:R15::599", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards AET (see AET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/602/", + "pav:authoredOn": "2025-09-02 12:51:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/602/1/" + }, + "dce:identifier": "SDN:R15::602", + "pav:version": "1", + "skos:notation": "SDN:R15::602", + "skos:altLabel": "602", + "dc:date": "2025-09-02 12:51:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET+2" + }, + "dc:identifier": "SDN:R15::602", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of MC=701 minus 10 minutes." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/594/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/594/1/" + }, + "dce:identifier": "SDN:R15::594", + "pav:version": "1", + "skos:notation": "SDN:R15::594", + "skos:altLabel": "594", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-6" + }, + "dc:identifier": "SDN:R15::594", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards AET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/101/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/101/1/" + }, + "dce:identifier": "SDN:R15::101", + "pav:version": "1", + "skos:notation": "SDN:R15::101", + "skos:altLabel": "101", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Delayed-mode trajectory file measurement code ID" + }, + "dc:identifier": "SDN:R15::101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This measurement code is used in the delayed-mode trajectory (TRAJ) file when new cycles have been recovered during delayed-mode operations. This is because the technical (TECH) file, where surface pressure measurements usually belong, is not updated during delayed-mode operations on the TRAJ file. The pressure variable (PRES) should contain the measurement provided by the float (after 5dbar subtraction when needed). For APEX floats, this measurement is used to compute a pressure offset applied to all pressure measurements (see procedure 3.2.1 of Argo QC manual). This offset should be stored in the PRES_ADJUSTED variable. No information should be stored with this measurement code in real-time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/536/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/536/1/" + }, + "dce:identifier": "SDN:R15::536", + "pav:version": "1", + "skos:notation": "SDN:R15::536", + "skos:altLabel": "536", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-14" + }, + "dc:identifier": "SDN:R15::536", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DAST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/449/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/449/1/" + }, + "dce:identifier": "SDN:R15::449", + "pav:version": "1", + "skos:notation": "SDN:R15::449", + "skos:altLabel": "449", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-1" + }, + "dc:identifier": "SDN:R15::449", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DPST (see DPST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/795/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/795/1/" + }, + "dce:identifier": "SDN:R15::795", + "pav:version": "1", + "skos:notation": "SDN:R15::795", + "skos:altLabel": "795", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-5" + }, + "dc:identifier": "SDN:R15::795", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards TET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/294/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/294/1/" + }, + "dce:identifier": "SDN:R15::294", + "pav:version": "1", + "skos:notation": "SDN:R15::294", + "skos:altLabel": "294", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-6" + }, + "dc:identifier": "SDN:R15::294", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards PET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/247/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/247/1/" + }, + "dce:identifier": "SDN:R15::247", + "pav:version": "1", + "skos:notation": "SDN:R15::247", + "skos:altLabel": "247", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-3" + }, + "dc:identifier": "SDN:R15::247", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards PST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/787/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/787/1/" + }, + "dce:identifier": "SDN:R15::787", + "pav:version": "1", + "skos:notation": "SDN:R15::787", + "skos:altLabel": "787", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-13" + }, + "dc:identifier": "SDN:R15::787", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (TET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/798/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/798/1/" + }, + "dce:identifier": "SDN:R15::798", + "pav:version": "1", + "skos:notation": "SDN:R15::798", + "skos:altLabel": "798", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-2" + }, + "dc:identifier": "SDN:R15::798", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards TET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/297/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/297/1/" + }, + "dce:identifier": "SDN:R15::297", + "pav:version": "1", + "skos:notation": "SDN:R15::297", + "skos:altLabel": "297", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-3" + }, + "dc:identifier": "SDN:R15::297", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards PET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/503/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/503/1/" + }, + "dce:identifier": "SDN:R15::503", + "pav:version": "1", + "skos:notation": "SDN:R15::503", + "skos:altLabel": "503", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST+3" + }, + "dc:identifier": "SDN:R15::503", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest bin reached during ascending profile." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/300/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/300/1/" + }, + "dce:identifier": "SDN:R15::300", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/PET/" + }, + "skos:notation": "SDN:R15::300", + "skos:altLabel": "300", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET" + }, + "dc:identifier": "SDN:R15::300", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float exits from its Park or Drift mission. It may next rise to the surface (AST) or sink to profile depth." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/190/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/190/1/" + }, + "dce:identifier": "SDN:R15::190", + "pav:version": "1", + "skos:notation": "SDN:R15::190", + "skos:altLabel": "190", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-10" + }, + "dc:identifier": "SDN:R15::190", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/288/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/288/1/" + }, + "dce:identifier": "SDN:R15::288", + "pav:version": "1", + "skos:notation": "SDN:R15::288", + "skos:altLabel": "288", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-12" + }, + "dc:identifier": "SDN:R15::288", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (PET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/544/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/544/1/" + }, + "dce:identifier": "SDN:R15::544", + "pav:version": "1", + "skos:notation": "SDN:R15::544", + "skos:altLabel": "544", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-6" + }, + "dc:identifier": "SDN:R15::544", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DAST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/490/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/490/1/" + }, + "dce:identifier": "SDN:R15::490", + "pav:version": "1", + "skos:notation": "SDN:R15::490", + "skos:altLabel": "490", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-10" + }, + "dc:identifier": "SDN:R15::490", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards AST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/585/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/585/1/" + }, + "dce:identifier": "SDN:R15::585", + "pav:version": "1", + "skos:notation": "SDN:R15::585", + "skos:altLabel": "585", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-15" + }, + "dc:identifier": "SDN:R15::585", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (AET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/498/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/498/1/" + }, + "dce:identifier": "SDN:R15::498", + "pav:version": "1", + "skos:notation": "SDN:R15::498", + "skos:altLabel": "498", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-2" + }, + "dc:identifier": "SDN:R15::498", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards AST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/301/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/301/1/" + }, + "dce:identifier": "SDN:R15::301", + "pav:version": "1", + "skos:notation": "SDN:R15::301", + "skos:altLabel": "301", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET+1" + }, + "dc:identifier": "SDN:R15::301", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Representative Park found either from measurements taken during drift or from metafile information." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/145/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/145/1/" + }, + "dce:identifier": "SDN:R15::145", + "pav:version": "1", + "skos:notation": "SDN:R15::145", + "skos:altLabel": "145", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-5" + }, + "dc:identifier": "SDN:R15::145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards FST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/687/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/435/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/810/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/690/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/499/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/239/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/444/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/289/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/485/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/696/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/600/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/790/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/90/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/538/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/394/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/494/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/110/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/385/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/688/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/298/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/711/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/96/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/550/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/811/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/389/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/702/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/87/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/500/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/436/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/275/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/697/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/545/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/799/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/902/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/597/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/398/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/400/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/539/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/395/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/586/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/111/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/249/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/547/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/588/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/445/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/386/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/788/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/486/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/94/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/97/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/447/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/595/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/88/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/245/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/785/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/286/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/501/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/496/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/794/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/438/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/293/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/797/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/296/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/236/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/299/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/495/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/685/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/598/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/611/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/240/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/610/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/689/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/548/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/450/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/589/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/537/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/387/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/800/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/235/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/238/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/535/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/448/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/489/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/695/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/194/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/437/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/246/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/699/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/701/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/540/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/287/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/502/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/698/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/704/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/390/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/497/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/546/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/439/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/396/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/295/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/237/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/86/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/903/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/399/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/89/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/244/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/587/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/686/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/901/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/440/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/397/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/786/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/446/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/285/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/710/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/694/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/789/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/549/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/388/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/487/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/95/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/1100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/590/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/250/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/186/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/98/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/593/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/99/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/796/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/596/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/599/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/602/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/594/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/536/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/449/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/795/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/294/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/247/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/787/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/798/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/297/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/503/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/300/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/190/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/288/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/544/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/585/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/498/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/301/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Measurement code IDs used in Argo Trajectory netCDF files. Argo netCDF variable MEASUREMENT_CODE is populated by R15 altLabel.", + "dc:title": "Argo trajectory measurement code identifiers", + "skos:prefLabel": "Argo trajectory measurement code identifiers", + "owl:versionInfo": "3", + "dc:date": "2025-09-30 03:00:01.0", + "skos:altLabel": "MEASUREMENT_CODE_ID", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "MEASUREMENT_CODE_ID", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R16.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R16.jsonld new file mode 100644 index 0000000..2fc3d95 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R16.jsonld @@ -0,0 +1,558 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXUP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXUP/1/" + }, + "dce:identifier": "SDN:R16::NSMIXUP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSMIXUP", + "skos:altLabel": "NSMIXUP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: mixed, unpumped" + }, + "dc:identifier": "SDN:R16::NSMIXUP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'mixed' sampling method was used, and measurements obtained from an unpumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECDIS/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECDIS/1/" + }, + "dce:identifier": "SDN:R16::SECDIS", + "pav:version": "1", + "skos:notation": "SDN:R16::SECDIS", + "skos:altLabel": "SECDIS", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Secondary sampling: discrete" + }, + "dc:identifier": "SDN:R16::SECDIS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Secondary sampling scheme for which the 'discrete' sampling method was used. The secondary sampling profile has N_PROF>1, and is composed of measurements that are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Measurements can be taken by the Primary CTD or by auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGP/1/" + }, + "dce:identifier": "SDN:R16::NSAVGP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSAVGP", + "skos:altLabel": "NSAVGP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: averaged, pumped" + }, + "dc:identifier": "SDN:R16::NSAVGP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'averaged' sampling method was used, and measurements obtained from a pumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXP/1/" + }, + "dce:identifier": "SDN:R16::NSMIXP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSMIXP", + "skos:altLabel": "NSMIXP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: mixed, pumped" + }, + "dc:identifier": "SDN:R16::NSMIXP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'mixed' sampling method was used, and measurements obtained from a pumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOAVE/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOAVE/1/" + }, + "dce:identifier": "SDN:R16::BOAVE", + "pav:version": "1", + "skos:notation": "SDN:R16::BOAVE", + "skos:altLabel": "BOAVE", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bounce sampling: averaged" + }, + "dc:identifier": "SDN:R16::BOAVE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce sampling scheme for which the 'averaged' sampling method was used. The bounce sampling scheme is composed of profiles with N_PROF>1 collected on multiple rises and falls during a single cycle. The profiles are temporally offset from each other and/or the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Bounce sampling scheme profiles can be sampled with the Primary CTD or with auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BODIS/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BODIS/1/" + }, + "dce:identifier": "SDN:R16::BODIS", + "pav:version": "1", + "skos:notation": "SDN:R16::BODIS", + "skos:altLabel": "BODIS", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bounce sampling: discrete" + }, + "dc:identifier": "SDN:R16::BODIS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce sampling scheme for which the 'discrete' sampling method was used. The bounce sampling scheme is composed of profiles with N_PROF>1 collected on multiple rises and falls during a single cycle. The profiles are temporally offset from each other and/or the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Bounce sampling scheme profiles can be sampled with the Primary CTD or with auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGUP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGUP/1/" + }, + "dce:identifier": "SDN:R16::NSAVGUP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSAVGUP", + "skos:altLabel": "NSAVGUP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: averaged, unpumped" + }, + "dc:identifier": "SDN:R16::NSAVGUP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'averaged' sampling method was used, and measurements obtained from an unpumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISUP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISUP/1/" + }, + "dce:identifier": "SDN:R16::NSDISUP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSDISUP", + "skos:altLabel": "NSDISUP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: discrete, unpumped" + }, + "dc:identifier": "SDN:R16::NSDISUP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'discrete' sampling method was used, and measurements obtained from an unpumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECAVG/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECAVG/1/" + }, + "dce:identifier": "SDN:R16::SECAVG", + "pav:version": "1", + "skos:notation": "SDN:R16::SECAVG", + "skos:altLabel": "SECAVG", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Secondary sampling: averaged" + }, + "dc:identifier": "SDN:R16::SECAVG", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Secondary sampling scheme for which the 'averaged' sampling method was used. The secondary sampling profile has N_PROF>1, and is composed of measurements that are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Measurements can be taken by the Primary CTD or by auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISP/1/" + }, + "dce:identifier": "SDN:R16::NSDISP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSDISP", + "skos:altLabel": "NSDISP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: discrete, pumped" + }, + "dc:identifier": "SDN:R16::NSDISP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'discrete' sampling method was used, and measurements obtained from a pumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRAVG/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRAVG/1/" + }, + "dce:identifier": "SDN:R16::PRAVG", + "pav:version": "1", + "skos:notation": "SDN:R16::PRAVG", + "skos:altLabel": "PRAVG", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Primary sampling: averaged" + }, + "dc:identifier": "SDN:R16::PRAVG", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Primary sampling scheme for which the 'averaged' sampling method was used. The primary sampling profile has N_PROF=1, and is composed of primary CTD measurements. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. This sampling scheme can also be applied to measurements from auxiliary sensors obtained by the 'averaged' sampling method and taken at the same pressure levels as the Primary CTD profile. For auxiliary sensor measurements it is not required that all pressure levels contain data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRDIS/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRDIS/1/" + }, + "dce:identifier": "SDN:R16::PRDIS", + "pav:version": "1", + "skos:notation": "SDN:R16::PRDIS", + "skos:altLabel": "PRDIS", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Primary sampling: discrete" + }, + "dc:identifier": "SDN:R16::PRDIS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Primary sampling scheme for which the 'discrete' sampling method was used. The primary sampling profile has N_PROF=1, and is composed of primary CTD measurements. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. This sampling scheme can also be applied to measurements from auxiliary sensors obtained by the 'discrete' sampling method and taken at the same pressure levels as the Primary CTD profile. For auxiliary sensor measurements it is not required that all pressure levels contain data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECMIX/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECMIX/1/" + }, + "dce:identifier": "SDN:R16::SECMIX", + "pav:version": "1", + "skos:notation": "SDN:R16::SECMIX", + "skos:altLabel": "SECMIX", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Secondary sampling: mixed" + }, + "dc:identifier": "SDN:R16::SECMIX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Secondary sampling scheme for which the 'mixed' sampling method was used. The secondary sampling profile has N_PROF>1, and is composed of measurements that are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Measurements can be taken by the Primary CTD or by auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRMIX/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRMIX/1/" + }, + "dce:identifier": "SDN:R16::PRMIX", + "pav:version": "1", + "skos:notation": "SDN:R16::PRMIX", + "skos:altLabel": "PRMIX", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Primary sampling: mixed" + }, + "dc:identifier": "SDN:R16::PRMIX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Primary sampling scheme for which the 'mixed' sampling method was used. The primary sampling profile has N_PROF=1, and is composed of primary CTD measurements. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. This sampling scheme can also be applied to measurements from auxiliary sensors obtained by the 'mixed' sampling method and taken at the same pressure levels as the Primary CTD profile. For auxiliary sensor measurements it is not required that all pressure levels contain data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOMIX/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOMIX/1/" + }, + "dce:identifier": "SDN:R16::BOMIX", + "pav:version": "1", + "skos:notation": "SDN:R16::BOMIX", + "skos:altLabel": "BOMIX", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bounce sampling: mixed" + }, + "dc:identifier": "SDN:R16::BOMIX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce sampling scheme for which the 'mixed' sampling method was used. The bounce sampling scheme is composed of profiles with N_PROF>1 collected on multiple rises and falls during a single cycle. The profiles are temporally offset from each other and/or the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Bounce sampling scheme profiles can be sampled with the Primary CTD or with auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXUP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECDIS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOAVE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BODIS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGUP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISUP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECAVG/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRAVG/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRDIS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECMIX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOMIX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRMIX/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Profile sampling schemes and sampling methods. Argo netCDF variable VERTICAL_SAMPLING_SCHEME is populated by R16 prefLabel, optionally appended by free text in brackets: e.g. \"Primary sampling: averaged [nominal 2 dbar binned data sampled at 0.5 Hz from a SBE41CP]\".", + "dc:title": "Argo vertical sampling schemes", + "skos:prefLabel": "Argo vertical sampling schemes", + "owl:versionInfo": "1", + "dc:date": "2020-05-04 03:00:04.0", + "skos:altLabel": "VERTICAL_SAMPLING_SCHEME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "VERTICAL_SAMPLING_SCHEME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R18.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R18.jsonld new file mode 100644 index 0000000..11e0cf5 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R18.jsonld @@ -0,0 +1,13088 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/2/" + }, + "dce:identifier": "SDN:R18::CC00068", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00068", + "skos:altLabel": "Core Config 68", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_HyperRetractionStopPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For Apex APF11 Iridium floats, Hyper Retraction is used to pull in an amount of oil to temporarily increase a float density as it leaves the ocean surface. The result of the increased float density allows a float to move through a mixed density layer more easily or allows a float to descend at a faster rate. In particular, the HyperRetractPressure is the pressure that the float uses to restore the piston back to the ParkDescentCount. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/2/" + }, + "dce:identifier": "SDN:R18::CC00041", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00041", + "skos:altLabel": "Core Config 41", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentSpeed_mm/s" + }, + "dc:identifier": "SDN:R18::CC00041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent speed during downcast. It can be used to estimate the time to descent from parking pressure to profile pressure. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/2/" + }, + "dce:identifier": "SDN:R18::CC00081", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00081", + "skos:altLabel": "Core Config 81", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionOilVolumeMinForGroundingDetection_cm^3" + }, + "dc:identifier": "SDN:R18::CC00081", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Similar to CONFIG_OilVolumeMinForGroundingDetection_cm^3 but for a float in a buoyancy inversion phase. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The maximum buoyancy position in counts. The buoyancy pump will shut off if the buoyancy position reaches this maximum value. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00133", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonFullExtension_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 133", + "skos:notation": "SDN:R18::CC00133", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00133", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Flntu turbidity measurements. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00037", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FlntuMaxTransmittedTurbidity_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 37", + "skos:notation": "SDN:R18::CB00037", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00037", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Use last piston position until this profile number. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00180", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileWhereChangePistonPosition_NUMBER" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 180", + "skos:notation": "SDN:R18::CC00180", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00180", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of Beta # measurements. Template_Values:{short_sensor_name:[Eco, Flbb];I:[1..9999];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00050", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BetaBandwidth_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 50", + "skos:notation": "SDN:R18::CB00050", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00050", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/2/" + }, + "dce:identifier": "SDN:R18::CC00154", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00154", + "skos:altLabel": "Core Config 154", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureOffsetDelayBeforeResetCommand_minutes" + }, + "dc:identifier": "SDN:R18::CC00154", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float waiting period between the end of the transmission and the surface ResetOffset CTD command. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Angle of Beta measurements. Template_Values:{short_sensor_name:[Eco, Flbb];unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00062", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BetaAngle_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 62", + "skos:notation": "SDN:R18::CB00062", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00062", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/2/" + }, + "dce:identifier": "SDN:R18::CC00064", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00064", + "skos:altLabel": "Core Config 64", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModeMinPresThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If in grounding mode 0, the float changes its drift pressure only if its current pressure is greater than this value. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Vrs_pH measurements. Template_Values:{unit:[volts, mV]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00098", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SfetMinTransmittedVrsPh_volts" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 98", + "skos:notation": "SDN:R18::CB00098", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00098", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted beta measurements. Template_Values:{short_sensor_name:[Eco, Flbb];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00033", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MinTransmittedBeta_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 33", + "skos:notation": "SDN:R18::CB00033", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00033", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode for the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00083", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemePowerAcquisitionMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 83", + "skos:notation": "SDN:R18::CB00083", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00083", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/2/" + }, + "dce:identifier": "SDN:R18::CC00199", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00199", + "skos:altLabel": "Core Config 199", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceWaitPeriodAfterEmergencyAscent_minutes" + }, + "dc:identifier": "SDN:R18::CC00199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the specific surface phase that occurs after an emergency ascent of the float. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Isobar that divides shallow depths from deep depths for the purpose of data reduction, for floats with 2 depth zones. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00166", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureThresholdDataReduction_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 166", + "skos:notation": "SDN:R18::CC00166", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00166", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/2/" + }, + "dce:identifier": "SDN:R18::CC00126", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00126", + "skos:altLabel": "Core Config 126", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Park pressure. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode C2 phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00021", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedC2Phase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 21", + "skos:notation": "SDN:R18::CB00021", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00021", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/2/" + }, + "dce:identifier": "SDN:R18::CC00028", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00028", + "skos:altLabel": "Core Config 28", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ConnectionTimeOut_seconds" + }, + "dc:identifier": "SDN:R18::CC00028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum transmission period for one telemetry session (if overcrossed, the float disconnects, starts a new cycle and will transmit the remaining stored data at the next transmission session). Template_Values:{unit:[hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/2/" + }, + "dce:identifier": "SDN:R18::CC00207", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00207", + "skos:altLabel": "Core Config 207", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryRetryInterval_minutes" + }, + "dc:identifier": "SDN:R18::CC00207", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Amount of time the float waits before trying to retransmit. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/2/" + }, + "dce:identifier": "SDN:R18::CC00178", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00178", + "skos:altLabel": "Core Config 178", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileSurfaceBinInterval_cbar" + }, + "dc:identifier": "SDN:R18::CC00178", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth intervals for shallow depth (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/2/" + }, + "dce:identifier": "SDN:R18::CC00012", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00012", + "skos:altLabel": "Core Config 12", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentVerticalThresholdForBuoyancyAction_dbar" + }, + "dc:identifier": "SDN:R18::CC00012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold: during CONFIG_PressureCheckTimeAscent_minutes, if the float vertical motion is less than this threshold, then the float performs buoyancy adjustments. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Connection time out allowed for initial connection to the RUDICS server. Default value is 30 minutes. Template_Values:{unit:[hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00027", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ConnectionInitialTimeOut_seconds" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 27", + "skos:notation": "SDN:R18::CC00027", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00027", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/2/" + }, + "dce:identifier": "SDN:R18::CC00219", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00219", + "skos:altLabel": "Core Config 219", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_UpTime_hours" + }, + "dc:identifier": "SDN:R18::CC00219", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset duration of the up time (from start of ascent to start of descent). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Ascent end time of Profile 1 (expected time at the surface of Profile 1). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00019", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentEndTimeProfile1_HHMM" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 19", + "skos:notation": "SDN:R18::CC00019", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00019", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/2/" + }, + "dce:identifier": "SDN:R18::CC00101", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00101", + "skos:altLabel": "Core Config 101", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleTime_hours" + }, + "dc:identifier": "SDN:R18::CC00101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal cycle duration # (in hours). is a number denoting the internal cycle label. Template_Values:{D:[1..9999];unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/2/" + }, + "dce:identifier": "SDN:R18::CC00191", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00191", + "skos:altLabel": "Core Config 191", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SeeksToParkPeriods_COUNT" + }, + "dc:identifier": "SDN:R18::CC00191", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of SEEKS (settles) that can be done by the float after descent as it settles towards the drift target. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of Beta # measurements. Template_Values:{short_sensor_name:[Eco, Flbb];I:[1..9999];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00049", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BetaWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 49", + "skos:notation": "SDN:R18::CB00049", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00049", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode of the Sensor defined by . Input options for CTD (1 : continuous, 2 : pulsed). Input options for Optode (0: none, 1 : continuous, 2 : pulsed). Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB10008", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PowerAcquisitionMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 8.1", + "skos:notation": "SDN:R18::CB10008", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB10008", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/2/" + }, + "dce:identifier": "SDN:R18::CC00024", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00024", + "skos:altLabel": "Core Config 24", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockStartCycle_minutes" + }, + "dc:identifier": "SDN:R18::CC00024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset time to start the cycle, in minutes after midnight. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Is the sensor board show mode ON? (Yes/No). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00045", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SensorBoardShowModeOn_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 45", + "skos:notation": "SDN:R18::CB00045", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00045", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/2/" + }, + "dce:identifier": "SDN:R18::CC00174", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00174", + "skos:altLabel": "Core Config 174", + "dc:date": "2025-12-12 11:41:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileIntermediateBinInterval_cbar" + }, + "dc:identifier": "SDN:R18::CC00174", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth intervals for intermediate depth (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/2/" + }, + "dce:identifier": "SDN:R18::CC00036", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00036", + "skos:altLabel": "Core Config 36", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DeepestPressureDescendingProfile_dbar" + }, + "dc:identifier": "SDN:R18::CC00036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest pressure sampled in the descending profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of for excitation of fluorescence measurements. Template_Values:{short_sensor_name:[Cyc, Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00057", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceExcitationWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 57", + "skos:notation": "SDN:R18::CB00057", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00057", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/2/" + }, + "dce:identifier": "SDN:R18::CC00186", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00186", + "skos:altLabel": "Core Config 186", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionTimeBuoyancyAcquisitionForInAirMeasCycle_csec" + }, + "dc:identifier": "SDN:R18::CC00186", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration or volume transfer of the last pump action of the buoyancy acquisition phase when a in air measurement phase is programmed. For a cycle without in air measurement phase, it is CONFIG_PumpActionTimeBuoyancyAcquisition_csec. Template_Values:{unit:[seconds, dsec, csec, msec, usec, cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Scenario followed by the float when a grounding is detected. Values and possibilities vary according to float types, check specific manuals for details. Template_Values:{unit:[LOGICAL, NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00061", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:33.0", + "skos:altLabel": "Core Config 61", + "skos:notation": "SDN:R18::CC00061", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00061", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00082", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 82", + "skos:notation": "SDN:R18::CB00082", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00082", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/2/" + }, + "dce:identifier": "SDN:R18::CC00097", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00097", + "skos:altLabel": "Core Config 97", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementTime_minutes" + }, + "dc:identifier": "SDN:R18::CC00097", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the in air measurement phase. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00224/", + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00224/1/" + }, + "dce:identifier": "SDN:R18::CC00224", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00224", + "skos:altLabel": "Core Config 224", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkDurationPhase_seconds" + }, + "dc:identifier": "SDN:R18::CC00224", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the park phase # in multi-parking mode. Template_Values:{D:[1..5];unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/2/" + }, + "dce:identifier": "SDN:R18::CC00110", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00110", + "skos:altLabel": "Core Config 110", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MinValveActionForSurfaceGroundingDetection_COUNT" + }, + "dc:identifier": "SDN:R18::CC00110", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum number of surface valve attempts without change in pressure to set the surface grounding flag. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/2/" + }, + "dce:identifier": "SDN:R18::CC00203", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00203", + "skos:altLabel": "Core Config 203", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryMaxRetry_COUNT" + }, + "dc:identifier": "SDN:R18::CC00203", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum number of telemetry session retries. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the drift at parking pressure. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB10004", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DriftAtParkPresSamplingPeriod_minutes" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 4.1", + "skos:notation": "SDN:R18::CB10004", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB10004", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/2/" + }, + "dce:identifier": "SDN:R18::CC00150", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00150", + "skos:altLabel": "Core Config 150", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeDescentToProfileDepth_seconds" + }, + "dc:identifier": "SDN:R18::CC00150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Interval between float samples of the pressure to determine if the Profile depth has been reached. Template_Values:{unit:[minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/2/" + }, + "dce:identifier": "SDN:R18::CC00138", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00138", + "skos:altLabel": "Core Config 138", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPositionPressureActivation_COUNT" + }, + "dc:identifier": "SDN:R18::CC00138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset piston position for pressure activation. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bio Argo sensors can either be mounted separately to the Ctd or mounted within the Ctd pumped stream (1=YES, 0=NO). Template_Values:{short_sensor_name:[Crover, Isus];unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00054", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InPumpedStream_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 54", + "skos:notation": "SDN:R18::CB00054", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00054", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/2/" + }, + "dce:identifier": "SDN:R18::CC00117", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00117", + "skos:altLabel": "Core Config 117", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeLastPumpActionBuoyancyAcquisition_cm^3" + }, + "dc:identifier": "SDN:R18::CC00117", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Volume of the last pump action of the buoyancy acquisition phase. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/2/" + }, + "dce:identifier": "SDN:R18::CC00006", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00006", + "skos:altLabel": "Core Config 6", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeed_mm/s" + }, + "dc:identifier": "SDN:R18::CC00006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent speed during upcast. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/2/" + }, + "dce:identifier": "SDN:R18::CC00146", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00146", + "skos:altLabel": "Core Config 146", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeAscent_minutes" + }, + "dc:identifier": "SDN:R18::CC00146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float ascent to surface. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/2/" + }, + "dce:identifier": "SDN:R18::CC00129", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00129", + "skos:altLabel": "Core Config 129", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingNumberValsReported_COUNT" + }, + "dc:identifier": "SDN:R18::CC00129", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of values reported during a single park period. For example, a float may perform hourly sampling for 105 hrs and report this as two averaged samples for that park period. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sample rate for the ascent depth zone # of the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];N:[1..5];unit:[hertz]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00094", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneSampleRate_hertz" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 94", + "skos:notation": "SDN:R18::CB00094", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00094", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/2/" + }, + "dce:identifier": "SDN:R18::CC00018", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00018", + "skos:altLabel": "Core Config 18", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyReductionSecondThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Second threshold of the buoyancy reduction phase. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ignore sample measurements acquired while the hydraulic pump is running (1 = YES, 0 = NO). Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00066", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IgnoreSamplesWhenPumpActive_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 66", + "skos:notation": "SDN:R18::CB00066", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00066", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data processing rate for the subsampling # of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];SubS:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00078", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSubSamplingDataProcessingRate_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 78", + "skos:notation": "SDN:R18::CB00078", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00078", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Pressure threshold to start the acoustic ice detection test. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00070", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionAcousticStartPressureThreshold_dbar" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 70", + "skos:notation": "SDN:R18::CC00070", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00070", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/2/" + }, + "dce:identifier": "SDN:R18::CC00122", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00122", + "skos:altLabel": "Core Config 122", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumePerPumpActionAscent_cm^3" + }, + "dc:identifier": "SDN:R18::CC00122", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Nominal oil volume of each pump action during ascent. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/2/" + }, + "dce:identifier": "SDN:R18::CC00158", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00158", + "skos:altLabel": "Core Config 158", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceBeforeReposition_dbar" + }, + "dc:identifier": "SDN:R18::CC00158", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/2/" + }, + "dce:identifier": "SDN:R18::CC00162", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00162", + "skos:altLabel": "Core Config 162", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisation_dbar" + }, + "dc:identifier": "SDN:R18::CC00162", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation at parking or profile depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Threshold between depth zone # and depth zone # for . Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];N:[1..4];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00001", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneDepthZonePressureThreshold_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 1", + "skos:notation": "SDN:R18::CB00001", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00001", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048b/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048b/1/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048b/2/" + }, + "dce:identifier": "SDN:R18::CB00048b", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00048b", + "skos:altLabel": "BGC Config 48bis", + "dc:date": "2025-12-11 09:34:52.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_VerticalPressureOffset_dbar" + }, + "dc:identifier": "SDN:R18::CB00048b", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Vertical pressure offset due to the fact that the sensor is not exactly at the Ctd pressure for the th duplicate . Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];N:[2..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Cycle to start at a preset time (0 = Disabled, 1 = Enabled). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00023", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockPresetStartCycle_LOGICAL" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 23", + "skos:notation": "SDN:R18::CC00023", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00023", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/2/" + }, + "dce:identifier": "SDN:R18::CC00073", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00073", + "skos:altLabel": "Core Config 73", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionConsecutiveDetectionBeforeFloatSurfaceInhibition_Number" + }, + "dc:identifier": "SDN:R18::CC00073", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of consecutive ISA detections before float surface inhibition. If fewer consecutive ice detections are made, then the float will immediately seek the surface if mixed layer temp is warm. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Vrs_pH measurements. Template_Values:{unit:[volts, mV]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00099", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SfetMaxTransmittedVrsPh_volts" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 99", + "skos:notation": "SDN:R18::CB00099", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00099", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ctd pressure measurements. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00013", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMinTransmittedPressure_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 13", + "skos:notation": "SDN:R18::CB00013", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00013", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/2/" + }, + "dce:identifier": "SDN:R18::CC00211", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00211", + "skos:altLabel": "Core Config 211", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeStartFirstDescentToStartFirstAscent_hours" + }, + "dc:identifier": "SDN:R18::CC00211", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time between 1st descent and 1st ascent (period between mission prelude and start of first profile). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/2/" + }, + "dce:identifier": "SDN:R18::CC00085", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00085", + "skos:altLabel": "Core Config 85", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionSalinityCoefficient_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00085", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Coefficient used when Salinity is considered in the ice evasion criteria (i.e. median(TEMP) < CONFIG_IceDetection_degC+CONFIG_IceDetectionSalinityCoefficient_NUMBER*median(PSAL)). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/2/" + }, + "dce:identifier": "SDN:R18::CC00047", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00047", + "skos:altLabel": "Core Config 47", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_Direction_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiling direction(s) with 1 = Ascending, 2 = Descending and 3 = Ascending and Descending. Template_Values:{unit:[NUMBER, LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/2/" + }, + "dce:identifier": "SDN:R18::CC00195", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00195", + "skos:altLabel": "Core Config 195", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceTime_HH" + }, + "dc:identifier": "SDN:R18::CC00195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of day of float surfacing. It could be hour of the float surfacing or could be stored as seconds when set as hh:mm:ss (e.g. for PROVOR CTS5). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the descent to profile pressure. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00005", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToProfilePresSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 5", + "skos:notation": "SDN:R18::CB00005", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00005", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ctd salinity measurements. Template_Values:{unit:[psu, mpsu]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00017", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMinTransmittedSalinity_mpsu" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 17", + "skos:notation": "SDN:R18::CB00017", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00017", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode for the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00074", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZonePowerAcquisitionMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 74", + "skos:notation": "SDN:R18::CB00074", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00074", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Amount of time allowed for the float to complete telemetry. A setting of 0 disables IceTelemetryTimeout, and the time available is instead determined by the remaining UpTime of the Ascent phase. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00094", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionTelemetryTimeout_minutes" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 94", + "skos:notation": "SDN:R18::CC00094", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00094", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Type of transmitted data from te Suna sensor (0 : nitrate concentration, 1 : Apf frame spectrum). Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00041", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaDataType_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 41", + "skos:notation": "SDN:R18::CB00041", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00041", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/2/" + }, + "dce:identifier": "SDN:R18::CC00077", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00077", + "skos:altLabel": "Core Config 77", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMixedLayerPMax_dbar" + }, + "dc:identifier": "SDN:R18::CC00077", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum sampling pressure used by ice cover detection algorithm (i.e., start pressure threshold for ice detection algorithm). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ocr # measurements. Template_Values:{param:[DownIrr, DownRad, UpIrr, UpRad];I:[1..3];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00029", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMinTransmitted_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 29", + "skos:notation": "SDN:R18::CB00029", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00029", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/2/" + }, + "dce:identifier": "SDN:R18::CC00215", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00215", + "skos:altLabel": "Core Config 215", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionPeriodEndOfLife_minutes" + }, + "dc:identifier": "SDN:R18::CC00215", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the Iridium transmission when in End Of Life mode. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/2/" + }, + "dce:identifier": "SDN:R18::CC00059", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00059", + "skos:altLabel": "Core Config 59", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSSetClockSensorCard_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "When the float Real Time Clock is set, also set the clock of the measurement card. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/2/" + }, + "dce:identifier": "SDN:R18::CC00183", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00183", + "skos:altLabel": "Core Config 183", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionMaxTimeBuoyancyAcquisition_csec" + }, + "dc:identifier": "SDN:R18::CC00183", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of the last pump action of the buoyancy acquisition phase. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/2/" + }, + "dce:identifier": "SDN:R18::CC00052", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00052", + "skos:altLabel": "Core Config 52", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_EmergencyModeWaterLeakDetection_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Water leak emergency mode. If set to yes, the float will transition to the Emergency mode upon detection of an internal water leak. If set to no, the float will only log the condition to the system_log.txt file. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Tri profile option (1 = YES, 0 = NO). From the first generation of PROVOR floats for which a number of configurations are allowed, i.e. if tri profile is set to yes, it indicates a float which performs 1 deep profile followed by two shallower profiles. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00218", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TriProfileOption_LOGICAL" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 218", + "skos:notation": "SDN:R18::CC00218", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00218", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/2/" + }, + "dce:identifier": "SDN:R18::CC00105", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00105", + "skos:altLabel": "Core Config 105", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxAttemptsGPSAcquisitionBeforeResetGPS_COUNT" + }, + "dc:identifier": "SDN:R18::CC00105", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum number of GPS location acquisition retries before it resets the GPS. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode D phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00025", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedDPhase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 25", + "skos:notation": "SDN:R18::CB00025", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00025", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Specifies the time in minutes of the listening window for a sound source signal for underwater positioning, typically used in under ice applications (APF9 RAFOS variant firmware). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00187", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RafosSampling_minutes" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 187", + "skos:notation": "SDN:R18::CC00187", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00187", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data processing rate for the subsampling # of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];SubS:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00087", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeSubSamplingDataProcessingRate_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 87", + "skos:notation": "SDN:R18::CB00087", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00087", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/2/" + }, + "dce:identifier": "SDN:R18::CC00031", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00031", + "skos:altLabel": "Core Config 31", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CTDPumpStopPressureOffset_dbar" + }, + "dc:identifier": "SDN:R18::CC00031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure added to the most recently measured pressure at the surface, the sum of which is the pressure at which the conductivity, temperature and pressure sampling stops for a pumped type CTD. It is also the pressure at which the Surface phase begins. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/2/" + }, + "dce:identifier": "SDN:R18::CC00056", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00056", + "skos:altLabel": "Core Config 56", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSAcquisitionEndOfLife_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a GPS session to acquire a GPS fix in each End Of Life transmission (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of ascent depth zones defined for the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00090", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseNumberOfDepthZone_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 90", + "skos:notation": "SDN:R18::CB00090", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00090", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum delay in number of days of no transmission due to the ice detection algorithm. This parameter is used to disable the ice detection algorithm and force the float to surface even if ice is detected. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00076", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMaxDaysNoTransmission_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 76", + "skos:notation": "SDN:R18::CC00076", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00076", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples for the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00089", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneNumberOfSamples_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 89", + "skos:notation": "SDN:R18::CB00089", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00089", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Start pressure to define the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00071", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneStartPres_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 71", + "skos:notation": "SDN:R18::CB00071", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00071", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/2/" + }, + "dce:identifier": "SDN:R18::CC00043", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00043", + "skos:altLabel": "Core Config 43", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToParkPresSamplingTime_seconds" + }, + "dc:identifier": "SDN:R18::CC00043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the descent to parking pressure. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/2/" + }, + "dce:identifier": "SDN:R18::CC00109", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00109", + "skos:altLabel": "Core Config 109", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MeasureBattery_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00109", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Request a measure of the battery voltage and report it (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the ascending profile. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00007", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 7", + "skos:notation": "SDN:R18::CB00007", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00007", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/2/" + }, + "dce:identifier": "SDN:R18::CC00040", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00040", + "skos:altLabel": "Core Config 40", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentAdjustmentToBuoyancy_seconds" + }, + "dc:identifier": "SDN:R18::CC00040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Controls the descent rate, commonly cited as 'buoyancy nudge'. For SOLO-II it is seconds pump is run to adjust float descent rate from drift depth to profile depth; unit can also be in COUNT. The SOLO-II floats are ballasted for profile depth, if the floats are poorly ballasted, float will descend quite fast to profile depth. The more pumping that is done at 1000db that is unnecessary at 2000db will save energy and it can be used as an energy saving measure. Occasionally this means the float will stop short of profile depth but won't have grounded. Template_Values:{unit:[COUNT, days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/2/" + }, + "dce:identifier": "SDN:R18::CC00002", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00002", + "skos:altLabel": "Core Config 2", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_Offset_COUNT" + }, + "dc:identifier": "SDN:R18::CC00002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Offset used to pack the P, T and S data. Template_Values:{PARAM:[PRES,PSAL,TEMP];unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/2/" + }, + "dce:identifier": "SDN:R18::CC00007", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00007", + "skos:altLabel": "Core Config 7", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeedFactor_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This factor defines the speed of the ascent phase (between 0: nominal speed and 5: lowest speed). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00243/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00243/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00243/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Flag to manage the end-of-life-at-depth function (1 = YES, 0 = NO). This function consists of requesting to the float not to ascent at the end of his life if the battery is exhausted. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00243", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_EndOfLifeAtDepth_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-12 11:41:12.0", + "skos:altLabel": "Core Config 243", + "skos:notation": "SDN:R18::CC00243", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00243", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00243/3/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/2/" + }, + "dce:identifier": "SDN:R18::CC00170", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00170", + "skos:altLabel": "Core Config 170", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CC00170", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Thickness of the slices for deep depths (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode C1 phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00019", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedC1Phase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 19", + "skos:notation": "SDN:R18::CB00019", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00019", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Use the pressure activation feature. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00142", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivationMode_LOGICAL" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 142", + "skos:notation": "SDN:R18::CC00142", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00142", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of additional raw data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00075", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneRawDataAcquisition_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 75", + "skos:notation": "SDN:R18::CB00075", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00075", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/2/" + }, + "dce:identifier": "SDN:R18::CC00014", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00014", + "skos:altLabel": "Core Config 14", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BitMaskMonthsIceEvasionActive_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicates for which months the ice evasion is active - months in reverse order. This is a parameter for AC1 which provides the months it should be used. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00223/", + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00223/1/" + }, + "dce:identifier": "SDN:R18::CC00223", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00223", + "skos:altLabel": "Core Config 223", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkPressurePhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00223", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Park pressure of multi-parking phase #. Template_Values:{D:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period for the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[minutes, seconds, dsec, bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00073", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSamplingPeriod_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 73", + "skos:notation": "SDN:R18::CB00073", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00073", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/2/" + }, + "dce:identifier": "SDN:R18::CC00044", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00044", + "skos:altLabel": "Core Config 44", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToParkTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum time a float will try to reach its target depth (park) before aborting this step. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Last day of the year during which telemetry is attempted during the Surface phase. When the float surfaces on a day that is not specified, it does not attempt telemetry and immediately begins the Park Descent phase for the next profiling cycle. TelemetryDays are specified with a start day and an end day. The start day is the first day of the transmit season for the year. The end day is the last day of the transmit season for the year. A setting of 0 0 disables TelemetryDays, and the float attempts telemetry during each Surface Phase. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00093", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionEndTelemetryDay_NUMBER" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 93", + "skos:notation": "SDN:R18::CC00093", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00093", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data processing mode for the subsampling # of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];SubS:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00077", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSubSamplingDataProcessingMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 77", + "skos:notation": "SDN:R18::CB00077", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00077", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/2/" + }, + "dce:identifier": "SDN:R18::CC00192", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00192", + "skos:altLabel": "Core Config 192", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SeeksToParkPeriodsIntervals_seconds" + }, + "dc:identifier": "SDN:R18::CC00192", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The SEEK (settle) time for the float after descent as it settles towards the drift target. For SOLO floats this is a constant. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum delay allowed for the float to connect to the RUDICS server. Default value is 30 minutes. Template_Values:{unit:[hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00026", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ConnectionFailureTimeOut_minutes" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:33.0", + "skos:altLabel": "Core Config 26", + "skos:notation": "SDN:R18::CC00026", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00026", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of subsamplings of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00085", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeNumberOfSubSampling_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 85", + "skos:notation": "SDN:R18::CB00085", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00085", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/2/" + }, + "dce:identifier": "SDN:R18::CC00194", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00194", + "skos:altLabel": "Core Config 194", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceDay_FloatDay" + }, + "dc:identifier": "SDN:R18::CC00194", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Day of the float surfacing. Template_Values:{unit:[FloatDay]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of Crover for Beam attenuation measurements. Template_Values:{unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00061", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverBeamAttenuationWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 61", + "skos:notation": "SDN:R18::CB00061", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00061", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00226/", + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00226/1/" + }, + "dce:identifier": "SDN:R18::CC00226", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00226", + "skos:altLabel": "Core Config 226", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceBeforeRepositionPhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00226", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval, during phase # of multi-parking mode, before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy. Template_Values:{D:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/2/" + }, + "dce:identifier": "SDN:R18::CC00038", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00038", + "skos:altLabel": "Core Config 38", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DelayBeforeMissionStart_minutes" + }, + "dc:identifier": "SDN:R18::CC00038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float waiting period before the first cycle of its mission. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/2/" + }, + "dce:identifier": "SDN:R18::CC00048", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00048", + "skos:altLabel": "Core Config 48", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTime_hours" + }, + "dc:identifier": "SDN:R18::CC00048", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset duration of the down time (from start of descent to start of ascent). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode temperature measurements. Template_Values:{unit:[degC, mdegC]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00028", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedTemperature_mdegC" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 28", + "skos:notation": "SDN:R18::CB00028", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00028", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Time the float will remain on the surface transmitting its data at the end of each cycle (ARGOS transmission only). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00214", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionMinTime_hours" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 214", + "skos:notation": "SDN:R18::CC00214", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00214", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/2/" + }, + "dce:identifier": "SDN:R18::CC00143", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00143", + "skos:altLabel": "Core Config 143", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivationTimeout_seconds" + }, + "dc:identifier": "SDN:R18::CC00143", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The pressure activation phase starts after the first successful auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/2/" + }, + "dce:identifier": "SDN:R18::CC00196", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00196", + "skos:altLabel": "Core Config 196", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time spent on the surface (surface drift). For NEMO(Iridium) the definition for this variable is: the time limit for staying at the surface, i.e. maximum surface time. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/2/" + }, + "dce:identifier": "SDN:R18::CC00112", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00112", + "skos:altLabel": "Core Config 112", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MissionPreludeTime_hours" + }, + "dc:identifier": "SDN:R18::CC00112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration (from start up) the float transmits test messages before the first dive. It's crucial in calculating the time of the first descent. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the descent to parking pressure. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[minutes, seconds, dsec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00003", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToParkPresSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 3", + "skos:notation": "SDN:R18::CB00003", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00003", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. First day of the year during which telemetry is attempted during the Surface phase. When the float surfaces on a day that is not specified, it does not attempt telemetry and immediately begins the Park Descent phase for the next profiling cycle. TelemetryDays are specified with a start day and an end day. The start day is the first day of the transmit season for the year. The end day is the last day of the transmit season for the year. A setting of 0 0 disables TelemetryDays, and the float attempts telemetry during each Surface Phase. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00092", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionFirstTelemetryDay_NUMBER" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 92", + "skos:notation": "SDN:R18::CC00092", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00092", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/2/" + }, + "dce:identifier": "SDN:R18::CC00145", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00145", + "skos:altLabel": "Core Config 145", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureBladderTarget_dbar" + }, + "dc:identifier": "SDN:R18::CC00145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Target bladder pressure. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/2/" + }, + "dce:identifier": "SDN:R18::CC00032", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00032", + "skos:altLabel": "Core Config 32", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CTDPumpStopPressurePlusThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sum of CONFIG_CTDPumpStopPressure_dbar plus a pressure threshold or overlap (Poverlap). For PROVOR floats with software versions < 5816A00 and ARVOR floats with software versions < 5605A00, Poverlap is defined as follows: Poverlap = bin_size/2. For PROVOR floats with software versions >= 5816A00 and ARVOR floats with software versions >=5605A00, Poverlap = 0.5 dbar. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Rank of the first valid sample provided by the (0 is the rank of the first sample). Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00012", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FirstValidSample_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 12", + "skos:notation": "SDN:R18::CB00012", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00012", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/2/" + }, + "dce:identifier": "SDN:R18::CC00198", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00198", + "skos:altLabel": "Core Config 198", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceValveMaxTimeAdditionalActions_csec" + }, + "dc:identifier": "SDN:R18::CC00198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of the additional valve actions performed at the surface during the buoyancy reduction phase. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Time interval between and pressure measurements due to the fact that the answer is not simultaneous with the CTD/pressure answer. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];unit:[minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00065", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimePressureOffset_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 65", + "skos:notation": "SDN:R18::CB00065", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00065", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/2/" + }, + "dce:identifier": "SDN:R18::CC00124", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00124", + "skos:altLabel": "Core Config 124", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OkVacuum_COUNT" + }, + "dc:identifier": "SDN:R18::CC00124", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal vacuum threshold. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/2/" + }, + "dce:identifier": "SDN:R18::CC00009", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00009", + "skos:altLabel": "Core Config 9", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeedStartPressureThresholdForSlowPhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure threshold to start the slow ascent speed phase. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Preset duration of the down time (from start of descent to start of ascent) specific to the spring/summer period. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00051", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTimeSpringSummer_hours" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 51", + "skos:notation": "SDN:R18::CC00051", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00051", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ctd temperature measurements. Template_Values:{unit:[degC, mdegC]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00015", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMinTransmittedTemperature_mdegC" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 15", + "skos:notation": "SDN:R18::CB00015", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00015", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Profile sampling method (1 = averaged, 0 = spot sampling). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00177", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileSamplingMethod_LOGICAL" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 177", + "skos:notation": "SDN:R18::CC00177", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00177", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/4/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Isobar that divides intermediate depths from deep depths for the purpose of data reduction, for floats with 3 depth zones. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00167", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureThresholdDataReductionIntermediateToDeep_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 167", + "skos:notation": "SDN:R18::CC00167", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00167", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/2/" + }, + "dce:identifier": "SDN:R18::CC00096", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00096", + "skos:altLabel": "Core Config 96", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CC00096", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the in air measurement phase. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/2/" + }, + "dce:identifier": "SDN:R18::CC00010", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00010", + "skos:altLabel": "Core Config 10", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentTime_hours" + }, + "dc:identifier": "SDN:R18::CC00010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset duration of ascent. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/2/" + }, + "dce:identifier": "SDN:R18::CC00182", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00182", + "skos:altLabel": "Core Config 182", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionMaxTimeAscent_csec" + }, + "dc:identifier": "SDN:R18::CC00182", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of a pump action during ascent. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/2/" + }, + "dce:identifier": "SDN:R18::CC00209", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00209", + "skos:altLabel": "Core Config 209", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeDelaybeforeDescentRetryWhenStuckAtSurface_minutes" + }, + "dc:identifier": "SDN:R18::CC00209", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time delay between each new attempt to descend when the float is stuck at the surface. When the float cannot reach the pressure threshold defined by CONFIG_BuoyancyReductionFirstThreshold_dbar after a given number of buoyancy actions it waits a period of time specified by CONFIG_TimeDelaybeforeDescentRetryWhenStuckAtSurface_minutes before starting a new sequence of buoyancy actions. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Scenario followed by the float when a grounding is detected during descent to profile, or profile drift depth. Values and possibilities vary according to float types, check specific manuals for details. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00063", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModeForProfileDepth_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 63", + "skos:notation": "SDN:R18::CC00063", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00063", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode temperature measurements. Template_Values:{unit:[degC, mdegC]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00027", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedTemperature_mdegC" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 27", + "skos:notation": "SDN:R18::CB00027", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00027", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Controls the ascent rate, commonly cited as buoyancy nudge. Units can be of several types depending on the float model. Template_Values:{unit:[COUNT, days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00003", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentAdjustmentToBuoyancy_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:33.0", + "skos:altLabel": "Core Config 3", + "skos:notation": "SDN:R18::CC00003", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00003", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/2/" + }, + "dce:identifier": "SDN:R18::CC00149", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00149", + "skos:altLabel": "Core Config 149", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeDescentToParkingDepth_seconds" + }, + "dc:identifier": "SDN:R18::CC00149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Interval between float samples of the pressure to determine if the Park depth has been reached. Template_Values:{unit:[minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ctd temperature measurements. Template_Values:{unit:[degC, mdegC]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00016", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMaxTransmittedTemperature_mdegC" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 16", + "skos:notation": "SDN:R18::CB00016", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00016", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Time delay between recovery messages. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00210", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeDelaybetweenRecoveryMessage_minutes" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 210", + "skos:notation": "SDN:R18::CC00210", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00210", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data of the can be reported as they have been sampled or synchronized with one CTD parameter (PRES or TEMP or PSAL). The synchronization is done with the timely closest sample of the CTD (see float manual for details). Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Stm, Suna, Sfet];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00069", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneDataSynchronizationMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 69", + "skos:notation": "SDN:R18::CB00069", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00069", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/2/" + }, + "dce:identifier": "SDN:R18::CC00080", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00080", + "skos:altLabel": "Core Config 80", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionOilVolumeForFirstValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00080", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Volume of the first valve action of a buoyancy inversion phase. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/2/" + }, + "dce:identifier": "SDN:R18::CC00022", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00022", + "skos:altLabel": "Core Config 22", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentStart_minutes" + }, + "dc:identifier": "SDN:R18::CC00022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset time to start ascent profile. Units = minutes if expressed in minutes past midnight. Units = HH if expressed in 24 hour clock. Template_Values:{unit:[minutes, HH]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00101/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00101/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00101/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Vertical pressure offset of the secondary optode sensor. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CB00101", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_Optode2VerticalPressureOffset_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-12 11:39:42.0", + "skos:altLabel": "BGC Config 101", + "skos:notation": "SDN:R18::CB00101", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00101", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00101/3/" + }, + "pav:authoredOn": "2025-12-12 11:39:42.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/2/" + }, + "dce:identifier": "SDN:R18::CC00148", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00148", + "skos:altLabel": "Core Config 148", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeDescent_minutes" + }, + "dc:identifier": "SDN:R18::CC00148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float descent (after CONFIG_BuoyancyReductionSecondThreshold_dbar). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/2/" + }, + "dce:identifier": "SDN:R18::CC00190", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00190", + "skos:altLabel": "Core Config 190", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RudicsAndIridiumSessionWhenNoGPS_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00190", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For RUDICS transmission floats, perform also one Iridium session (to get an Iridium position) when the GPS fix is not valid. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Crover beam attenuation measurements. Template_Values:{unit:[m^-1]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00039", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverMinTransmittedBeamAttenuation_m^-1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 39", + "skos:notation": "SDN:R18::CB00039", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00039", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Transmit hydraulic data (recorded pump/valve actions with time, pressure and duration) at the end of the cycle (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00067", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_HydraulicDataTransmission_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:33.0", + "skos:altLabel": "Core Config 67", + "skos:notation": "SDN:R18::CC00067", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00067", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Float pressure limit at which an emergency ascent phase will be triggered. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00153", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureMaxBeforeEmergencyAscent_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 153", + "skos:notation": "SDN:R18::CC00153", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00153", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/2/" + }, + "dce:identifier": "SDN:R18::CC00082", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00082", + "skos:altLabel": "Core Config 82", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionOilVolumePerValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00082", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Valve action duration during the buoyancy inversion phase. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00222/", + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00222/1/" + }, + "dce:identifier": "SDN:R18::CC00222", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00222", + "skos:altLabel": "Core Config 222", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MultiParkingPhase_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00222", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of multi-parking phases (up to 5 for Provor CTS5 floats). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Suna with scoop which redirects flow through Suna optics. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00053", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaWithScoop_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 53", + "skos:notation": "SDN:R18::CB00053", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00053", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/2/" + }, + "dce:identifier": "SDN:R18::CC00107", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00107", + "skos:altLabel": "Core Config 107", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxDelayBeforeCycleStart_minutes" + }, + "dc:identifier": "SDN:R18::CC00107", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum extra time a float can stay on the surface after transmitting. This feature is used for SOLO-II floats to try and make them stay in a particular area, e.g. near the equator for equatorial floats. If a float is drifting at the surface and moving in the wanted direction, the feature is turned on to keep it drifting at the surface in a favourable direction. If the float is moving in an unwanted direction, then this feature is turned off, so that the float dives immediately. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Provides the ability (enable/disable) for engineering information to be reported back by the float (APF9). Template_Values:{unit:[NUMBER, hex]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00034", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DebugBits_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 34", + "skos:notation": "SDN:R18::CC00034", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00034", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Desired number of retransmissions of the N ARGOS messages needed to transmit the data collected during the cycle. This parameter is also used to compute the transmission duration. To transmit N ARGOS messages, the transmission duration of an ARGOS PROVOR float is : MAX([N*CONFIG_TransmissionRepetitionPeriod_seconds*CONFIG_TelemetryRetransmission_COUNT]/3600, CONFIG_TransmissionMaxTime_hours). Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00206", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryRetransmission_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 206", + "skos:notation": "SDN:R18::CC00206", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00206", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Allow CTD pressure reset-offset at surface (0 = Disabled, 1 = Enabled). For ARVOR_CM floats. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00155", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureOffsetResetAtSurface_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-13 16:33:42.0", + "skos:altLabel": "Core Config 155", + "skos:notation": "SDN:R18::CC00155", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00155", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/3/" + }, + "pav:authoredOn": "2026-03-13 16:33:42.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Duration of the ice detection test. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00089", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionTestDuration_seconds" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 89", + "skos:notation": "SDN:R18::CC00089", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00089", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/2/" + }, + "dce:identifier": "SDN:R18::CC00084", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00084", + "skos:altLabel": "Core Config 84", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionPumpActionMaxTimeAscent_csec" + }, + "dc:identifier": "SDN:R18::CC00084", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Similar to CONFIG_PumpActionMaxTimeAscent_csec but for a float in ice detection mode. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/2/" + }, + "dce:identifier": "SDN:R18::CC00119", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00119", + "skos:altLabel": "Core Config 119", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMaxPerValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00119", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold for the valve action durations. The valve flow is known for each float and CONFIG_OilVolumeMaxPerValveAction_cm^3 is converted to a maxDurationOfValveAction. During descent phases the float regularly computes a valve duration to sink to the target depth. In some specific cases the result can be a huge valve action duration and the result must be thresholded by maxDurationOfValveAction. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/2/" + }, + "dce:identifier": "SDN:R18::CC00046", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00046", + "skos:altLabel": "Core Config 46", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentVerticalThresholdForBuoyancyAction_dbar" + }, + "dc:identifier": "SDN:R18::CC00046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold. If the float vertical motion, during CONFIG_PressureCheckTimeDescent_minutes, is less than this threshold, the float makes buoyancy adjustments. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Logging verbosity is an integer describing the parameters to be output. Lower values produce more terse logging. A verbosity of 2 typically yields standard logging. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00104", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_LoggingVerbosity_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 104", + "skos:notation": "SDN:R18::CC00104", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00104", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of Ocr # measurements. Template_Values:{param:[DownIrr, DownRad, UpIrr, UpRad];I:[1..3];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00052", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrBandwidth_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 52", + "skos:notation": "SDN:R18::CB00052", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00052", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/2/" + }, + "dce:identifier": "SDN:R18::CC00137", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00137", + "skos:altLabel": "Core Config 137", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPositionHyperRetraction_COUNT" + }, + "dc:identifier": "SDN:R18::CC00137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For Apex APF11 Iridium floats, Hyper Retraction is used to pull in an amount of oil to temporarily increase a float density as it leaves the ocean surface. The result of the increased float density allows a float to move through a mixed density layer more easily or allows a float to descend at a faster rate. In particular, the HyperRetractCount is the temporary piston position used when the float leaves the Surface and starts a ParkDescent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Ascent end time of Profile 2 (expected time at the surface of Profile 2). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00020", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentEndTimeProfile2_HHMM" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 20", + "skos:notation": "SDN:R18::CC00020", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00020", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during in the depth zone #. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[minutes, seconds, dsec, bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00004", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 4", + "skos:notation": "SDN:R18::CB00004", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00004", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/2/" + }, + "dce:identifier": "SDN:R18::CC00099", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00099", + "skos:altLabel": "Core Config 99", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleLastGregMonth_MM" + }, + "dc:identifier": "SDN:R18::CC00099", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last month to use float cycle duration # (in gregorian month). is a number denoting the internal cycle label. Template_Values:{D:[1..9999];unit:[MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum waiting time needed by the between a switch OFF and a switch ON. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00011", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PowerSwitchDelayMin_msec" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 11", + "skos:notation": "SDN:R18::CB00011", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00011", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/2/" + }, + "dce:identifier": "SDN:R18::CC00035", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00035", + "skos:altLabel": "Core Config 35", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DeepestPressureAscendingProfile_dbar" + }, + "dc:identifier": "SDN:R18::CC00035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest pressure sampled in the ascending profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of for Turbidity measurements. Template_Values:{short_sensor_name:[Flntu, Stm];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00064", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TurbidityWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 64", + "skos:notation": "SDN:R18::CB00064", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00064", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/2/" + }, + "dce:identifier": "SDN:R18::CC00121", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00121", + "skos:altLabel": "Core Config 121", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMinPerValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00121", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold for the valve action durations. The valve flow is known for each float and CONFIG_OilVolumeMinPerValveAction_cm^3 is converted to a minDurationOfValveAction. During descent phases the float regularly computes a valve duration to sink to the target depth. In some specific cases the result can be a brief valve action duration and the result must be thresholded by minDurationOfValveAction. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/2/" + }, + "dce:identifier": "SDN:R18::CC00088", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00088", + "skos:altLabel": "Core Config 88", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionStartPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00088", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Start pressure of the ice detection algorithm. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Mode of the ISA ice detection algorithm (see float manual for details). E.g: For March 2018 firmware, the values signifiations are: 0 = not used, 1 = algorithm based on temperature median value, 2 = algorithm based on temperature median value and associated salinities. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00075", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionISAMode_NUMBER" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 75", + "skos:notation": "SDN:R18::CC00075", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00075", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/2/" + }, + "dce:identifier": "SDN:R18::CC00205", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00205", + "skos:altLabel": "Core Config 205", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryRepeatSessionDelay_minutes" + }, + "dc:identifier": "SDN:R18::CC00205", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Delay before a second Iridium session performed by the float just before diving for a new cycle. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/2/" + }, + "dce:identifier": "SDN:R18::CC00132", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00132", + "skos:altLabel": "Core Config 132", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkTime_hours" + }, + "dc:identifier": "SDN:R18::CC00132", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time spent at the parking pressure, not including descending and ascending times. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode B phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00023", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedBPhase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 23", + "skos:notation": "SDN:R18::CB00023", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00023", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode of the in the depth zone # (0 : none, 2 : pulsed, 3 : continuous). Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00008", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZonePowerAcquisitionMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 8", + "skos:notation": "SDN:R18::CB00008", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00008", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/2/" + }, + "dce:identifier": "SDN:R18::CC00185", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00185", + "skos:altLabel": "Core Config 185", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionTimeBuoyancyAcquisition_csec" + }, + "dc:identifier": "SDN:R18::CC00185", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the last pump action of the buoyancy acquisition phase. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of subsamplings of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00076", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneNumberOfSubSampling_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 76", + "skos:notation": "SDN:R18::CB00076", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00076", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/2/" + }, + "dce:identifier": "SDN:R18::CC00072", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00072", + "skos:altLabel": "Core Config 72", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionConnectionTimeOut_minutes" + }, + "dc:identifier": "SDN:R18::CC00072", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time out. This is similar to CONFIG_ConnectionTimeOut_minutes but for the first telemetry session of a float in ice detection mode. In ice detection mode, the float reduces the timeout of the first Iridium connection: if the first connection fails the cycle is aborted (ice probably present) but if the first connection succeeds (waters free of ice) the float switches to the nominal timeout (CONFIG_ConnectionTimeOut_minutes) for the following transmissions of the current cycle. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/2/" + }, + "dce:identifier": "SDN:R18::CC00217", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00217", + "skos:altLabel": "Core Config 217", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TripInterval_hours" + }, + "dc:identifier": "SDN:R18::CC00217", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conversion factor for the up and down times. If it is set to 2, then each interval is equal to 2 hours (or seconds or minutes); if it is set to 1, then each interval is equal to 1 unit. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/2/" + }, + "dce:identifier": "SDN:R18::CC00144", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00144", + "skos:altLabel": "Core Config 144", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureBladderMax_dbar" + }, + "dc:identifier": "SDN:R18::CC00144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum air bladder pressure setting. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/2/" + }, + "dce:identifier": "SDN:R18::CC00039", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00039", + "skos:altLabel": "Core Config 39", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthTable_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth table number for profiler sampling pressures. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/2/" + }, + "dce:identifier": "SDN:R18::CC00071", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00071", + "skos:altLabel": "Core Config 71", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionAscentVerticalThresholdForBuoyancyAction_dbar" + }, + "dc:identifier": "SDN:R18::CC00071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold. This is similar to CONFIG_AscentVerticalThresholdForBuoyancyAction_dbar but for a float in ice detection mode. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Fluorescence of measurements. Template_Values:{short_sensor_name:[Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00035", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MinTransmittedFluorescence_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 35", + "skos:notation": "SDN:R18::CB00035", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00035", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/2/" + }, + "dce:identifier": "SDN:R18::CC00125", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00125", + "skos:altLabel": "Core Config 125", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkAndProfileCycleCounter_COUNT" + }, + "dc:identifier": "SDN:R18::CC00125", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of profiles performed from Park depth before a deep profile is done. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/2/" + }, + "dce:identifier": "SDN:R18::CC00197", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00197", + "skos:altLabel": "Core Config 197", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceValveAdditionalActions_COUNT" + }, + "dc:identifier": "SDN:R18::CC00197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Target number of additional valve actions performed at the surface during the buoyancy reduction phase. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/2/" + }, + "dce:identifier": "SDN:R18::CC00220", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00220", + "skos:altLabel": "Core Config 220", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ValveActionPeriodFactorBuoyancyReduction_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00220", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Define the period of valve actions during the second phase of the buoyancy reduction (between CONFIG_BuoyancyReductionFirstThreshold_dbar and CONFIG_BuoyancyReductionSecondThreshold_dbar). The valve is open during CONFIG_ValveTimeActionBuoyancyReduction_csec each CONFIG_ValveTimeActionBuoyancyReduction_csec*CONFIG_ValveActionPeriodFactorBuoyancyReduction_NUMBER. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/2/" + }, + "dce:identifier": "SDN:R18::CC00103", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00103", + "skos:altLabel": "Core Config 103", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalPressureCalibrationCoef2_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00103", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Second coefficient used to compute float internal pressure from sensor counts. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/2/" + }, + "dce:identifier": "SDN:R18::CC00030", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00030", + "skos:altLabel": "Core Config 30", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CTDPumpStopPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure at which the CTD pump is switched off. As the float ascends, the code looks at the pressure and if <= CONFIG_CTDPumpStopPressure, the CTD is turned off. CTDPumpStopPressure is a firmware threshold and as such, data may continue to be collected for a limited span after the threshold is recognized. Especially in floats that return high resolution discrete data, there might be data collected shallower than the cut off, due to the discrete nature of the pressure data and also due to the time necessary for the firmware to turn off the CTD once the pressure threshold is reached. For example for SOLOII floats the CTD is switched off at 1dbar, and typically the shallowest data is from 0.5 to 0.8 dbar. This shallow data should be carefully assessed for its validity. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/2/" + }, + "dce:identifier": "SDN:R18::CC00156", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00156", + "skos:altLabel": "Core Config 156", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureOffsetSampledAfterTransmission_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00156", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sample surface pressure offset only if an Iridium transmission or a GPS session occurred (to be sure that the pressure offset is sampled at the surface). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling interval used by the float to collect T and S between CONFIG_IceDetectionMixedLayerPMax_dbar and CONFIG_IceDetectionMixedLayerPMin_dbar for the TEMP comparison, within the Ice Detection algorithm. Units can be dbar (e.g. PROVOR CTS5) or minutes (e.g. ARVOR). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg, minutes]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00083", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionPressureInterval_dbar" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 83", + "skos:notation": "SDN:R18::CC00083", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00083", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/4/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The Apf frame definition allows for a variable number of spectrometer pixels (also called channels) to be included in the frame. The two pixel values are configured indirectly via the wavelength range of the spectrum to be output (Suna Hardware Manual, section 4.2.3, input/output configuration parameters, data wavelength low/high.) The firmware converts the wavelength values to spectrometer pixels. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00047", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaApfFrameOutputPixelEnd_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 47", + "skos:notation": "SDN:R18::CB00047", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00047", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/2/" + }, + "dce:identifier": "SDN:R18::CC00189", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00189", + "skos:altLabel": "Core Config 189", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RudicsAndIridiumSession_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00189", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This float has a RUDICS transmission system. However it is able to connect to Iridium if the user wants to get one Iridium position for each cycle. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Specifies whether the Flbb instrument is set to sample. Values: Zero disables sampling and nonzero enables sampling. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00056", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FlbbSampling_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 56", + "skos:notation": "SDN:R18::CB00056", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00056", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/2/" + }, + "dce:identifier": "SDN:R18::CC00171", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00171", + "skos:altLabel": "Core Config 171", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileDepthInterval_dbar" + }, + "dc:identifier": "SDN:R18::CC00171", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Target depth interval between final CTD samples when in the spot sampling mode. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/2/" + }, + "dce:identifier": "SDN:R18::CC00115", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00115", + "skos:altLabel": "Core Config 115", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfOutOfTolerancePresBeforeReposition_COUNT" + }, + "dc:identifier": "SDN:R18::CC00115", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of consecutive pressure measurements outside the target pressure interval before performing a drift readjustment. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/2/" + }, + "dce:identifier": "SDN:R18::CC00042", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00042", + "skos:altLabel": "Core Config 42", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentSpeedMin_mm/s" + }, + "dc:identifier": "SDN:R18::CC00042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float minimum descent speed before activating the valve. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the drift at profile pressure. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00006", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DriftAtProfilePresSamplingPeriod_minutes" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 6", + "skos:notation": "SDN:R18::CB00006", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00006", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Start pressure to define the ascent depth zone # of the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00091", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneStartPres_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 91", + "skos:notation": "SDN:R18::CB00091", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00091", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Isobar that divides shallow depths from intermediate depths for the purpose of data reduction, for floats with 3 depth zones. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00168", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureThresholdDataReductionShallowToIntermediate_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 168", + "skos:notation": "SDN:R18::CC00168", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00168", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/2/" + }, + "dce:identifier": "SDN:R18::CC00095", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00095", + "skos:altLabel": "Core Config 95", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementPeriodicity_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00095", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Cycle periodicity of the in air measurement phase: 0 means no in air acquisition, 1 = in air acquisition every cycle, and N = in air acquisition one cycle every N cycles. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of for excitation of fluorescence measurements. Template_Values:{short_sensor_name:[Cyc, Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00059", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceExcitationBandwidth_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 59", + "skos:notation": "SDN:R18::CB00059", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00059", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of for emission of fluorescence measurements. Template_Values:{short_sensor_name:[Cyc, Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00058", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceEmissionWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 58", + "skos:notation": "SDN:R18::CB00058", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00058", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/2/" + }, + "dce:identifier": "SDN:R18::CC00173", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00173", + "skos:altLabel": "Core Config 173", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileIncludeTransitionBin_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00173", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Include transition bins between depth zones (shallow/intermediate/bottom) in the algorithm of data reduction (1 = YES, 0 = NO). Yes: Calculate transition bin between top and middle section, and between middle and bottom sections. Transition bins are: (last top bin center + Top_Bin_Interval/2) to (last top bin center + Middle_Bin_Interval/2) and (last middle bin center + Middle_Bin_Interval/2) to (last middle bin center + Bottom_Bin_Interval/2). No: Do not calculate transition bins. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/2/" + }, + "dce:identifier": "SDN:R18::CC00060", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00060", + "skos:altLabel": "Core Config 60", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSTimeout_seconds" + }, + "dc:identifier": "SDN:R18::CC00060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Timeout for GPS acquisition. Template_Values:{unit:[hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Crover beam attenuation measurements. Template_Values:{unit:[m^-1]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00040", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverMaxTransmittedBeamAttenuation_m^-1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 40", + "skos:notation": "SDN:R18::CB00040", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00040", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/2/" + }, + "dce:identifier": "SDN:R18::CC00127", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00127", + "skos:altLabel": "Core Config 127", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplesPerAverage_COUNT" + }, + "dc:identifier": "SDN:R18::CC00127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples per value reported when the float reports average values. For example, for a float that samples hourly during the park period for 105 hours, and reports the average P and T, this would be 105. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SlicesThickness of the ascent depth zone # of the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00093", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneSlicesThickness_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 93", + "skos:notation": "SDN:R18::CB00093", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00093", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/2/" + }, + "dce:identifier": "SDN:R18::CC00054", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00054", + "skos:altLabel": "Core Config 54", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FloatReferenceDay_FloatDay" + }, + "dc:identifier": "SDN:R18::CC00054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Reference day. For PROVOR and ARVOR floats, this refers to the day number on which the first profile is to be made. The day when the mission starts is day zero. Template_Values:{unit:[FloatDay]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ctd salinity measurements. Template_Values:{unit:[psu, mpsu]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00018", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMaxTransmittedSalinity_mpsu" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 18", + "skos:notation": "SDN:R18::CB00018", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00018", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of for emission of fluorescence measurements. Template_Values:{short_sensor_name:[Cyc, Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00060", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceEmissionBandwidth_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 60", + "skos:notation": "SDN:R18::CB00060", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00060", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/2/" + }, + "dce:identifier": "SDN:R18::CC00175", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00175", + "skos:altLabel": "Core Config 175", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileIntermediateSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CC00175", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Thickness of the slices for intermediate depths (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/2/" + }, + "dce:identifier": "SDN:R18::CC00201", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00201", + "skos:altLabel": "Core Config 201", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryAutoTestAtDeployment_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00201", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a full auto-test (RUDICS server connection test) at float deployment (1 = YES, 0 = NO). A full auto-test includes a connection test on the RUDICS server and a GPS fix acquisition. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Suna nitrate concentration measurements. Template_Values:{unit:[mmol/L, umol/L, umol/kg, ug/L, kg/m^3, mg/m^3, ml/L]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00042", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaMinTransmittedNitrateConcentration_umol/L" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 42", + "skos:notation": "SDN:R18::CB00042", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00042", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period for the ascent depth zone # of the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];N:[1..5];unit:[ minutes, seconds, dsec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00095", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 95", + "skos:notation": "SDN:R18::CB00095", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00095", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/2/" + }, + "dce:identifier": "SDN:R18::CC00029", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00029", + "skos:altLabel": "Core Config 29", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CPActivationPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CP Activation Pressure. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/2/" + }, + "dce:identifier": "SDN:R18::CC00139", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00139", + "skos:altLabel": "Core Config 139", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonProfile_COUNT" + }, + "dc:identifier": "SDN:R18::CC00139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset profile piston position. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Interval between successive pump activations during ascent. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00181", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionIntervalDuringAscent_COUNT" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 181", + "skos:notation": "SDN:R18::CC00181", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00181", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Scenario followed by the float when a hanging (too low vertical motion after having activated its pump) during the ascent is detected. This parameter configures (with the same idea as CONFIG_GroundingMode_NUMBER for grounding) what should be the actions to perform to try to escape from hanging (e.g., it can activate its pump and valve alternatively to try to escape, or abandon the ascent and switch to the next scheduled task). Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00066", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_HangingMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 66", + "skos:notation": "SDN:R18::CC00066", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00066", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/2/" + }, + "dce:identifier": "SDN:R18::CC00011", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00011", + "skos:altLabel": "Core Config 11", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentToSurfaceTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum time a float will try to reach its target depth (surface) before aborting this step. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Stop pressure to define the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00072", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneStopPres_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 72", + "skos:notation": "SDN:R18::CB00072", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00072", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Is the vector board show mode ON? (Yes/No). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00044", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_VectorBoardShowModeOn_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 44", + "skos:notation": "SDN:R18::CB00044", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00044", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Maximum transmission time for recovery messages. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00213", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionMaxTimeforRecoveryMessage_minutes" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 213", + "skos:notation": "SDN:R18::CC00213", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00213", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/2/" + }, + "dce:identifier": "SDN:R18::CC00140", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00140", + "skos:altLabel": "Core Config 140", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivation_dbar" + }, + "dc:identifier": "SDN:R18::CC00140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth at which float is set to pressure activate. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/2/" + }, + "dce:identifier": "SDN:R18::CC00025", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00025", + "skos:altLabel": "Core Config 25", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CompensatorHyperRetraction_COUNT" + }, + "dc:identifier": "SDN:R18::CC00025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Setting for the compensator hyper-retraction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period for the sensor during the in air measurement phase. Template_Values:{short_sensor_name:[Ctd, Eco, Ocr, Optode, Sfet, Suna, Crover];unit:[minutes, seconds, dsec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00097", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 97", + "skos:notation": "SDN:R18::CB00097", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00097", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ocr Photosynthetic Active Radiation measurements. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00031", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMinTransmittedPar_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 31", + "skos:notation": "SDN:R18::CB00031", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00031", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/2/" + }, + "dce:identifier": "SDN:R18::CC00013", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00013", + "skos:altLabel": "Core Config 13", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BitMaskMonthsIceDetectionActive_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicates for which months the ice detection algorithm is active - months in reverse order. The bit mask is input as a 3 digit hexadecimal value in the mission file sent to the float. This parameter in the metadata file however is the decimal number of that hexadecimal value. For example for the Southern Hemisphere the default position is to have the ice detection algorithm active for all months except February: the hexadecimal value in the mission file is 'FFD' (or 1111 1111 1101 in binary representation), and the associated decimal value for the configuration parameter in the metafile would be 4093. The northern hemisphere default would be all months active except for August: the hexadecimal value is 'F7F' (or 1111 0111 1111 in binary representation) and the associated decimal value for the configuration parameter in the metafile would be 3967. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Clarification needed. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00113", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MissionSignature_NUMBER" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-05 17:07:33.0", + "skos:altLabel": "Core Config 113", + "skos:notation": "SDN:R18::CC00113", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00113", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/4/" + }, + "pav:authoredOn": "2026-03-05 17:07:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/2/" + }, + "dce:identifier": "SDN:R18::CC00193", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00193", + "skos:altLabel": "Core Config 193", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SlowAscentPistonAdjustment_COUNT" + }, + "dc:identifier": "SDN:R18::CC00193", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Used to adjust the piston position to speed ascent when the ascent is too slow. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/2/" + }, + "dce:identifier": "SDN:R18::CC00078", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00078", + "skos:altLabel": "Core Config 78", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMixedLayerPMin_dbar" + }, + "dc:identifier": "SDN:R18::CC00078", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum sampling pressure used by ice cover detection algorithm (i.e., end pressure threshold for ice detection algorithm). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/2/" + }, + "dce:identifier": "SDN:R18::CC00212", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00212", + "skos:altLabel": "Core Config 212", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionEndCycle_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00212", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a telemetry transmission at the end of the cycle (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/2/" + }, + "dce:identifier": "SDN:R18::CC00179", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00179", + "skos:altLabel": "Core Config 179", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CC00179", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Thickness of the slices for shallow depths (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The Apf frame definition allows for a variable number of spectrometer pixels (also called channels) to be included in the frame. The two pixel values are configured indirectly via the wavelength range of the spectrum to be output (Suna Hardware Manual, section 4.2.3, input/output configuration parameters, data wavelength low/high.) The firmware converts the wavelength values to spectrometer pixels. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00046", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaApfFrameOutputPixelBegin_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 46", + "skos:notation": "SDN:R18::CB00046", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00046", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/2/" + }, + "dce:identifier": "SDN:R18::CC00161", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00161", + "skos:altLabel": "Core Config 161", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDriftAtProfileDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00161", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float drift at profile depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00225/", + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00225/1/" + }, + "dce:identifier": "SDN:R18::CC00225", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00225", + "skos:altLabel": "Core Config 225", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDriftPhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00225", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval, during phase # of multi-parking mode, for float drift at parking or profile depth. Template_Values:{D:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/2/" + }, + "dce:identifier": "SDN:R18::CC00152", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00152", + "skos:altLabel": "Core Config 152", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeStabilization_minutes" + }, + "dc:identifier": "SDN:R18::CC00152", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float stabilization phases. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Stop time to define the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00081", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeStopTime_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 81", + "skos:notation": "SDN:R18::CB00081", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00081", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/2/" + }, + "dce:identifier": "SDN:R18::CC00037", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00037", + "skos:altLabel": "Core Config 37", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DeepProfileFirstFloat_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a profile on deployment (1 = YES, 0 = NO). This means that when the float is deployed, it skips the drift phase at the PARKING depth and sinks directly to the PROFILE depth and starts ascending for the first profile. E.g, this concerns some APEX floats. Independent of the Park and Profile cycle length, the first profile is always a Deep Profile that begins at the Profile Depth. This means the float returns a CTD profile relatively soon, typically less than a day, after the float is deployed. This feature supports comparison of the initial float profile with a conventional CTD cast from the ship. The result is that the first cycle is of shorter duration with a profile depth equal to PROFILE configuration pressure (regardless of the CONFIG_ParkAndProfileCycleCounter_COUNT configuration information). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/2/" + }, + "dce:identifier": "SDN:R18::CC00015", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00015", + "skos:altLabel": "Core Config 15", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyMinimum_COUNT" + }, + "dc:identifier": "SDN:R18::CC00015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum allowable buoyancy position in counts, overriding any other count setting. This configuration parameter prevents the movement of oil from the oil compartment of the bladder into the oil reservoir at the specified count to manage the maximum depth of a descent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Suna nitrate concentration measurements. Template_Values:{unit:[mmol/L, umol/L, umol/kg, ug/L, kg/m^3, mg/m^3, ml/L]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00043", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaMaxTransmittedNitrateConcentration_umol/L" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 43", + "skos:notation": "SDN:R18::CB00043", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00043", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the park phase. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00130", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingPeriod_hours" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 130", + "skos:notation": "SDN:R18::CC00130", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00130", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Vertical pressure offset due to the fact that the sensor is not exactly at the Ctd pressure. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00048", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_VerticalPressureOffset_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 48", + "skos:notation": "SDN:R18::CB00048", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00048", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of measurements sampled before and after inflating the air bladder for the sensor during the in air measurement phase. Template_Values:{short_sensor_name:[Optode];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00096", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementNumberOfSamples_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 96", + "skos:notation": "SDN:R18::CB00096", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00096", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/2/" + }, + "dce:identifier": "SDN:R18::CC00163", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00163", + "skos:altLabel": "Core Config 163", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisationAtParkingDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00163", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation at parking depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ocr # measurements. Template_Values:{param:[DownIrr, DownRad, UpIrr, UpRad];I:[1..3];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00030", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMaxTransmitted_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 30", + "skos:notation": "SDN:R18::CB00030", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00030", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/2/" + }, + "dce:identifier": "SDN:R18::CC00111", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00111", + "skos:altLabel": "Core Config 111", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MissionPreludeAutoTest_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00111", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If set to yes, the float will transition to the Park Descent phase at the end of the period determined by CONFIG_MissionPreludeTime_hours only if the self test passes. If the self test fails, the float will go into Emergency mode. If set to no, the float will transition to the Park Descent phase whether or not the self test passes. In addition, the test results, pass or fail, will be logged to the system_log.txt file. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Slices thickness for in the depth zone #. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00002", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSlicesThickness_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 2", + "skos:notation": "SDN:R18::CB00002", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00002", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/2/" + }, + "dce:identifier": "SDN:R18::CC00017", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00017", + "skos:altLabel": "Core Config 17", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyReductionFirstThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "First threshold of the buoyancy reduction phase. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/2/" + }, + "dce:identifier": "SDN:R18::CC00164", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00164", + "skos:altLabel": "Core Config 164", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisationAtProfileDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00164", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation at profile depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Preset duration of the down time (from start of descent to start of ascent) specific to the autumn/winter period. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00049", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTimeAutumnWinter_hours" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 49", + "skos:notation": "SDN:R18::CC00049", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00049", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/2/" + }, + "dce:identifier": "SDN:R18::CC00091", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00091", + "skos:altLabel": "Core Config 91", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMaxCycles_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00091", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum number of Ice Descent and Ice Ascent cycles the float will perform when it is unable to perform telemetry. When it has completed the specified number of cycles, the float will continue with the next profiling cycle. Range: [0-24] cycles. If IceDescentCycles is disabled, then the float will try to detect an ice cap if it cannot find the sky. If IceDescentCycles is enabled, the float will not try to detect the ice cap and will operate in accordance with 'Ice Descent and Ice Ascent Cycles' where it tries to drift out from under an ice cap. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/2/" + }, + "dce:identifier": "SDN:R18::CC00216", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00216", + "skos:altLabel": "Core Config 216", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionRepetitionPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CC00216", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission repetition rate. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Nitrate sampling flag. Values:<0:enable; 0:disable; >0:enable and initialize. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00055", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NitrateSampling_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 55", + "skos:notation": "SDN:R18::CB00055", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00055", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/2/" + }, + "dce:identifier": "SDN:R18::CC00079", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00079", + "skos:altLabel": "Core Config 79", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionNoVerticalMotionTimeOut_csec" + }, + "dc:identifier": "SDN:R18::CC00079", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold. When the float is in ice detection mode, if, despite of pump actions, no vertical motion is detected during this delay or this volume transfered, then the cycle is aborted. Template_Values:{unit:[minutes, seconds, dsec, csec, msec, usec, cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/2/" + }, + "dce:identifier": "SDN:R18::CC00165", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00165", + "skos:altLabel": "Core Config 165", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisationDuringAscent_dbar" + }, + "dc:identifier": "SDN:R18::CC00165", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation during ascent at a prescribed depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ocr Photosynthetic Active Radiation measurements. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00032", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMaxTransmittedPar_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 32", + "skos:notation": "SDN:R18::CB00032", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00032", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/2/" + }, + "dce:identifier": "SDN:R18::CC00123", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00123", + "skos:altLabel": "Core Config 123", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumePerPumpActionDescent_cm^3" + }, + "dc:identifier": "SDN:R18::CC00123", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Nominal oil volume of each pump action during descent (when the float brakes because of a too fast descent speed). Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/2/" + }, + "dce:identifier": "SDN:R18::CC00008", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00008", + "skos:altLabel": "Core Config 8", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeedMin_mm/s" + }, + "dc:identifier": "SDN:R18::CC00008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float minimum ascent speed before activating the pump. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/2/" + }, + "dce:identifier": "SDN:R18::CC00050", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00050", + "skos:altLabel": "Core Config 50", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTimeExpiryTimeOfDay_minutes" + }, + "dc:identifier": "SDN:R18::CC00050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time out value for expiration of the down time (in minutes past midnight). Template_Values:{unit:[hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ctd pressure measurements. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00014", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMaxTransmittedPressure_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 14", + "skos:notation": "SDN:R18::CB00014", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00014", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/2/" + }, + "dce:identifier": "SDN:R18::CC00114", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00114", + "skos:altLabel": "Core Config 114", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfInternalCycles_COUNT" + }, + "dc:identifier": "SDN:R18::CC00114", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of internal cycles. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/2/" + }, + "dce:identifier": "SDN:R18::CC00001", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00001", + "skos:altLabel": "Core Config 1", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InverseGain_COUNT" + }, + "dc:identifier": "SDN:R18::CC00001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Inverse of the gain used to pack the P, T and S data. Template_Values:{PARAM:[PRES,PSAL,TEMP];unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/2/" + }, + "dce:identifier": "SDN:R18::CC00176", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00176", + "skos:altLabel": "Core Config 176", + "dc:date": "2025-12-12 11:41:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfilePressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00176", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profile pressure. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/2/" + }, + "dce:identifier": "SDN:R18::CC00200", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00200", + "skos:altLabel": "Core Config 200", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TargetAscentSpeed_cm/s" + }, + "dc:identifier": "SDN:R18::CC00200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Speed of ascent during upcast. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The minimum buoyancy position in counts. The buoyancy pump will shut off if the buoyancy position reaches this minimum value. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00134", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonFullRetraction_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 134", + "skos:notation": "SDN:R18::CC00134", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00134", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "When the float Real Time Clock is set, also set the clock of the measurement card. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00067", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SetClockSensorCard_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 67", + "skos:notation": "SDN:R18::CB00067", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00067", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted beta measurements. Template_Values:{short_sensor_name:[Eco, Flbb];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00034", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxTransmittedBeta_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 34", + "skos:notation": "SDN:R18::CB00034", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00034", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/2/" + }, + "dce:identifier": "SDN:R18::CC00208", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00208", + "skos:altLabel": "Core Config 208", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeDelayAfterEndOfAscentPressureThreshold_minutes" + }, + "dc:identifier": "SDN:R18::CC00208", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time Delay. At the end of the ascent phase, when the float detects a given pressure (e.g. 6 dbar) it waits for this time delay before starting the pump for the final buoyancy acquisition. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/2/" + }, + "dce:identifier": "SDN:R18::CC00135", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00135", + "skos:altLabel": "Core Config 135", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPark_COUNT" + }, + "dc:identifier": "SDN:R18::CC00135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset park piston position. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. In case of grounding during the descent to profile depth phase, this parameter (PM18 in float user manual) defines the thickness of a new deep zone (from profile start pressure) for the purpose of data reduction. The thickness of the slices is 1 dbar in this zone. Should be set to 0 to disable this function. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00062", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModeDeepZoneThickness_dbar" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 62", + "skos:notation": "SDN:R18::CC00062", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00062", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/2/" + }, + "dce:identifier": "SDN:R18::CC00116", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00116", + "skos:altLabel": "Core Config 116", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfSubCycles_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00116", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of sub-cycles performed by the float during one float cycle. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode D phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00026", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedDPhase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 26", + "skos:notation": "SDN:R18::CB00026", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00026", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/2/" + }, + "dce:identifier": "SDN:R18::CC00202", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00202", + "skos:altLabel": "Core Config 202", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryEncodeMessage_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00202", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Encode the message before transmission (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The buoyancy position used to ballast the float to be neutrally buoyant at a specified depth (usually 2000 dbar). Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00136", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPositionBallast_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 136", + "skos:notation": "SDN:R18::CC00136", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00136", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/2/" + }, + "dce:identifier": "SDN:R18::CC00065", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00065", + "skos:altLabel": "Core Config 65", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModePresAdjustment_dbar" + }, + "dc:identifier": "SDN:R18::CC00065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If in grounding mode 0, the float changes its drift pressure to its programmed one minus this value only if its current pressure is greater than this value. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/2/" + }, + "dce:identifier": "SDN:R18::CC00169", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00169", + "skos:altLabel": "Core Config 169", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileBottomBinInterval_cbar" + }, + "dc:identifier": "SDN:R18::CC00169", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth intervals for bottom depth (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Fluorescence of measurements. Template_Values:{short_sensor_name:[Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00036", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxTransmittedFluorescence_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 36", + "skos:notation": "SDN:R18::CB00036", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00036", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of sampling schemes defined for the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00079", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfSamplingScheme_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 79", + "skos:notation": "SDN:R18::CB00079", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00079", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/2/" + }, + "dce:identifier": "SDN:R18::CC00151", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00151", + "skos:altLabel": "Core Config 151", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeParking_minutes" + }, + "dc:identifier": "SDN:R18::CC00151", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float drift at park or profile depth. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00100/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00100/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00100/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Vertical pressure offset of the optode sensor. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CB00100", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeVerticalPressureOffset_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-12 11:39:41.0", + "skos:altLabel": "BGC Config 100", + "skos:notation": "SDN:R18::CB00100", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00100", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00100/3/" + }, + "pav:authoredOn": "2025-12-12 11:39:41.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Ascent end time of Profile 3 (expected time at the surface of Profile 3). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00021", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentEndTimeProfile3_HHMM" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 21", + "skos:notation": "SDN:R18::CC00021", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00021", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/2/" + }, + "dce:identifier": "SDN:R18::CC00005", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00005", + "skos:altLabel": "Core Config 5", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CC00005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the ascending profile. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/2/" + }, + "dce:identifier": "SDN:R18::CC00147", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00147", + "skos:altLabel": "Core Config 147", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeBuoyancyReductionPhase_seconds" + }, + "dc:identifier": "SDN:R18::CC00147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks after each valve action before checking the pressure during the buoyancy reduction phase. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/2/" + }, + "dce:identifier": "SDN:R18::CC00074", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00074", + "skos:altLabel": "Core Config 74", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionDescentVerticalThresholdToEndBuoyancyInversionPhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00074", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold. When the cycle is aborted, this threshold is used to detect speed inversion and to stop buoyancy inversion phase. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/2/" + }, + "dce:identifier": "SDN:R18::CC00100", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00100", + "skos:altLabel": "Core Config 100", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleLastGregYear_YYYY" + }, + "dc:identifier": "SDN:R18::CC00100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last year to use float cycle duration # (in gregorian year, two digits). is a number denoting the internal cycle label. Template_Values:{D:[1..9999];unit:[YYYY]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Start time to define the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00080", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeStartTime_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 80", + "skos:notation": "SDN:R18::CB00080", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00080", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Threshold used to detect a grounding of the float. If there is no vertical motion after having tranfered CONFIG_OilVolumeMinForGroundingDetection_cm^3 through the valve, the grounded flag is activated and the float acts as configurated by the CONFIG_GroundingMode_{unit} parameter. Template_Values:{unit:[cm^3]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00120", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMinForGroundingDetection_cm^3" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 120", + "skos:notation": "SDN:R18::CC00120", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00120", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Flntu turbidity measurements. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00038", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FlntuMinTransmittedTurbidity_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 38", + "skos:notation": "SDN:R18::CB00038", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00038", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum delay in number of days (units are days) or in number of cycles (units are NUMBER) since the last ice evasion date to attempt a surfacing. This is often called the 'Spring', where the float stays underwater for a time even though the temperature has warmed. Template_Values:{unit:[NUMBER, days]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00087", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionSpringInhibitionDelaySinceLastIceEvasion_days" + }, + "owl:versionInfo": "3", + "dc:date": "2026-02-11 18:06:22.0", + "skos:altLabel": "Core Config 87", + "skos:notation": "SDN:R18::CC00087", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00087", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/3/" + }, + "pav:authoredOn": "2026-02-11 18:06:22.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode C1 phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00020", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedC1Phase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 20", + "skos:notation": "SDN:R18::CB00020", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00020", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/2/" + }, + "dce:identifier": "SDN:R18::CC00221", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00221", + "skos:altLabel": "Core Config 221", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ValveTimeActionBuoyancyReduction_csec" + }, + "dc:identifier": "SDN:R18::CC00221", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the valve actions during the second phase of the buoyancy reduction (between CONFIG_BuoyancyReductionFirstThreshold_dbar and CONFIG_BuoyancyReductionSecondThreshold_dbar). Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/2/" + }, + "dce:identifier": "SDN:R18::CC00033", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00033", + "skos:altLabel": "Core Config 33", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CycleTime_hours" + }, + "dc:identifier": "SDN:R18::CC00033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total duration of one cycle, usually close to 240 hours (10 days). For SOLO floats this is the total duration of one cycle, assuming that all float operations reach their full time-out intervals before moving to the next float stage. Typically the actual cycle time will be shorter than this value. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/2/" + }, + "dce:identifier": "SDN:R18::CC00102", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00102", + "skos:altLabel": "Core Config 102", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalPressureCalibrationCoef1_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00102", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "First coefficient used to compute float internal pressure from sensor counts. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/2/" + }, + "dce:identifier": "SDN:R18::CC00159", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00159", + "skos:altLabel": "Core Config 159", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDrift_dbar" + }, + "dc:identifier": "SDN:R18::CC00159", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float drift at parking or profile depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/2/" + }, + "dce:identifier": "SDN:R18::CC00086", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00086", + "skos:altLabel": "Core Config 86", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionSpringInhibitionAscentEnd_dbar" + }, + "dc:identifier": "SDN:R18::CC00086", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice evasion depth for the spring inhibition part of the ISA algorithm. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Stop pressure to define the ascent depth zone # of the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00092", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneStopPres_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 92", + "skos:notation": "SDN:R18::CB00092", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00092", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of additional raw data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00084", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeRawDataAcquisition_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 84", + "skos:notation": "SDN:R18::CB00084", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00084", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/2/" + }, + "dce:identifier": "SDN:R18::CC00118", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00118", + "skos:altLabel": "Core Config 118", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMaxPerPumpActionReposition_cm^3" + }, + "dc:identifier": "SDN:R18::CC00118", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold for the pump action duration for reposition in the parking drift interval. The pump flow is known for each float and CONFIG_OilVolumeMaxPerPumpActionReposition_cm^3 is converted to a maxDurationOfPumpActionReposition. When a reposition should be performed, the float computes the needed pump action duration. In some specific cases the result can be a huge pump action duration and the result must be thresholded by maxDurationOfPumpActionReposition. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/2/" + }, + "dce:identifier": "SDN:R18::CC00160", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00160", + "skos:altLabel": "Core Config 160", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDriftAtParkingDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00160", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float drift at parking depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/2/" + }, + "dce:identifier": "SDN:R18::CC00045", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00045", + "skos:altLabel": "Core Config 45", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToProfTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum amount of time allowed for the float to descend to Profile pressure from Park pressure. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data processing output of the in the depth zone # (0 : raw, 1 : average, 7 : average/median/standard deviation). Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00009", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneDataProcessingMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 9", + "skos:notation": "SDN:R18::CB00009", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00009", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of Ocr # measurements. Template_Values:{param:[DownIrr, DownRad, UpIrr, UpRad];I:[1..3];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00051", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 51", + "skos:notation": "SDN:R18::CB00051", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00051", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Set the float Real Time Clock with GPS time. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00058", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSSetClock_LOGICAL" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 58", + "skos:notation": "SDN:R18::CC00058", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00058", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/2/" + }, + "dce:identifier": "SDN:R18::CC00053", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00053", + "skos:altLabel": "Core Config 53", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FirstBuoyancyNudge_COUNT" + }, + "dc:identifier": "SDN:R18::CC00053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Test message data - initial buoyancy nudge which is used at both the beginning and end of the profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/2/" + }, + "dce:identifier": "SDN:R18::CC00098", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00098", + "skos:altLabel": "Core Config 98", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleLastGregDay_DD" + }, + "dc:identifier": "SDN:R18::CC00098", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last day to use float cycle duration # (in gregorian day). is a number denoting the internal cycle label. Template_Values:{D:[1..9999];unit:[DD]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode B phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00024", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedBPhase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 24", + "skos:notation": "SDN:R18::CB00024", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00024", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/2/" + }, + "dce:identifier": "SDN:R18::CC00004", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00004", + "skos:altLabel": "Core Config 4", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentEndThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold used by the float to stop ascent speed control and pump actions. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data processing mode for the subsampling # of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];SubS:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00086", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeSubSamplingDataProcessingMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 86", + "skos:notation": "SDN:R18::CB00086", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00086", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Time, needed after the is powered ON, to provide its first sample. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00010", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_WarmUpTime_msec" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 10", + "skos:notation": "SDN:R18::CB00010", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00010", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/2/" + }, + "dce:identifier": "SDN:R18::CC00106", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00106", + "skos:altLabel": "Core Config 106", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxCycles_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00106", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of cycles before float turns itself off, goes into end of life mode, or into recovery mode. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Factor defining the oil volume transferred from the external bladder when a profile evasion occurs and the float has to brake. The transferred oil volume is CONFIG_ProfileEvasionBrakingFactor_NUMBER times the oil volume of the last pump action. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00172", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileEvasionBrakingFactor_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-02-11 18:06:22.0", + "skos:altLabel": "Core Config 172", + "skos:notation": "SDN:R18::CC00172", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00172", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/3/" + }, + "pav:authoredOn": "2026-02-11 18:06:22.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of Crover for Beam attenuation measurements. Template_Values:{unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00063", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverBeamAttenuationBandwidth_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 63", + "skos:notation": "SDN:R18::CB00063", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00063", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/2/" + }, + "dce:identifier": "SDN:R18::CC00055", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00055", + "skos:altLabel": "Core Config 55", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSAcquisitionEndCycle_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a GPS session to acquire a GPS fix at the end of the cycle (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Activate recovery mode (1 = YES, 0 = NO). If activated, the float remains on the surface indefinitely while transmitting its position and log files, and downloading new mission and sample configuration parameters if available. If recovery mode is then deactivated, the float will begin the Park Descent phase of a new mission. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00188", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RecoveryModeActivate_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 188", + "skos:notation": "SDN:R18::CC00188", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00188", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/2/" + }, + "dce:identifier": "SDN:R18::CC00141", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00141", + "skos:altLabel": "Core Config 141", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivationCheckTime_hours" + }, + "dc:identifier": "SDN:R18::CC00141", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "In pressure activated floats, this parameter sets how often the float will test whether it is in the water, e.g. every 2 hours. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/2/" + }, + "dce:identifier": "SDN:R18::CC00204", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00204", + "skos:altLabel": "Core Config 204", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryMaxRetrySecondary_COUNT" + }, + "dc:identifier": "SDN:R18::CC00204", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Some float versions have a secondary telemetry system; in this case the float is able to perform an Iridium session (to get one Iridium position) in addition to the RUDICS version used in the main telemetry session specified by CONFIG_TelemetryMaxRetry_COUNT. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sensors can be mounted on a stick to perform measurements in Air. Values (1=YES, 0=NO). Template_Values:{short_sensor_name:[Optode];unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00088", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MeasurementsInAir_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 88", + "skos:notation": "SDN:R18::CB00088", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00088", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/2/" + }, + "dce:identifier": "SDN:R18::CC00131", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00131", + "skos:altLabel": "Core Config 131", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingPeriodSecondary_hours" + }, + "dc:identifier": "SDN:R18::CC00131", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Configuration parameter for the secondary sampling period during the park phase following CONFIG_ParkSamplingPeriod_hours. This concerns some floats that have two different park sampling periods in a cycle, e.g. 1.5 hours followed by 6 hours. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/2/" + }, + "dce:identifier": "SDN:R18::CC00090", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00090", + "skos:altLabel": "Core Config 90", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceEvasionStopPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00090", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice evasion depth. This is a parameter for AC1 ice algorithm which aborts the profile at a prescribed depth (CONFIG_IceEvasionDepth_dbar) without any check on environmental conditions (AC1, ISA and AID algorithms are used together in the ice version of the CTS5). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/2/" + }, + "dce:identifier": "SDN:R18::CC00016", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00016", + "skos:altLabel": "Core Config 16", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyNudgeToPark_COUNT" + }, + "dc:identifier": "SDN:R18::CC00016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of counts to change the piston position from its current position in the direction that will bring the float closer to the Park depth. It is applied after three successive pressure samples that are outside the dead band specified by CONFIG_PressureTargetToleranceDuringDrift_dbar. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of depth zones defined for the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00070", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfDepthZone_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 70", + "skos:notation": "SDN:R18::CB00070", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00070", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode C2 phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00022", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedC2Phase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 22", + "skos:notation": "SDN:R18::CB00022", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00022", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/2/" + }, + "dce:identifier": "SDN:R18::CC00108", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00108", + "skos:altLabel": "Core Config 108", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxSizeEngineeringLogFile_kbyte" + }, + "dc:identifier": "SDN:R18::CC00108", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum size of engineering log file. Template_Values:{unit:[bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/2/" + }, + "dce:identifier": "SDN:R18::CC00184", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00184", + "skos:altLabel": "Core Config 184", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionMaxTimeReposition_csec" + }, + "dc:identifier": "SDN:R18::CC00184", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of the pump action for a drift readjustment. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Park sampling method (1 = averaged, 0 = spot sampling). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00128", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingMethod_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 128", + "skos:notation": "SDN:R18::CC00128", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00128", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/2/" + }, + "dce:identifier": "SDN:R18::CC00069", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00069", + "skos:altLabel": "Core Config 69", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetection_degC" + }, + "dc:identifier": "SDN:R18::CC00069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature threshold under which profiles are aborted (suspicion of ice formation conditions). Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/2/" + }, + "dce:identifier": "SDN:R18::CC00057", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00057", + "skos:altLabel": "Core Config 57", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSImprovedLocation_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Use the GPS improved location mode. When the float altitude is 0 meter, this mode provides better locations. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Preset pressure where continuous profiling begins on ascent. This varies depending on the phase. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00157", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureStartContinuousProfiling_dbar" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 157", + "skos:notation": "SDN:R18::CC00157", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00157", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00224/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00243/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00223/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00226/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00222/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00225/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float configuration settings selected by the float Principal Investigator (PI). Configuration parameters selected for a float are stored in the float 'meta.nc' file, under CONFIG_PARAMETER_NAME and LAUNCH_CONFIG_PARAMETER_NAME, which are populated by R18 prefLabel. Detailed information (incl. Template_Values explanation) is in the user manual (https://dx.doi.org/10.13155/29825), in the Reference Table 18 section.", + "dc:title": "Argo configuration parameter names", + "skos:prefLabel": "Argo configuration parameter names", + "owl:versionInfo": "11", + "dc:date": "2026-03-14 02:00:01.0", + "skos:altLabel": "CONFIG_PARAMETER_NAME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "CONFIG_PARAMETER_NAME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R19.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R19.jsonld new file mode 100644 index 0000000..c370081 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R19.jsonld @@ -0,0 +1,252 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/4/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/4/1/" + }, + "dce:identifier": "SDN:R19::4", + "pav:version": "1", + "skos:notation": "SDN:R19::4", + "skos:altLabel": "4", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value determined by satellite" + }, + "dc:identifier": "SDN:R19::4", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is determined by satellite" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/3/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/3/1/" + }, + "dce:identifier": "SDN:R19::3", + "pav:version": "1", + "skos:notation": "SDN:R19::3", + "skos:altLabel": "3", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value computed directly from transmitted float information" + }, + "dc:identifier": "SDN:R19::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is directly computed from relevant, transmitted float information" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/0/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/0/1/" + }, + "dce:identifier": "SDN:R19::0", + "pav:version": "1", + "skos:notation": "SDN:R19::0", + "skos:altLabel": "0", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated value from pre-deployment metadata information" + }, + "dc:identifier": "SDN:R19::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is estimated from pre-deployment information found in the metadata" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/1/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/1/1/" + }, + "dce:identifier": "SDN:R19::1", + "pav:version": "1", + "skos:notation": "SDN:R19::1", + "skos:altLabel": "1", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated value from information not transmitted by the float and/or reliant on typical float behaviour" + }, + "dc:identifier": "SDN:R19::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is estimated using information not transmitted by the float or by procedures that rely on typical float behaviour" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/9/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/9/1/" + }, + "dce:identifier": "SDN:R19::9", + "pav:version": "1", + "skos:notation": "SDN:R19::9", + "skos:altLabel": "9", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value not yet known" + }, + "dc:identifier": "SDN:R19::9", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is not immediately known, but believe it can be estimated later" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/2/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/2/1/" + }, + "dce:identifier": "SDN:R19::2", + "pav:version": "1", + "skos:notation": "SDN:R19::2", + "skos:altLabel": "2", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value transmitted by the float" + }, + "dc:identifier": "SDN:R19::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is transmitted by the float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/9/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Flag scale for values in all Argo netCDF cycle timing variables. Argo netCDF cycle timing variables JULD__STATUS are populated by R19 altLabel.", + "dc:title": "Argo STATUS flags", + "skos:prefLabel": "Argo STATUS flags", + "owl:versionInfo": "1", + "dc:date": "2020-05-04 03:00:04.0", + "skos:altLabel": "STATUS", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "STATUS", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R20.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R20.jsonld new file mode 100644 index 0000000..d4c135e --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R20.jsonld @@ -0,0 +1,308 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/1/" + }, + "pav:authoredOn": "2021-02-08 16:23:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/2/" + }, + "dce:identifier": "SDN:R20::S", + "pav:version": "2", + "skos:notation": "SDN:R20::S", + "skos:altLabel": "S", + "dc:date": "2021-02-08 16:23:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Drifting at shallower depth than programmed" + }, + "dc:identifier": "SDN:R20::S", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float is known to be drifting at a shallower depth than originally programmed" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/1/" + }, + "pav:authoredOn": "2021-02-08 16:22:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/2/" + }, + "dce:identifier": "SDN:R20::N", + "pav:version": "2", + "skos:notation": "SDN:R20::N", + "skos:altLabel": "N", + "dc:date": "2021-02-08 16:22:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Not grounded" + }, + "dc:identifier": "SDN:R20::N", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No, the float did not touch the ground" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground as determined by an external bathymetry database and the programmed free-drift period was affected. If it is uncertain what mission phase the grounding took place, use 'B'." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R20::B", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded (external bathymetry database check), and free-drift period affected" + }, + "owl:versionInfo": "3", + "dc:date": "2021-02-08 16:18:37.0", + "skos:altLabel": "B", + "skos:notation": "SDN:R20::B", + "pav:version": "3", + "dce:identifier": "SDN:R20::B", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/3/" + }, + "pav:authoredOn": "2021-02-08 16:18:37.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/U/", + "pav:authoredOn": "2020-05-03 20:29:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/U/1/" + }, + "dce:identifier": "SDN:R20::U", + "pav:version": "1", + "skos:notation": "SDN:R20::U", + "skos:altLabel": "U", + "dc:date": "2020-05-03 20:29:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown" + }, + "dc:identifier": "SDN:R20::U", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/P/", + "pav:authoredOn": "2021-02-08 16:07:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/P/1/" + }, + "dce:identifier": "SDN:R20::P", + "pav:version": "1", + "skos:notation": "SDN:R20::P", + "skos:altLabel": "P", + "dc:date": "2021-02-08 16:07:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded, but free-drift period not affected" + }, + "dc:identifier": "SDN:R20::P", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground during a part of the mission that did not affect the free-drift period." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/C/", + "pav:authoredOn": "2021-02-08 16:07:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/C/1/" + }, + "dce:identifier": "SDN:R20::C", + "pav:version": "1", + "skos:notation": "SDN:R20::C", + "skos:altLabel": "C", + "dc:date": "2021-02-08 16:07:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded (external bathymetry database check), but free-drift period not affected" + }, + "dc:identifier": "SDN:R20::C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground as determined by an external bathymetry database during a part of the mission that did not affect the free-drift period." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground and the programmed free-drift period was affected. If it is uncertain what mission phase the grounding took place, use 'Y'." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R20::Y", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded, and free-drift period affected" + }, + "owl:versionInfo": "3", + "dc:date": "2021-02-08 16:25:46.0", + "skos:altLabel": "Y", + "skos:notation": "SDN:R20::Y", + "pav:version": "3", + "dce:identifier": "SDN:R20::Y", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/3/" + }, + "pav:authoredOn": "2021-02-08 16:25:46.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/U/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/P/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/C/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Codes to indicate the best estimate of whether the float touched the ground during a specific cycle. Argo netCDF variable GROUNDED in the Trajectory file is populated by R20 altLabel.", + "dc:title": "Argo GROUNDED flags", + "skos:prefLabel": "Argo GROUNDED flags", + "owl:versionInfo": "2", + "dc:date": "2021-02-09 02:00:03.0", + "skos:altLabel": "GROUNDED", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "GROUNDED", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R22.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R22.jsonld new file mode 100644 index 0000000..545449a --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R22.jsonld @@ -0,0 +1,218 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_COASTAL/", + "pav:authoredOn": "2020-05-03 20:29:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_COASTAL/1/" + }, + "dce:identifier": "SDN:R22::FLOAT_COASTAL", + "pav:version": "1", + "skos:notation": "SDN:R22::FLOAT_COASTAL", + "skos:altLabel": "FLOAT_COASTAL", + "dc:date": "2020-05-03 20:29:53.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Coastal float" + }, + "dc:identifier": "SDN:R22::FLOAT_COASTAL", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Coastal float, i.e. ARVOR_C" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/POLAR_OCEAN_PROFILING_SYSTEM/", + "pav:authoredOn": "2020-05-03 20:29:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/POLAR_OCEAN_PROFILING_SYSTEM/1/" + }, + "dce:identifier": "SDN:R22::POLAR_OCEAN_PROFILING_SYSTEM", + "pav:version": "1", + "skos:notation": "SDN:R22::POLAR_OCEAN_PROFILING_SYSTEM", + "skos:altLabel": "POLAR_OCEAN_PROFILING_SYSTEM", + "dc:date": "2020-05-03 20:29:53.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ice platform providing meteorological data paired with tethered subsurface platform using buoyancy to go up and down" + }, + "dc:identifier": "SDN:R22::POLAR_OCEAN_PROFILING_SYSTEM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice platform that provides meteorological data is paired with a subsurface platform, either a PROVOR or NEMO float tethered along a cable that uses buoyancy to go up and down." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/ICE_TETHERED_PROFILER/", + "pav:authoredOn": "2020-05-03 20:29:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/ICE_TETHERED_PROFILER/1/" + }, + "dce:identifier": "SDN:R22::ICE_TETHERED_PROFILER", + "pav:version": "1", + "skos:notation": "SDN:R22::ICE_TETHERED_PROFILER", + "skos:altLabel": "ICE_TETHERED_PROFILER", + "dc:date": "2020-05-03 20:29:53.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ice platform providing meteorological data paired with tethered subsurface profiler using motor to go up and down" + }, + "dc:identifier": "SDN:R22::ICE_TETHERED_PROFILER", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface ice-mounted platform that provides meteorological data and subsurface profiler tethered to a cable that uses a motor to go up and down." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT/", + "pav:authoredOn": "2020-05-03 20:29:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT/1/" + }, + "dce:identifier": "SDN:R22::FLOAT", + "pav:version": "1", + "skos:notation": "SDN:R22::FLOAT", + "skos:altLabel": "FLOAT", + "dc:date": "2020-05-03 20:29:53.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Profiling float" + }, + "dc:identifier": "SDN:R22::FLOAT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_DEEP/", + "pav:authoredOn": "2020-05-03 20:29:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_DEEP/1/" + }, + "dce:identifier": "SDN:R22::FLOAT_DEEP", + "pav:version": "1", + "skos:notation": "SDN:R22::FLOAT_DEEP", + "skos:altLabel": "FLOAT_DEEP", + "dc:date": "2020-05-03 20:29:53.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Profiling deep float" + }, + "dc:identifier": "SDN:R22::FLOAT_DEEP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiling float that is capable of profiling deeper than 2000dbar" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_COASTAL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/POLAR_OCEAN_PROFILING_SYSTEM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/ICE_TETHERED_PROFILER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_DEEP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of platform family/category of Argo floats. Argo netCDF variable PLATFORM_FAMILY is populated by R22 altLabel.", + "dc:title": "Argo platform family", + "skos:prefLabel": "Argo platform family", + "owl:versionInfo": "1", + "dc:date": "2020-05-04 03:00:04.0", + "skos:altLabel": "PLATFORM_FAMILY", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PLATFORM_FAMILY", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R23.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R23.jsonld new file mode 100644 index 0000000..9ae248b --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R23.jsonld @@ -0,0 +1,1851 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/1/" + }, + "dce:identifier": "SDN:R23::ALAMO", + "pav:version": "1", + "skos:notation": "SDN:R23::ALAMO", + "skos:altLabel": "ALAMO", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ALAMO float" + }, + "dc:identifier": "SDN:R23::ALAMO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ALAMO air-launched micro-observer float. PLATFORM_TYPE_KEY = 800" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/1/" + }, + "dce:identifier": "SDN:R23::ITP", + "pav:version": "1", + "skos:notation": "SDN:R23::ITP", + "skos:altLabel": "ITP", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ITP float" + }, + "dc:identifier": "SDN:R23::ITP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice Tethered Profiler (ITP). PLATFORM_TYPE_KEY = 901" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/1/" + }, + "dce:identifier": "SDN:R23::POPS_NEMO", + "pav:version": "1", + "skos:notation": "SDN:R23::POPS_NEMO", + "skos:altLabel": "POPS_NEMO", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "POPS with NEMO float" + }, + "dc:identifier": "SDN:R23::POPS_NEMO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Polar Ocean Profiling System with a NEMO float. PLATFORM_TYPE_KEY = 430" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III_JUMBO/", + "pav:authoredOn": "2024-09-11 11:40:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III_JUMBO/1/" + }, + "dce:identifier": "SDN:R23::PROVOR_III_JUMBO", + "pav:version": "1", + "skos:notation": "SDN:R23::PROVOR_III_JUMBO", + "skos:altLabel": "", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_III_JUMBO float" + }, + "dc:identifier": "SDN:R23::PROVOR_III_JUMBO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR float with additional battery pack. PLATFORM_ TYPE_ KEY = 108." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/FLOAT/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/FLOAT/1/" + }, + "dce:identifier": "SDN:R23::FLOAT", + "pav:version": "1", + "skos:notation": "SDN:R23::FLOAT", + "skos:altLabel": "FLOAT", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown platform type" + }, + "dc:identifier": "SDN:R23::FLOAT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Generic value when platform type unknown. PLATFORM_TYPE_KEY = 999" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/" + }, + "skos:definition": { + "@language": "en", + "@value": "HM2000 float. PLATFORM_TYPE_KEY = 700" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::HM2000", + "skos:prefLabel": { + "@language": "en", + "@value": "HM2000 float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/870/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "HM2000", + "skos:notation": "SDN:R23::HM2000", + "pav:version": "1", + "dce:identifier": "SDN:R23::HM2000", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + }, + "skos:definition": { + "@language": "en", + "@value": "PALACE float. PLATFORM_TYPE_KEY = 000" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PALACE", + "skos:prefLabel": { + "@language": "en", + "@value": "PALACE float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PALACE", + "skos:notation": "SDN:R23::PALACE", + "pav:version": "1", + "dce:identifier": "SDN:R23::PALACE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/", + "pav:authoredOn": "2022-06-16 11:36:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "HM4000 float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::HM4000", + "skos:prefLabel": { + "@language": "en", + "@value": "HM4000 float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/" + }, + "dc:date": "2022-06-16 11:36:09.0", + "skos:altLabel": "HM4000", + "skos:notation": "SDN:R23::HM4000", + "pav:version": "1", + "dce:identifier": "SDN:R23::HM4000" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "APEX electro-magnetic float, measuring velocity and mixing. PLATFORM_TYPE_KEY = 005" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::APEX_EM", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX electro-magnetic float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "APEX_EM", + "skos:notation": "SDN:R23::APEX_EM", + "pav:version": "1", + "dce:identifier": "SDN:R23::APEX_EM" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + "skos:definition": { + "@language": "en", + "@value": "Polar Ocean Profiling System with a PROVOR float. PLATFORM_TYPE_KEY = 130" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::POPS_PROVOR", + "skos:prefLabel": { + "@language": "en", + "@value": "Polar Ocean Profiling System with a PROVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "POPS_PROVOR", + "skos:notation": "SDN:R23::POPS_PROVOR", + "pav:version": "1", + "dce:identifier": "SDN:R23::POPS_PROVOR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/" + }, + "skos:definition": { + "@language": "en", + "@value": "NAVIS_A float. PLATFORM_TYPE_KEY = 500" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NAVIS_A", + "skos:prefLabel": { + "@language": "en", + "@value": "NAVIS_A float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NAVIS_A", + "skos:notation": "SDN:R23::NAVIS_A", + "pav:version": "1", + "dce:identifier": "SDN:R23::NAVIS_A", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/1/" + }, + "dce:identifier": "SDN:R23::ALTO", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "ALTO float. PLATFORM_TYPE_KEY = 205" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ALTO", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/873/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ALTO", + "skos:notation": "SDN:R23::ALTO", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO-II float manufactured by Scripps Institution of Oceanography (SIO). PLATFORM_TYPE_KEY = 202" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_II", + "skos:prefLabel": { + "@language": "en", + "@value": "SIO SOLO-II float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_II", + "skos:notation": "SDN:R23::SOLO_II", + "pav:version": "1", + "dce:identifier": "SDN:R23::SOLO_II" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep NINJA float. PLATFORM_TYPE_KEY = 320" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NINJA_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep NINJA float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NINJA_D", + "skos:notation": "SDN:R23::NINJA_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::NINJA_D", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/" + }, + "skos:definition": { + "@language": "en", + "@value": "NAVIS_EBR float. PLATFORM_TYPE_KEY = 501" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NAVIS_EBR", + "skos:prefLabel": { + "@language": "en", + "@value": "NAVIS_EBR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/869/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NAVIS_EBR", + "skos:notation": "SDN:R23::NAVIS_EBR", + "pav:version": "1", + "dce:identifier": "SDN:R23::NAVIS_EBR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "DEEPSOLO MRV float. PLATFORM_TYPE_KEY = 221" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_D_MRV", + "skos:prefLabel": { + "@language": "en", + "@value": "DEEPSOLO MRV float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/874/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_D_MRV", + "skos:notation": "SDN:R23::SOLO_D_MRV", + "pav:version": "1", + "dce:identifier": "SDN:R23::SOLO_D_MRV", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NOTC/" + }, + "skos:definition": { + "@language": "en", + "@value": "COPEX float. PLATFORM_TYPE_KEY = 701" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::COPEX", + "skos:prefLabel": { + "@language": "en", + "@value": "COPEX float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/871/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "COPEX", + "skos:notation": "SDN:R23::COPEX", + "pav:version": "1", + "dce:identifier": "SDN:R23::COPEX", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/", + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/1/" + }, + "dce:identifier": "SDN:R23::SOLO_BGC", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC float manufactured by Scripps Institution of Oceanography (SIO). PLATFORM_TYPE_KEY = 206" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_BGC", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/" + } + ], + "dc:date": "2024-04-18 10:15:35.0", + "skos:altLabel": "SOLO_BGC", + "skos:notation": "SDN:R23::SOLO_BGC" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC_MRV float manufactured by MRV. PLATFORM_TYPE_KEY = 207." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_BGC_MRV", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC_MRV float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/" + } + ], + "dc:date": "2024-04-25 11:42:03.0", + "skos:altLabel": "SOLO_BGC_MRV", + "skos:notation": "SDN:R23::SOLO_BGC_MRV", + "pav:version": "1", + "dce:identifier": "SDN:R23::SOLO_BGC_MRV" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep SOLO float. PLATFORM_TYPE_KEY = 220" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep SOLO float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_D", + "skos:notation": "SDN:R23::SOLO_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::SOLO_D", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/1/" + }, + "dce:identifier": "SDN:R23::PROVOR_MT", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/" + }, + "skos:definition": { + "@language": "en", + "@value": "Metocean PROVOR float. PLATFORM_TYPE_KEY = 100" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_MT", + "skos:prefLabel": { + "@language": "en", + "@value": "Metocean PROVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PROVOR_MT", + "skos:notation": "SDN:R23::PROVOR_MT", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "S2-A float. PLATFORM_TYPE_KEY = 204" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::S2A", + "skos:prefLabel": { + "@language": "en", + "@value": "S2-A float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "S2A", + "skos:notation": "SDN:R23::S2A", + "pav:version": "1", + "dce:identifier": "SDN:R23::S2A" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/" + }, + "skos:definition": { + "@language": "en", + "@value": "NOVA float. PLATFORM_TYPE_KEY = 600" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NOVA", + "skos:prefLabel": { + "@language": "en", + "@value": "NOVA float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NOVA", + "skos:notation": "SDN:R23::NOVA", + "pav:version": "1", + "dce:identifier": "SDN:R23::NOVA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "S2X float designed for the US Navy. PLATFORM_TYPE_KEY = 203" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::S2X", + "skos:prefLabel": { + "@language": "en", + "@value": "S2X float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "S2X", + "skos:notation": "SDN:R23::S2X", + "pav:version": "1", + "dce:identifier": "SDN:R23::S2X", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/1/" + }, + "dce:identifier": "SDN:R23::APEX", + "pav:version": "1", + "skos:notation": "SDN:R23::APEX", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "APEX float. PLATFORM_TYPE_KEY = 001" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::APEX", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "APEX" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/1/" + }, + "dce:identifier": "SDN:R23::SOLO_W", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO float manufactured by Woods Whole Oceanographic Institution (WHOI). PLATFORM_TYPE_KEY = 201" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_W", + "skos:prefLabel": { + "@language": "en", + "@value": "WHOI SOLO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_W", + "skos:notation": "SDN:R23::SOLO_W", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/1/" + }, + "dce:identifier": "SDN:R23::SOLO", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO float manufactured by Scripps Institution of Oceanography (SIO). PLATFORM_TYPE_KEY = 200" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO", + "skos:prefLabel": { + "@language": "en", + "@value": "SIO SOLO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO", + "skos:notation": "SDN:R23::SOLO", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/1/" + }, + "pav:authoredOn": "2024-10-24 14:51:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/2/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Xuanwu Deep float, also known as HM6000 float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::XUANWU", + "skos:prefLabel": { + "@language": "en", + "@value": "Xuanwu Deep float" + }, + "owl:versionInfo": "2", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/" + }, + "dc:date": "2024-10-24 14:51:27.0", + "skos:altLabel": "XUANWU", + "skos:notation": "SDN:R23::XUANWU", + "pav:version": "2", + "dce:identifier": "SDN:R23::XUANWU" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/1/" + }, + "dce:identifier": "SDN:R23::NEMO", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO float. PLATFORM_TYPE_KEY = 400" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NEMO", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NEMO", + "skos:notation": "SDN:R23::NEMO", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep APEX float. PLATFORM_TYPE_KEY = 020" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::APEX_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep APEX float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "APEX_D", + "skos:notation": "SDN:R23::APEX_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::APEX_D", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/1/" + }, + "dce:identifier": "SDN:R23::NINJA", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA float. PLATFORM_TYPE_KEY = 300" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NINJA", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NINJA", + "skos:notation": "SDN:R23::NINJA" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/1/" + }, + "dce:identifier": "SDN:R23::PROVOR_II", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Dual board PROVOR float. PLATFORM_TYPE_KEY = 103" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_II", + "skos:prefLabel": { + "@language": "en", + "@value": "Dual board PROVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PROVOR_II", + "skos:notation": "SDN:R23::PROVOR_II", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/1/" + }, + "dce:identifier": "SDN:R23::ARVOR_C", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Coastal ARVOR float. PLATFORM_TYPE_KEY = 110" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ARVOR_C", + "skos:prefLabel": { + "@language": "en", + "@value": "Coastal ARVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ARVOR_C", + "skos:notation": "SDN:R23::ARVOR_C", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Deep ARVOR float. PLATFORM_TYPE_KEY = 120" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ARVOR_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep ARVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ARVOR_D", + "skos:notation": "SDN:R23::ARVOR_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::ARVOR_D" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/1/" + }, + "dce:identifier": "SDN:R23::PROVOR_III", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Dual board PROVOR CTS4 float. PLATFORM_TYPE_KEY = 104" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_III", + "skos:prefLabel": { + "@language": "en", + "@value": "Dual board PROVOR CTS4 float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PROVOR_III", + "skos:notation": "SDN:R23::PROVOR_III", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/1/" + }, + "dce:identifier": "SDN:R23::ARVOR", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "ARVOR float. PLATFORM_TYPE_KEY = 102" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ARVOR", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ARVOR", + "skos:notation": "SDN:R23::ARVOR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/1/" + }, + "dce:identifier": "SDN:R23::PROVOR", + "pav:version": "1", + "skos:notation": "SDN:R23::PROVOR", + "skos:altLabel": "PROVOR", + "dc:date": "2020-05-03 20:30:02.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/" + } + ], + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "PROVOR float. PLATFORM_TYPE_KEY = 101" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float" + }, + "owl:versionInfo": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/2/" + } + ], + "pav:authoredOn": "2023-06-22 12:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/3/" + }, + "dce:identifier": "SDN:R23::PROVOR_IV", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS5-Payload float. PLATFORM_TYPE_KEY = 105" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_IV", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR CTS5-Payload float" + }, + "owl:versionInfo": "3", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/" + }, + "dc:date": "2023-06-22 12:04:12.0", + "skos:altLabel": "PROVOR_IV", + "skos:notation": "SDN:R23::PROVOR_IV", + "pav:version": "3" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/1/" + }, + "pav:authoredOn": "2023-10-05 14:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/2/" + }, + "dce:identifier": "SDN:R23::PROVOR_V_JUMBO", + "pav:version": "2", + "skos:notation": "SDN:R23::PROVOR_V_JUMBO", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS5-USEA float with additional battery pack, USEA is the controller board type. PLATFORM_ TYPE_ KEY = 107" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_V_JUMBO", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V_JUMBO float" + }, + "owl:versionInfo": "2", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/" + } + ], + "dc:date": "2023-10-05 14:41:04.0", + "skos:altLabel": "PROVOR_V_JUMBO" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/1/" + }, + "pav:authoredOn": "2023-10-05 14:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/2/" + }, + "dce:identifier": "SDN:R23::PROVOR_V", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS5-USEA float, USEA is the controller board type. PLATFORM_ TYPE_ KEY = 106" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_V", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V float" + }, + "owl:versionInfo": "2", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/" + }, + "dc:date": "2023-10-05 14:41:04.0", + "skos:altLabel": "PROVOR_V", + "skos:notation": "SDN:R23::PROVOR_V", + "pav:version": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III_JUMBO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/FLOAT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Argo float types. Argo netCDF variable PLATFORM_TYPE is populated by R23 altLabel.", + "dc:title": "Argo platform type", + "skos:prefLabel": "Argo platform type", + "owl:versionInfo": "9", + "dc:date": "2024-10-25 03:00:00.0", + "skos:altLabel": "PLATFORM_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PLATFORM_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R24.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R24.jsonld new file mode 100644 index 0000000..8a2e0e5 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R24.jsonld @@ -0,0 +1,764 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/UNKNOWN/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/UNKNOWN/1/" + }, + "dce:identifier": "SDN:R24::UNKNOWN", + "pav:version": "1", + "skos:notation": "SDN:R24::UNKNOWN", + "skos:altLabel": "UNKNOWN", + "dc:date": "2020-05-03 20:30:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown platform maker" + }, + "dc:identifier": "SDN:R24::UNKNOWN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown platform maker. The platform maker should not be unknown, the use of this value should be exceptional" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Tsurumi-Seiki Co., Ltd." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::TSK", + "skos:prefLabel": { + "@language": "en", + "@value": "Tsurumi-Seiki Co., Ltd." + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "TSK", + "skos:notation": "SDN:R24::TSK", + "pav:version": "1", + "dce:identifier": "SDN:R24::TSK", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Woods Hole Oceanographic Institution" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::WHOI", + "skos:prefLabel": { + "@language": "en", + "@value": "Woods Hole Oceanographic Institution" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "WHOI", + "skos:notation": "SDN:R24::WHOI", + "pav:version": "1", + "dce:identifier": "SDN:R24::WHOI", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NOTC/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NOTC/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/" + }, + "skos:definition": { + "@language": "en", + "@value": "National Ocean Technology Center, China." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::NOTC", + "skos:prefLabel": { + "@language": "en", + "@value": "National Ocean Technology Center" + }, + "owl:versionInfo": "2", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "NOTC", + "skos:notation": "SDN:R24::NOTC", + "pav:version": "2", + "dce:identifier": "SDN:R24::NOTC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NOTC/2/" + }, + "pav:authoredOn": "2025-11-25 10:14:01.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Optimare" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::OPTIMARE", + "skos:prefLabel": { + "@language": "en", + "@value": "Optimare" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "OPTIMARE", + "skos:notation": "SDN:R24::OPTIMARE", + "pav:version": "1", + "dce:identifier": "SDN:R24::OPTIMARE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Webb Research Corporation" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::WRC", + "skos:prefLabel": { + "@language": "en", + "@value": "Webb Research Corporation" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "WRC", + "skos:notation": "SDN:R24::WRC", + "pav:version": "1", + "dce:identifier": "SDN:R24::WRC" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research (formerly Webb Research Corporation)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::TWR", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "TWR", + "skos:notation": "SDN:R24::TWR", + "pav:version": "1", + "dce:identifier": "SDN:R24::TWR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Martec" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::MARTEC", + "skos:prefLabel": { + "@language": "en", + "@value": "Martec" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "MARTEC", + "skos:notation": "SDN:R24::MARTEC", + "pav:version": "1", + "dce:identifier": "SDN:R24::MARTEC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/2/" + } + ], + "pav:authoredOn": "2024-10-24 14:51:27.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Laoshan Laboratory (was named QNLM before May 2023)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::LaoshanL", + "skos:prefLabel": { + "@language": "en", + "@value": "LaoshanLaboratory" + }, + "owl:versionInfo": "3", + "dc:date": "2024-10-24 14:51:27.0", + "skos:altLabel": "LaoshanLaboratory", + "skos:notation": "SDN:R24::LaoshanL", + "pav:version": "3", + "dce:identifier": "SDN:R24::LaoshanL", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/1/" + }, + "pav:authoredOn": "2024-10-24 14:51:27.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Qingdao National Laboratory for Marine Science and Technology, renamed LaoshanLaboratory since May 2023" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::QNLM", + "skos:prefLabel": { + "@language": "en", + "@value": "Qingdao National Laboratory for Marine Science and Technology" + }, + "owl:versionInfo": "2", + "dc:date": "2024-10-24 14:51:27.0", + "skos:altLabel": "QNLM", + "skos:notation": "SDN:R24::QNLM", + "pav:version": "2", + "dce:identifier": "SDN:R24::QNLM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Metocean" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::METOCEAN", + "skos:prefLabel": { + "@language": "en", + "@value": "Metocean" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "METOCEAN", + "skos:notation": "SDN:R24::METOCEAN", + "pav:version": "1", + "dce:identifier": "SDN:R24::METOCEAN", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/1/" + }, + "dce:identifier": "SDN:R24::SIO_IDG", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Scripps Institution of Oceanography - Instrument Development Group" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::SIO_IDG", + "skos:prefLabel": { + "@language": "en", + "@value": "Scripps Institution of Oceanography - Instrument Development Group" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "SIO_IDG", + "skos:notation": "SDN:R24::SIO_IDG", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/1/" + }, + "dce:identifier": "SDN:R24::NKE", + "pav:version": "1", + "skos:notation": "SDN:R24::NKE", + "skos:altLabel": "NKE", + "dc:date": "2020-05-03 20:30:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NKE Instrumentation" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "NKE Instrumentation" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::NKE" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/1/" + }, + "dce:identifier": "SDN:R24::HSOE", + "pav:version": "1", + "skos:notation": "SDN:R24::HSOE", + "skos:altLabel": "HSOE", + "dc:date": "2020-05-03 20:30:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Qingdao Hisun Ocean Equipment Corporation Limited" + }, + "dc:identifier": "SDN:R24::HSOE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Qingdao Hisun Ocean Equipment Corporation Limited" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Sea-Bird Scientific" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::SBE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "SBE", + "skos:notation": "SDN:R24::SBE", + "pav:version": "1", + "dce:identifier": "SDN:R24::SBE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/1/" + }, + "dce:identifier": "SDN:R24::MRV", + "pav:version": "1", + "skos:notation": "SDN:R24::MRV", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "MRV Systems" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::MRV", + "skos:prefLabel": { + "@language": "en", + "@value": "MRV Systems" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "MRV" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/UNKNOWN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NOTC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Argo float manufacturers. Argo netCDF variable PLATFORM_MAKER is populated by R24 altLabel.", + "dc:title": "Argo platform maker", + "skos:prefLabel": "Argo platform maker", + "owl:versionInfo": "7", + "dc:date": "2025-11-26 02:00:00.0", + "skos:altLabel": "PLATFORM_MAKER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PLATFORM_MAKER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R25.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R25.jsonld new file mode 100644 index 0000000..1ee94ff --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R25.jsonld @@ -0,0 +1,2123 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR/", + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR", + "skos:altLabel": "RADIOMETER_DOWN_IRR", + "dc:date": "2025-08-28 11:45:52.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance (hypersprectral radiometer)." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/", + "pav:authoredOn": "2023-11-24 09:35:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/1/" + }, + "dce:identifier": "SDN:R25::CTD_TEMP_CNDC", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_TEMP_CNDC", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Specific temperature sensor used with conductivity to calculate salinity on a CTD" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::CTD_TEMP_CNDC", + "skos:prefLabel": { + "@language": "en", + "@value": "Temperature sensor for conductivity on a CTD" + }, + "owl:versionInfo": "1", + "dc:date": "2023-11-24 09:35:13.0", + "skos:altLabel": "" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/1/" + }, + "dce:identifier": "SDN:R25::FLUOROMETER_CHLA", + "pav:version": "1", + "skos:notation": "SDN:R25::FLUOROMETER_CHLA", + "skos:altLabel": "FLUOROMETER_CHLA", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fluorometer measuring chlorophyll-a" + }, + "dc:identifier": "SDN:R25::FLUOROMETER_CHLA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Fluorometer measuring chlorophyll-a concentration" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/1/" + }, + "dce:identifier": "SDN:R25::EM", + "pav:version": "1", + "skos:notation": "SDN:R25::EM", + "skos:altLabel": "EM", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Electromagnetic sensor" + }, + "dc:identifier": "SDN:R25::EM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Electromagnetic sensor package measuring velocity and turbulence" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 470 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP470", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 470 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "BACKSCATTERINGMETER_BBP470", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_BBP470", + "pav:version": "1", + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP470", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/1/" + }, + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP700", + "pav:version": "1", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_BBP700", + "skos:altLabel": "BACKSCATTERINGMETER_BBP700", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 700 nanometers" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP700", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 700 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Spectrophotometer measuring bisulfide concentration" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::SPECTROPHOTOMETER_BISULFIDE", + "skos:prefLabel": { + "@language": "en", + "@value": "Spectrophotometer measuring bisulfide" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "SPECTROPHOTOMETER_BISULFIDE", + "skos:notation": "SDN:R25::SPECTROPHOTOMETER_BISULFIDE", + "pav:version": "1", + "dce:identifier": "SDN:R25::SPECTROPHOTOMETER_BISULFIDE" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/1/" + }, + "dce:identifier": "SDN:R25::FLOATCLOCK_MTIME", + "pav:version": "1", + "skos:notation": "SDN:R25::FLOATCLOCK_MTIME", + "skos:altLabel": "FLOATCLOCK_MTIME", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Clock on float measuring time" + }, + "dc:identifier": "SDN:R25::FLOATCLOCK_MTIME", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Fractional day of the individual measurement relative to JULD of the station" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/1/" + }, + "dce:identifier": "SDN:R25::SPECTROPHOTOMETER_NITRATE", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Spectrophotometer measuring nitrate concentration" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::SPECTROPHOTOMETER_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Spectrophotometer measuring nitrate" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "SPECTROPHOTOMETER_NITRATE", + "skos:notation": "SDN:R25::SPECTROPHOTOMETER_NITRATE" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/1/" + }, + "dce:identifier": "SDN:R25::IDO_DOXY", + "pav:version": "1", + "skos:notation": "SDN:R25::IDO_DOXY", + "skos:altLabel": "IDO_DOXY", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A type of electrochemical dissolved oxygen sensor called Integrated Dissolved Oxygen (IDO)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::IDO_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Integrated Dissolved Oxygen (IDO) sensor measuring dissolved oxygen" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 490 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR490", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 490 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_DOWN_IRR490", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR490", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/1/" + }, + "dce:identifier": "SDN:R25::CTD_CNDC", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_CNDC", + "skos:altLabel": "CTD_CNDC", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring conductivity" + }, + "dc:identifier": "SDN:R25::CTD_CNDC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring conductivity" + }, + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + } + ], + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/1/" + }, + "dce:identifier": "SDN:R25::ACOUSTIC_GEOLOCATION", + "pav:version": "1", + "skos:notation": "SDN:R25::ACOUSTIC_GEOLOCATION", + "skos:altLabel": "ACOUSTIC_GEOLOCATION", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Acoustic sensor measuring geolocation" + }, + "dc:identifier": "SDN:R25::ACOUSTIC_GEOLOCATION", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Acoustic sensor for geolocation" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/1/" + }, + "dce:identifier": "SDN:R25::ACOUSTIC", + "pav:version": "1", + "skos:notation": "SDN:R25::ACOUSTIC", + "skos:altLabel": "ACOUSTIC", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Acoustic sensor" + }, + "dc:identifier": "SDN:R25::ACOUSTIC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Acoustic sensor" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/1/" + }, + "dce:identifier": "SDN:R25::STS_TEMP", + "pav:version": "1", + "skos:notation": "SDN:R25::STS_TEMP", + "skos:altLabel": "STS_TEMP", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring temperature" + }, + "dc:identifier": "SDN:R25::STS_TEMP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring temperature" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/1/" + }, + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_TURBIDITY", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring turbidity" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_TURBIDITY", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring turbidity" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "BACKSCATTERINGMETER_TURBIDITY", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_TURBIDITY", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 412 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD412", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 412 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_UP_RAD412", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD412", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Transistor measuring pH" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::TRANSISTOR_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Transistor measuring pH" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "TRANSISTOR_PH", + "skos:notation": "SDN:R25::TRANSISTOR_PH", + "pav:version": "1", + "dce:identifier": "SDN:R25::TRANSISTOR_PH" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Fluorometer measuring Colored Dissolved Organic Matter (CDOM)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::FLUOROMETER_CDOM", + "skos:prefLabel": { + "@language": "en", + "@value": "Fluorometer measuring Colored Dissolved Organic Matter (CDOM)" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "FLUOROMETER_CDOM", + "skos:notation": "SDN:R25::FLUOROMETER_CDOM", + "pav:version": "1", + "dce:identifier": "SDN:R25::FLUOROMETER_CDOM" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 443 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR443", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 443 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_DOWN_IRR443", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR443", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_PAR", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring Photosynthetically Active Radiation (PAR)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring Photosynthetically Active Radiation (PAR)" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "RADIOMETER_PAR", + "skos:notation": "SDN:R25::RADIOMETER_PAR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/1/" + }, + "dce:identifier": "SDN:R25::CTD_TEMP", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_TEMP", + "skos:altLabel": "CTD_TEMP", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring temperature" + }, + "dc:identifier": "SDN:R25::CTD_TEMP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring temperature" + }, + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + } + ], + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 412 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR412", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 412 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_DOWN_IRR412", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR412", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 490 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD490", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 490 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_UP_RAD490", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD490", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/1/" + }, + "dce:identifier": "SDN:R25::STS_CNDC", + "pav:version": "1", + "skos:notation": "SDN:R25::STS_CNDC", + "skos:altLabel": "STS_CNDC", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring conductivity" + }, + "dc:identifier": "SDN:R25::STS_CNDC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring conductivity" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/1/" + }, + "dce:identifier": "SDN:R25::OPTODE_DOXY", + "pav:version": "1", + "skos:notation": "SDN:R25::OPTODE_DOXY", + "skos:altLabel": "OPTODE_DOXY", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Optode measuring dissolved oxygen" + }, + "dc:identifier": "SDN:R25::OPTODE_DOXY", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "An optical dissolved oxygen sensor, also known as optode" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 555 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR555", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 555 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_DOWN_IRR555", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR555", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/1/" + }, + "dce:identifier": "SDN:R25::CTD_PRES", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_PRES", + "skos:altLabel": "CTD_PRES", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring pressure" + }, + "dc:identifier": "SDN:R25::CTD_PRES", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring pressure" + }, + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + } + ], + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/1/" + }, + "dce:identifier": "SDN:R25::TRANSMISSOMETER_CP660", + "pav:version": "1", + "skos:notation": "SDN:R25::TRANSMISSOMETER_CP660", + "skos:altLabel": "TRANSMISSOMETER_CP660", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Transmissometer measuring attenuation at 660 nanometers" + }, + "dc:identifier": "SDN:R25::TRANSMISSOMETER_CP660", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmissometer measuring attenuation at 660 nm wavelength" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 532 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP532", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 532 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "BACKSCATTERINGMETER_BBP532", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_BBP532", + "pav:version": "1", + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP532" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 555 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD555", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 555 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_UP_RAD555", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD555", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 443 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD443", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 443 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_UP_RAD443", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD443", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 380 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR380", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 380 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_DOWN_IRR380", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR380", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR380", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing sensor types mounted on Argo floats. Argo netCDF variable SENSOR is populated by R25 altLabel.", + "dc:title": "Argo sensor types", + "skos:prefLabel": "Argo sensor types", + "owl:versionInfo": "4", + "dc:date": "2025-08-29 03:00:01.0", + "skos:altLabel": "SENSOR", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "SENSOR", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R26.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R26.jsonld new file mode 100644 index 0000000..0f5d539 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R26.jsonld @@ -0,0 +1,1511 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/1/" + }, + "dce:identifier": "SDN:R26::SATLANTIC", + "pav:version": "1", + "skos:notation": "SDN:R26::SATLANTIC", + "skos:altLabel": "SATLANTIC", + "dc:date": "2019-10-11 15:08:43.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "An ocean technology company and brand of Sea-Bird Scientific that develops optical sensors for aquatic research and water quality monitoring. The company was initially founded in 1990. Danaher acquired three ocean science instrumentation companies, Sea-Bird Electronics (2008), WET Labs (2010), and Satlantic (2011), which were then combined to form Sea-Bird Scientific." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::SATLANTIC", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic Inc." + }, + "owl:versionInfo": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/NKE/", + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/NKE/1/" + }, + "dce:identifier": "SDN:R26::NKE", + "pav:version": "1", + "skos:notation": "SDN:R26::NKE", + "skos:altLabel": "NKE", + "dc:date": "2025-08-28 11:45:52.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NKE Instrumentation" + }, + "dc:identifier": "SDN:R26::NKE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NKE Instrumentation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MARTEC/", + "pav:authoredOn": "2025-08-28 11:45:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MARTEC/1/" + }, + "dce:identifier": "SDN:R26::MARTEC", + "pav:version": "1", + "skos:notation": "SDN:R26::MARTEC", + "skos:altLabel": "MARTEC", + "dc:date": "2025-08-28 11:45:51.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Martec" + }, + "dc:identifier": "SDN:R26::MARTEC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "MARTEC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/1/" + }, + "dce:identifier": "SDN:R26::AANDERAA", + "pav:version": "1", + "skos:notation": "SDN:R26::AANDERAA", + "skos:altLabel": "AANDERAA", + "dc:date": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A Xylem brand, headquartered in Bergen (Norway) that designs, manufactures and sells sensors, instruments and systems for measuring and monitoring in Environmental Research, Marine Transportation, Oil and Gas, Aquaculture, Road and Traffic and Construction." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::AANDERAA", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/1/" + }, + "dce:identifier": "SDN:R26::PAINE", + "pav:version": "1", + "skos:notation": "SDN:R26::PAINE", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: moreinfo@paineelectronics.com; Organisation website: http://www3.emersonprocess.com/rosemount/paineelectronics/default.aspx" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::PAINE", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine Electronics" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "PAINE" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WRC/", + "pav:authoredOn": "2025-08-29 10:15:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WRC/1/" + }, + "dce:identifier": "SDN:R26::WRC", + "pav:version": "1", + "skos:notation": "SDN:R26::WRC", + "skos:altLabel": "WRC", + "dc:date": "2025-08-29 10:15:12.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Webb Research Corporation" + }, + "dc:identifier": "SDN:R26::WRC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Webb Research Corporation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in Rastede, Germany, specialised in the production and supply of optical sensors including radiometers, photometers and fluorometers for marine research and industrial applications." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::TRIOS", + "skos:prefLabel": { + "@language": "en", + "@value": "TriOS Mess- und Datentechnik GmbH" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/" + } + ], + "dc:date": "2021-02-11 14:21:39.0", + "skos:altLabel": "TRIOS", + "skos:notation": "SDN:R26::TRIOS", + "pav:version": "1", + "dce:identifier": "SDN:R26::TRIOS", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: Unavailable; Organisation website: https://www.kistler.com/en/" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::KISTLER", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "KISTLER", + "skos:notation": "SDN:R26::KISTLER", + "pav:version": "1", + "dce:identifier": "SDN:R26::KISTLER" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/1/" + }, + "dce:identifier": "SDN:R26::KELLER", + "pav:version": "1", + "skos:notation": "SDN:R26::KELLER", + "skos:altLabel": "KELLER", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "KELLER AG für Druckmesstechnik" + }, + "dc:identifier": "SDN:R26::KELLER", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A multinational technology company based in Winterthur, Switzerland, specialised in the manufacture of pressure sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/", + "pav:authoredOn": "2021-09-14 12:16:36.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A ChampionX company specialised in resonating quartz pressure transducers and temperature gauges, located in Salt Lake City, Utah (United States of America)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::QUARTZDYNE", + "skos:prefLabel": { + "@language": "en", + "@value": "Quartzdyne" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/" + } + ], + "dc:date": "2021-09-14 12:16:36.0", + "skos:altLabel": "QUARTZDYNE", + "skos:notation": "SDN:R26::QUARTZDYNE", + "pav:version": "1", + "dce:identifier": "SDN:R26::QUARTZDYNE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/1/" + }, + "dce:identifier": "SDN:R26::TSK", + "pav:version": "1", + "skos:notation": "SDN:R26::TSK", + "skos:altLabel": "TSK", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tsurumi-Seiki Co., Ltd." + }, + "dc:identifier": "SDN:R26::TSK", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A Japanese manufacturer based in Yokohama (head office), specialised in the production of oceanographic observation equipment and water quality monitoring instruments." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/1/" + }, + "dce:identifier": "SDN:R26::WETLABS", + "pav:version": "1", + "skos:notation": "SDN:R26::WETLABS", + "skos:altLabel": "WETLABS", + "dc:date": "2019-10-11 15:08:43.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A brand of Sea-Bird Scientific, the business manufactures oceanographic and environmental fluorometers, transmissometers, scattering sensors and spectrophotometers. The company was initially founded in 1992. Danaher acquired three ocean science instrumentation companies, Sea-Bird Electronics (2008), WET Labs (2010), and Satlantic (2011), which were then combined to form Sea-Bird Scientific." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::WETLABS", + "skos:prefLabel": { + "@language": "en", + "@value": "Wetlabs Inc." + }, + "owl:versionInfo": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A Japanese company based in Nishinomiya that manufactures and sells measuring instruments, water level gauges, and other diagnostic equipment. It was established in 1973 and is a subsidiary of Kawasaki Steel, now known as JFE Steel." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::JAC", + "skos:prefLabel": { + "@language": "en", + "@value": "JFE Advantech Co., Ltd" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "JAC", + "skos:notation": "SDN:R26::JAC", + "pav:version": "1", + "dce:identifier": "SDN:R26::JAC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/1/" + }, + "dce:identifier": "SDN:R26::SEASCAN", + "pav:version": "1", + "skos:notation": "SDN:R26::SEASCAN", + "skos:altLabel": "SEASCAN", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Seascan, Inc." + }, + "dc:identifier": "SDN:R26::SEASCAN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A small manufacturing company located in Falmouth, Massachusetts (United States of America), specialising in oceanographic research equipment." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: usa.sales@druck.com; Organisation website: http://www.druckinc.com" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::DRUCK", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck Inc." + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "DRUCK", + "skos:notation": "SDN:R26::DRUCK", + "pav:version": "1", + "dce:identifier": "SDN:R26::DRUCK" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TWR/", + "pav:authoredOn": "2025-08-29 10:15:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TWR/1/" + }, + "dce:identifier": "SDN:R26::TWR", + "pav:version": "1", + "skos:notation": "SDN:R26::TWR", + "skos:altLabel": "TWR", + "dc:date": "2025-08-29 10:15:12.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research" + }, + "dc:identifier": "SDN:R26::TWR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research (formerly Webb Research Corporation)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/1/" + }, + "dce:identifier": "SDN:R26::FSI", + "pav:version": "1", + "skos:notation": "SDN:R26::FSI", + "skos:altLabel": "FSI", + "dc:date": "2019-10-11 15:08:43.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Falmouth Scientific Inc." + }, + "dc:identifier": "SDN:R26::FSI", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: sales@falmouth.com; Organisation website: http://www.falmouth.com/index.html" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/1/" + }, + "dce:identifier": "SDN:R26::SEAPOINT", + "pav:version": "1", + "skos:notation": "SDN:R26::SEAPOINT", + "skos:altLabel": "SEAPOINT", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Seapoint Sensors, Inc." + }, + "dc:identifier": "SDN:R26::SEAPOINT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A worldwide supplier of underwater optical sensors located in Exeter, New Hampshire (United States of America)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/OPTIMARE/", + "pav:authoredOn": "2025-08-28 11:45:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/OPTIMARE/1/" + }, + "dce:identifier": "SDN:R26::OPTIMARE", + "pav:version": "1", + "skos:notation": "SDN:R26::OPTIMARE", + "skos:altLabel": "OPTIMARE", + "dc:date": "2025-08-28 11:45:51.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Optimare" + }, + "dc:identifier": "SDN:R26::OPTIMARE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optimare." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/Unknown/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/Unknown/1/" + }, + "dce:identifier": "SDN:R26::Unknown", + "pav:version": "1", + "skos:notation": "SDN:R26::Unknown", + "skos:altLabel": "Unknown", + "dc:date": "2021-02-11 14:21:39.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown" + }, + "dc:identifier": "SDN:R26::Unknown", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown sensor maker; the use of this code should be exceptional, as the sensor maker should be known." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/1/" + }, + "dce:identifier": "SDN:R26::RBR", + "pav:version": "1", + "skos:notation": "SDN:R26::RBR", + "skos:altLabel": "RBR", + "dc:date": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A Canadian designer and manufacturer of oceanographic instruments, including sensors, loggers and compact systems." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::RBR", + "skos:prefLabel": { + "@language": "en", + "@value": "RBR Ltd" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: webadmin@apl.washington.edu; Organisation website: http://www.apl.washington.edu/" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::APL_UW", + "skos:prefLabel": { + "@language": "en", + "@value": "University of Washington, Applied Physics Laboratory" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/" + } + ], + "dc:date": "2021-02-11 14:21:39.0", + "skos:altLabel": "APL_UW", + "skos:notation": "SDN:R26::APL_UW", + "pav:version": "1", + "dce:identifier": "SDN:R26::APL_UW", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A non-profit oceanographic research centre located in Moss Landing, California (United States of America), with a technology unit dedicated to the development of oceanographic instruments and platforms." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::MBARI", + "skos:prefLabel": { + "@language": "en", + "@value": "Monterey Bay Aquarium Research Institute" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/" + } + ], + "dc:date": "2021-02-11 14:21:39.0", + "skos:altLabel": "MBARI", + "skos:notation": "SDN:R26::MBARI", + "pav:version": "1", + "dce:identifier": "SDN:R26::MBARI" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/", + "pav:authoredOn": "2021-09-14 12:16:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/1/" + }, + "dce:identifier": "SDN:R26::MENSOR", + "pav:version": "1", + "skos:notation": "SDN:R26::MENSOR", + "skos:altLabel": "MENSOR", + "dc:date": "2021-09-14 12:16:36.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mensor" + }, + "dc:identifier": "SDN:R26::MENSOR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in San Marcos, Texas (United States of America), specialised in precision pressure products." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in Simi Valley, California (United States of America), specialised in the production and supply of semiconductor strain gages, pressure transducers, temperature sensors and measuring systems (also operating as Piezo-metrics)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::MICRON", + "skos:prefLabel": { + "@language": "en", + "@value": "Micron Instruments" + }, + "owl:versionInfo": "2", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/" + }, + "dc:date": "2025-06-05 09:26:36.0", + "skos:altLabel": "MICRON", + "skos:notation": "SDN:R26::MICRON", + "pav:version": "2", + "dce:identifier": "SDN:R26::MICRON", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/2/" + }, + "pav:authoredOn": "2025-06-05 09:26:36.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: Unavailable; Organisation website: http://www.ametekpi.com" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::AMETEK", + "skos:prefLabel": { + "@language": "en", + "@value": "Ametek Process Instruments" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "AMETEK", + "skos:notation": "SDN:R26::AMETEK", + "pav:version": "1", + "dce:identifier": "SDN:R26::AMETEK", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/1/" + }, + "pav:authoredOn": "2021-06-02 23:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/2/" + }, + "dce:identifier": "SDN:R26::SBE", + "pav:version": "2", + "skos:notation": "SDN:R26::SBE", + "skos:altLabel": "SBE", + "dc:date": "2021-06-02 23:04:11.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A large, global company based in the United States of America that develops and manufactures products for the measurement of salinity, temperature, pressure, dissolved oxygen, fluorescence, nutrients and related oceanographic parameters in marine waters. It is formed from three ocean science companies, Sea-Bird Electronics, WET Labs and Satlantic that were combined in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::SBE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific" + }, + "owl:versionInfo": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/1/" + }, + "dce:identifier": "SDN:R26::TURNER_DESIGN", + "pav:version": "1", + "skos:notation": "SDN:R26::TURNER_DESIGN", + "skos:altLabel": "TURNER_DESIGN", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Turner Designs" + }, + "dc:identifier": "SDN:R26::TURNER_DESIGN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in San Jose, California (United States of America), specialised in the supply of fluorometers for environmental and industrial uses." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MARTEC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WRC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/OPTIMARE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/Unknown/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing developers and manufacturers of sensors mounted on Argo floats. Argo netCDF variable SENSOR_MAKER is populated by R26 altLabel.", + "dc:title": "Argo sensor manufacturers", + "skos:prefLabel": "Argo sensor manufacturers", + "owl:versionInfo": "7", + "dc:date": "2025-08-30 03:00:01.0", + "skos:altLabel": "SENSOR_MAKER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "SENSOR_MAKER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R27.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R27.jsonld new file mode 100644 index 0000000..ee675fb --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R27.jsonld @@ -0,0 +1,6958 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/UNKNOWN/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/UNKNOWN/1/" + }, + "dce:identifier": "SDN:R27::UNKNOWN", + "pav:version": "1", + "skos:notation": "SDN:R27::UNKNOWN", + "skos:altLabel": "UNKNOWN", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown sensor model" + }, + "dc:identifier": "SDN:R27::UNKNOWN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sensor model is unknown." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/1/" + }, + "dce:identifier": "SDN:R27::RAFOS", + "pav:version": "1", + "skos:notation": "SDN:R27::RAFOS", + "skos:altLabel": "RAFOS", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ranging And Fixing Of Sound (RAFOS) receiver" + }, + "dc:identifier": "SDN:R27::RAFOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Receiver for geopositioning under ice, working in conjunction with fixed sound sources arrays located within range." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "An optical dissolved oxygen sensor, manufactured by Sea-Bird Scientific and designed to be integrated into a pumped CTD system." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE83_OPTODE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE83 oxygen optode" + }, + "owl:versionInfo": "2", + "dc:date": "2025-11-18 12:09:41.0", + "skos:altLabel": "SBE83_OPTODE", + "skos:notation": "SDN:R27::SBE83_OPTODE", + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE83_OPTODE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/2/" + }, + "pav:authoredOn": "2025-11-18 12:09:41.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/", + "pav:authoredOn": "2025-10-08 10:58:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/1/" + }, + "dce:identifier": "SDN:R27::RBR_CTD", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors, manufactured by RBR for moored applications. This cell was not optimized for use on profiling floats, and this was used in only one test deployment. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 12 Hz. The depth rating for a standard profile is 2000 dbar, with energy consumption of approximately 700 J." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_CTD", + "skos:prefLabel": { + "@language": "en", + "@value": "RBR CTD" + }, + "owl:versionInfo": "1", + "dc:date": "2025-10-08 10:58:28.0", + "skos:altLabel": "RBR_CTD", + "skos:notation": "SDN:R27::RBR_CTD", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/", + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/1/" + }, + "dce:identifier": "SDN:R27::OCR504_R10W", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Replaces deprecated term 'http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W'. A cosine-response, multispectral radiometer configured to measure upwelling radiance in water. Number of channels: 4; field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz - 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::OCR504_R10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-504 multispectral radiometer (upwelling radiance)" + }, + "owl:versionInfo": "1", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "OCR504_R10W", + "skos:notation": "SDN:R27::OCR504_R10W", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/", + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/1/" + }, + "dce:identifier": "SDN:R27::OCR504_ICSW", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Replaces deprecated term 'http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW'. A cosine-response, multispectral radiometer configured to measure downwelling irradiance in water. Number of channels: 4; bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz - 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::OCR504_ICSW", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-504 multispectral radiometer (downwelling irradiance)" + }, + "owl:versionInfo": "1", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "OCR504_ICSW", + "skos:notation": "SDN:R27::OCR504_ICSW" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/", + "pav:authoredOn": "2025-08-20 09:29:53.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A thickness shear mode quartz resonator pressure sensor manufactured by Quartzdyne. Pressure range: 0 dbar - 6900 dbar; field accuracy: 0.02 % Full Scale (FS) between -40 degC and 85 degC." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::DSB301-10-C85", + "skos:prefLabel": { + "@language": "en", + "@value": "Quartzdyne DSB301-10-C85 pressure sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2025-08-20 09:29:53.0", + "skos:altLabel": "DSB301-10-C85", + "skos:notation": "SDN:R27::DSB301-10-C85", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::DSB301-10-C85", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Term deprecated, replaced by 'https://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/'. A thickness shear mode quartz resonator pressure sensor manufactured by Quartzdyne. Pressure range: 0 dbar - 6900 dbar; field accuracy: 0.02 % Full Scale (FS) between -40 degC and 85 degC." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::QUARTZDYNE_DSB301-10-C85", + "skos:prefLabel": { + "@language": "en", + "@value": "Quartzdyne DSB301-10-C85 pressure sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-09-02 12:51:44.0", + "skos:altLabel": "QUARTZDYNE_DSB301-10-C85", + "skos:notation": "SDN:R27::QUARTZDYNE_DSB301-10-C85", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R27::QUARTZDYNE_DSB301-10-C85", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/4/" + }, + "pav:authoredOn": "2025-09-02 12:51:44.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time. A deuterium lamp provides a light source of 1 cm path length in the 200 nm - 400 nm wavelength range. Measurement accuracy: +/- 2 umol/l; detection range: 0.5 umol/l to 2000 umol/l. The instrument is depth-rated to 1000 m; it is based on the MBARI-ISUS-X v.2, and was manufactured at Satlantic." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ISUS_V3", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic In Situ Ultraviolet Spectrophotometer (ISUS) V3 nitrate sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ISUS_V3", + "skos:notation": "SDN:R27::ISUS_V3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::ISUS_V3", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/1/" + }, + "dce:identifier": "SDN:R27::CTD_F01", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors manufactured by Tsurumi-Seiki, model F01." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::CTD_F01", + "skos:prefLabel": { + "@language": "en", + "@value": "Tsurumi-Seiki TSK CTD F01" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "CTD_F01", + "skos:notation": "SDN:R27::CTD_F01", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/" + }, + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2900 pounds per square inch absolute manufactured by Paine." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE_2900PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 2900 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE_2900PSIA", + "skos:notation": "SDN:R27::PAINE_2900PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE_2900PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Paine with unknown pressure rating." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with unknown pressure rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE", + "skos:notation": "SDN:R27::PAINE", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 1500 pounds per square inch absolute manufactured by Paine." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE_1500PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 1500 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE_1500PSIA", + "skos:notation": "SDN:R27::PAINE_1500PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE_1500PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 1600 pounds per square inch absolute manufactured by Paine." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE_1600PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 1600 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE_1600PSIA", + "skos:notation": "SDN:R27::PAINE_1600PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE_1600PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 3000 pounds per square inch absolute manufactured by Paine." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE_3000PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 3000 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE_3000PSIA", + "skos:notation": "SDN:R27::PAINE_3000PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE_3000PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2000 pounds per square inch absolute manufactured by Paine." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE_2000PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 2000 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE_2000PSIA", + "skos:notation": "SDN:R27::PAINE_2000PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE_2000PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m, 6000 m or 12000 m; oxygen concentration accuracy of < 2 uM or 1.5 %, and resolution of < 0.1 uM; air saturation accuracy of < 1.5 %, and resolution of 0.05 %; response time (63 %): < 25 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4330", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4330 oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_4330", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4330", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4330", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; response time (63 %): < 8 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4831F", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4831F (fast-response) oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_4831F", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4831F", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4831F", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 2000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; settling time (63 %): < 25 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_3830", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 3830 oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_3830", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_3830", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_3830", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; response time (63 %): < 25 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4831", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4831 oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_4831", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4831", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4831", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; settling time (63 %): < 25 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_3835", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 3835 oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_3835", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_3835", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_3835", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown oxygen optode model manufactured by Aanderaa." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa unknown oxygen optode model" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE", + "skos:notation": "SDN:R27::AANDERAA_OPTODE", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m, 6000 m or 12000 m; oxygen concentration accuracy of < 2 uM or 1.5 %, and resolution of < 0.1 uM; air saturation accuracy of < 1.5 %, and resolution of 0.05 %; response time (63 %): < 8 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4330F", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4330F (fast-response) oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_4330F", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4330F", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4330F", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/2/" + } + ], + "pav:authoredOn": "2026-03-09 09:11:24.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated as it is not used on Argo Floats. A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 2000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; settling time (63 %): < 25 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_3930", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 3930 oxygen optode" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "AANDERAA_OPTODE_3930", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_3930", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_3930", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A spectral sensor designed to measure nitrogen and carbon compounds, with titanium housing and depth-rating of 6000 dbar (Deep-Sea version). A xenon flash lamp provides the light source, and a 256-channel spectrometer covers a wavelength range of 200 nm - 360 nm. The instrument is manufactured by TriOS." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::OPUS_DS", + "skos:prefLabel": { + "@language": "en", + "@value": "TriOS OPUS spectral sensor - Deep Sea version" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "OPUS_DS", + "skos:notation": "SDN:R27::OPUS_DS", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::OPUS_DS" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A spectral imaging radiometer with cosine detector which measures radiance, irradiance or scalar irradiance in the Ultraviolet (UV), Vis (Visible) and Ultraviolet-visible (UV-Vis) ranges, manufactured by TriOS. Number of channels: 256." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RAMSES_ACC", + "skos:prefLabel": { + "@language": "en", + "@value": "TriOS RAMSES ACC spectral imaging radiometer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-07-01 16:48:21.0", + "skos:altLabel": "RAMSES_ACC", + "skos:notation": "SDN:R27::RAMSES_ACC", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::RAMSES_ACC" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 10153 pounds per square inch absolute manufactured by Kistler." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::KISTLER_10153PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler pressure sensor with 10153 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "KISTLER_10153PSIA", + "skos:notation": "SDN:R27::KISTLER_10153PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::KISTLER_10153PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2900 pounds per square inch absolute manufactured by Kistler." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::KISTLER_2900PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler pressure sensor with 2900 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "KISTLER_2900PSIA", + "skos:notation": "SDN:R27::KISTLER_2900PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::KISTLER_2900PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Kistler with unknown pressure rating." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::KISTLER", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler pressure sensor with unknown pressure rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "KISTLER", + "skos:notation": "SDN:R27::KISTLER", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::KISTLER", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A sealed gauge pressure transducer part of the Series 8 pressure sensors range manufactured by Keller." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::KELLER_PA8", + "skos:prefLabel": { + "@language": "en", + "@value": "Keller PA-8 pressure transducer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "KELLER_PA8", + "skos:notation": "SDN:R27::KELLER_PA8", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::KELLER_PA8", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "An oxygen optode with integrated temperature sensor, manufactured by JFE Advantech Co. and designed to be mounted on Argo floats. This model is part of the JFE Advantech Co., Ltd. RINKO series of optical dissolved oxygen sensors. The instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 2000 m; dissolved oxygen concentration initial accuracy of 2 %, and resolution of 0.01 umol/l; response time (63 %): < 1 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ARO_FT", + "skos:prefLabel": { + "@language": "en", + "@value": "JFE Advantech Co. (JAC) ARO-FT oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "ARO_FT", + "skos:notation": "SDN:R27::ARO_FT", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::ARO_FT", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "An oxygen optode with integrated temperature sensor, manufactured by JFE Advantech Co. and designed to be mounted on Argo floats. This model is part of the JFE Advantech Co., Ltd. RINKO series of optical dissolved oxygen sensors. The instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 6700 m; oxygen concentration initial accuracy of 2 % of measured value, and resolution of 0.01 umol/l; response time (63 %): < 1 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AROD_FT", + "skos:prefLabel": { + "@language": "en", + "@value": "JFE Advantech Co. (JAC) AROD-FT oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AROD_FT", + "skos:notation": "SDN:R27::AROD_FT", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AROD_FT", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/1/" + }, + "pav:authoredOn": "2023-10-05 14:42:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/2/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength chlorophyll fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and chlorophyll-a fluorescence at 435 nm (excitation) / 695 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, manufactured by Sea-Bird Scientific. The sensor is fitted on an APEX float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBFL_AP2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO_FLBBFL_AP2" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:42:48.0", + "skos:altLabel": "ECO_FLBBFL_AP2", + "skos:notation": "SDN:R27::ECO_FLBBFL_AP2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::ECO_FLBBFL_AP2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/1/" + } + ], + "pav:authoredOn": "2021-08-19 11:24:56.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A temperature and pressure sensor package developed by Seascan, composed of a high-stability, glass-encapsulated thermistor manufactured by YSI (or optionally an ultra-stable thermistor manufactured by Thermometrics), and a mono-crystal silicon strain gage sensor manufactured by Druck. YSI thermistor accuracy: 0.01 degC; YSI thermistor resolution: 0.001 degC; pressure transducer accuracy: 0.1 % of full scale. Instrument's depth rating: either 2000 dbar or 4000 dbar." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SEASCAN_SSTD", + "skos:prefLabel": { + "@language": "en", + "@value": "Seascan Temperature and Depth (SSTD) sensor package" + }, + "owl:versionInfo": "3", + "dc:date": "2021-08-19 11:24:56.0", + "skos:altLabel": "SEASCAN_SSTD", + "skos:notation": "SDN:R27::SEASCAN_SSTD", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::SEASCAN_SSTD", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/2/" + } + ], + "pav:authoredOn": "2025-08-18 11:39:10.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 10153 pounds per square inch absolute manufactured by Druck." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::DRUCK_10153PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck pressure sensor with 10153 PSIA rating" + }, + "owl:versionInfo": "3", + "dc:date": "2025-08-18 11:39:10.0", + "skos:altLabel": "DRUCK_10153PSIA", + "skos:notation": "SDN:R27::DRUCK_10153PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::DRUCK_10153PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Druck with unknown pressure rating." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::DRUCK", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck pressure sensor with unknown pressure rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "DRUCK", + "skos:notation": "SDN:R27::DRUCK", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::DRUCK", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2900 pounds per square inch absolute manufactured by Druck." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::DRUCK_2900PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck pressure sensor with 2900 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "DRUCK_2900PSIA", + "skos:notation": "SDN:R27::DRUCK_2900PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::DRUCK_2900PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/1/" + }, + "dce:identifier": "SDN:R27::FSI", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Unknown CTD sensor model manufactured by Falmouth Scientific, Inc (FSI)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::FSI", + "skos:prefLabel": { + "@language": "en", + "@value": "Falmouth Scientific, Inc (FSI) unknown CTD model" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "FSI", + "skos:notation": "SDN:R27::FSI", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/" + }, + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A single-channel optical meter measuring scattering at 880 nm to determine turbidity, depth-rated to 6000 m. The sensor has four programmable sensitivity options: 2 mV/FTU, 10 mV/FTU, 40 mV/FTU and 200 mV/FTU, each corresponding to a gain of 1x, 5x, 20x and 100x respectively, and range of non-linear, 500 FTU, 125 FTU and 25 FTU respectively. The instrument was developed and manufactured by Seapoint Sensors, inc." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SEAPOINT_TURBIDITY_METER", + "skos:prefLabel": { + "@language": "en", + "@value": "Seapoint Turbidity Meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "SEAPOINT_TURBIDITY_METER", + "skos:notation": "SDN:R27::SEAPOINT_TURBIDITY_METER", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SEAPOINT_TURBIDITY_METER", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/1/" + }, + "dce:identifier": "SDN:R27::RBR", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Unknown CTD sensor model manufactured by RBR." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR", + "skos:prefLabel": { + "@language": "en", + "@value": "RBR unknown CTD model" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "RBR", + "skos:notation": "SDN:R27::RBR", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO3_DEEP6K", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is built with a compact titanium housing rated to 6000 dbar, and is specifically designed to be integrated with glass sphere profiling floats part of the Deep Argo program. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 8 Hz." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_ARGO3_DEEP6K", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo3 CTD deep6k" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "RBR_ARGO3_DEEP6K", + "skos:notation": "SDN:R27::RBR_ARGO3_DEEP6K", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by RBR. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. It is available in three variants based on response times: slow (30 s time constant), standard (8 s time constant) and fast (1 s time constant), the latter being optimal for vertical profiling applications. Depth rating: 6000 m; oxygen concentration accuracy of +/- 8 uM or +/- 5 %, and resolution of < 1 uM; air saturation resolution of 0.4 %." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_CODA_T_ODO", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRcoda T.ODO Temperature and Dissolved Oxygen sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "RBR_CODA_T_ODO", + "skos:notation": "SDN:R27::RBR_CODA_T_ODO", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::RBR_CODA_T_ODO", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is designed specifically for profiling floats, including those hosting multiple biogeochemical (BGC) sensors. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 12 Hz. The depth rating for a standard profile is 2000 dbar, with energy consumption of approximately 700 J." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_ARGO", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo CTD" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "RBR_ARGO", + "skos:notation": "SDN:R27::RBR_ARGO", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "Unspecified pressure sensor model used on RBR Argo CTD systems (L2 generation)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_PRES", + "skos:prefLabel": { + "@language": "en", + "@value": "Pressure sensor for RBR Argo CTD systems" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "RBR_PRES", + "skos:notation": "SDN:R27::RBR_PRES", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::RBR_PRES", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "Unspecified pressure sensor model used on RBR Argo3 CTD systems (L3 generation)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_PRES_A", + "skos:prefLabel": { + "@language": "en", + "@value": "Pressure sensor for RBR Argo3 CTD systems" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "RBR_PRES_A", + "skos:notation": "SDN:R27::RBR_PRES_A", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::RBR_PRES_A", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO3_DEEP4K", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is built with a compact titanium housing rated to 4000 dbar, and is specifically designed to be integrated with glass sphere profiling floats part of the Deep Argo program. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 8 Hz." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_ARGO3_DEEP4K", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo3 CTD deep4k" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "RBR_ARGO3_DEEP4K", + "skos:notation": "SDN:R27::RBR_ARGO3_DEEP4K", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO3", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is designed specifically for profiling floats, including those hosting multiple biogeochemical (BGC) sensors. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 8 Hz. The depth rating for a standard profile is 2000 dbar, with energy consumption of approximately 400 J." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_ARGO3", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo3 CTD" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "RBR_ARGO3", + "skos:notation": "SDN:R27::RBR_ARGO3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/" + }, + "skos:definition": { + "@language": "en", + "@value": "An electromagnetic subsystem designed to measure water velocity, mounted on an APEX electromagnetic float type (EM-APEX). The instrument was developed collaboratively by Webb Research Corp (WRC) and the Applied Physics Laboratory at the University of Washington (APL-UW)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::EM", + "skos:prefLabel": { + "@language": "en", + "@value": "Electromagnetic sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "EM", + "skos:notation": "SDN:R27::EM", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::EM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/" + }, + "skos:definition": { + "@language": "en", + "@value": "A hydrophone designed to measure surface rain rate and wind speed. The instrument was developed by the Applied Physics Laboratory at the University of Washington (APL-UW)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAL_UW", + "skos:prefLabel": { + "@language": "en", + "@value": "Passive Aquatic Listener (PAL) acoustic rain gauge" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "PAL_UW", + "skos:notation": "SDN:R27::PAL_UW", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAL_UW", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/2/" + } + ], + "pav:authoredOn": "2023-10-23 16:35:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH sensor design : similar root components (DURA), same sensor output and processing chain" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::GDF", + "skos:prefLabel": { + "@language": "en", + "@value": "Gasket DuraFET" + }, + "owl:versionInfo": "3", + "dc:date": "2023-10-23 16:35:59.0", + "skos:altLabel": "GDF", + "skos:notation": "SDN:R27::GDF", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::GDF", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time. A deuterium lamp provides a light source of 1 cm path length in the 200 nm - 400 nm wavelength range. Measurement resolution: +/- 0.05 umol/l; accuracy: +/- 2 umol/l or 2%; range: up to 200 umol/l. The instrument is depth-rated to 1000 m. The MBARI-ISUS-X v.2 was developed by Dr. Kenneth Johnson and Luke Coletti at the Monterey Bay Aquarium Research Institute (MBARI) in 2002, and was made commercially available in collaboration with Satlantic." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ISUS", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic MBARI In Situ Ultraviolet Spectrophotometer (ISUS) X v.2 nitrate sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ISUS", + "skos:notation": "SDN:R27::ISUS", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::ISUS", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/" + }, + "skos:definition": { + "@language": "en", + "@value": "An ion sensitive field effect transistor (ISFET) pH sensor with an AglCl reference electrode and a titanium counter electrode, housed in a pressure tolerant package. The sensor is manufactured at the Monterey Bay Aquarium Research Institute (MBARI), and was developed collaboratively by Dr. Kenneth Johnson at MBARI, Dr. Todd Martz at Scripps Institution of Oceanography (SIO), and Honeywell International. Depth rating: 2000m; pH accuracy: 0.01; pH precision: 0.005 over multiyear periods." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::DURA", + "skos:prefLabel": { + "@language": "en", + "@value": "MBARI Deep-Sea DuraFET pH sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "DURA", + "skos:notation": "SDN:R27::DURA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::DURA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/2/" + } + ], + "pav:authoredOn": "2021-08-18 15:17:20.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A pressure sensor special-built by Mensor for selected Deep SOLO floats." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MENSOR", + "skos:prefLabel": { + "@language": "en", + "@value": "Mensor special-built pressure sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2021-08-18 15:17:20.0", + "skos:altLabel": "MENSOR", + "skos:notation": "SDN:R27::MENSOR", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::MENSOR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A flush mountable pressure transducer MP40 model, configured to performance specification 'C' and header option 'G' (gage), depth-rated to 2000 psi. The instrument was manufactured by Micron Instruments (also operating as Piezo-Metrics)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MP40_C_2000_G", + "skos:prefLabel": { + "@language": "en", + "@value": "Micron Instruments MP40C-2000G pressure transducer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "MP40_C_2000_G", + "skos:notation": "SDN:R27::MP40_C_2000_G", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::MP40_C_2000_G", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 3000 pounds per square inch absolute manufactured by Ametek." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AMETEK_3000PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Ametek pressure sensor with 3000 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "AMETEK_3000PSIA", + "skos:notation": "SDN:R27::AMETEK_3000PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AMETEK_3000PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Ametek with unknown pressure rating." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AMETEK", + "skos:prefLabel": { + "@language": "en", + "@value": "Ametek pressure sensor with unknown pressure rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "AMETEK", + "skos:notation": "SDN:R27::AMETEK", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AMETEK", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A through-flow, Clark polarographic membrane dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into a pumped CTD system. Depth rating: 600 m (plastic housing) or 7000 m (titanium housing); oxygen concentration initial accuracy: 2 % saturation; response time (63 %): 2 s - 5 s for 0.5 mil membrane (profiling applications), or 8 s - 20 s for 1.0 mil membrane (moored applications); output signal: frequency." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE43F_IDO", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 43F (frequency output) Integrated Dissolved Oxygen (IDO) sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "SBE43F_IDO", + "skos:notation": "SDN:R27::SBE43F_IDO", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SBE43F_IDO", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/1/" + }, + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/2/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.12", + "pav:version": "2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.9." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.12", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.12" + }, + "owl:versionInfo": "2", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.12", + "skos:notation": "SDN:R27::SBE61_V5.0.12", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/1/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/2/" + }, + "dce:identifier": "SDN:R27::SBE61", + "pav:version": "2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE61", + "skos:altLabel": "SBE61", + "dc:date": "2019-10-16 06:35:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD" + }, + "dc:identifier": "SDN:R27::SBE61", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V5.0.1", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.0.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.0.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.0.1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V5.0.1", + "skos:notation": "SDN:R27::SBE41CP_V5.0.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/1/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/2/" + }, + "dce:identifier": "SDN:R27::SBE41CP", + "pav:version": "2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE41CP", + "skos:altLabel": "SBE41CP", + "dc:date": "2019-10-16 06:35:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD" + }, + "dc:identifier": "SDN:R27::SBE41CP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface." + }, + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + } + ], + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V3.0a", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 3.0a." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V3.0a", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V3.0a" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V3.0a", + "skos:notation": "SDN:R27::SBE41CP_V3.0a", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/1/" + }, + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/2/" + }, + "dce:identifier": "SDN:R27::SBE41N_V5.3.4", + "pav:version": "2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow, manufactured by Sea-Bir Scientific. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface. This SBE41N model has firmware version 5.3.4." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41N_V5.3.4", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD V5.3.4" + }, + "owl:versionInfo": "2", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41N_V5.3.4", + "skos:notation": "SDN:R27::SBE41N_V5.3.4", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/1/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/2/" + }, + "dce:identifier": "SDN:R27::SBE41N", + "pav:version": "2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE41N", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41N", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41N" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.2", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.2" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.2", + "skos:notation": "SDN:R27::SBE41CP_V1.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBBCD_AP2", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and Fluorescent Dissolved Organic Matter (FDOM) at 370 nm (excitation) / 460 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBCD_AP2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLBBCD-AP2 sensor package with two fluorometers and one scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBBCD_AP2", + "skos:notation": "SDN:R27::ECO_FLBBCD_AP2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V4.4.0", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 4.4.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V4.4.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V4.4.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V4.4.0", + "skos:notation": "SDN:R27::SBE41CP_V4.4.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/1/" + }, + "dce:identifier": "SDN:R27::ECO_BB3", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three optical-sensor instrument fitted with three scattering meters measuring at a user-defined combination of 470 nm, 532 nm, 650 nm and 700 nm wavelengths, depth-rated to 600 m. The scattering sensor has an in-water centroid angle of 124 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_BB3", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO Triplet BB3 sensor package with three scattering meters" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_BB3", + "skos:notation": "SDN:R27::ECO_BB3", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.1", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.1", + "skos:notation": "SDN:R27::SBE61_V5.0.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V7.2.3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 7.2.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V7.2.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V7.2.3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41CP_V7.2.3", + "skos:notation": "SDN:R27::SBE41CP_V7.2.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/2/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure downwelling irradiance in water. Number of channels: 7; bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR507_ICSW", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-507 multispectral radiometer (downwelling irradiance)" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "SATLANTIC_OCR507_ICSW", + "skos:notation": "SDN:R27::SATLANTIC_OCR507_ICSW", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::SATLANTIC_OCR507_ICSW" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.8", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.8." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.8", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.8" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.8", + "skos:notation": "SDN:R27::SBE41CP_V1.8", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/1/" + }, + "dce:identifier": "SDN:R27::SBE", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Unknown CTD sensor model manufactured by Sea-Bird Scientific (SBE)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific (SBE) unknown CTD model" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "SBE", + "skos:notation": "SDN:R27::SBE", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.1", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.1", + "skos:notation": "SDN:R27::SBE41CP_V1.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.4", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.4." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.4", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.4" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.4", + "skos:notation": "SDN:R27::SBE41CP_V1.4", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/1/" + }, + "pav:authoredOn": "2023-10-05 14:42:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/2/" + }, + "dce:identifier": "SDN:R27::ECO_FLBBFL", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength chlorophyll fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and chlorophyll-a fluorescence at 435 nm (excitation) / 695 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, manufactured by Sea-Bird Scientific." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBFL", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO_FLBBFL" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:42:48.0", + "skos:altLabel": "ECO_FLBBFL", + "skos:notation": "SDN:R27::ECO_FLBBFL", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.0", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.0", + "skos:notation": "SDN:R27::SBE61_V5.0.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V4.5.2", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 4.5.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V4.5.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V4.5.2" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V4.5.2", + "skos:notation": "SDN:R27::SBE61_V4.5.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.2", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.2" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.2", + "skos:notation": "SDN:R27::SBE61_V5.0.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/1/" + }, + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/2/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.9", + "pav:version": "2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.9." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.9", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.9" + }, + "owl:versionInfo": "2", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.9", + "skos:notation": "SDN:R27::SBE61_V5.0.9", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V4.5.3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 4.5.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V4.5.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V4.5.3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V4.5.3", + "skos:notation": "SDN:R27::SBE61_V4.5.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/1/" + }, + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/2/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.10", + "pav:version": "2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.9." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.10", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.10" + }, + "owl:versionInfo": "2", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.10", + "skos:notation": "SDN:R27::SBE61_V5.0.10", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.3", + "skos:notation": "SDN:R27::SBE61_V5.0.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/3/" + }, + "dce:identifier": "SDN:R27::SBE41_V2.5", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 model has firmware version 2.5." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_V2.5", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD V2.5" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:28.0", + "skos:altLabel": "SBE41_V2.5", + "skos:notation": "SDN:R27::SBE41_V2.5", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/1/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/2/" + }, + "dce:identifier": "SDN:R27::SBE41", + "pav:version": "2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE41", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V5.3.2", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.3.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.3.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.3.2" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41CP_V5.3.2", + "skos:notation": "SDN:R27::SBE41CP_V5.3.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBBCD", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and Fluorescent Dissolved Organic Matter (FDOM) at 370 nm (excitation) / 460 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBCD", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLBBCD sensor package with two fluorometers and one scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBBCD", + "skos:notation": "SDN:R27::ECO_FLBBCD", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_IDO_V2.0b", + "pav:version": "3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP IDO model has firmware version 2.0b." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_IDO_V2.0b", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD with an Integrated Dissolved Oxygen (IDO) sensor V2.0b" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41CP_IDO_V2.0b", + "skos:notation": "SDN:R27::SBE41CP_IDO_V2.0b" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/", + "pav:authoredOn": "2025-03-31 13:56:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/1/" + }, + "dce:identifier": "SDN:R27::SBE41CP_IDO", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_IDO", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD with an Integrated Dissolved Oxygen (IDO) sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2025-03-31 13:56:07.0", + "skos:altLabel": "SBE41CP_IDO", + "skos:notation": "SDN:R27::SBE41CP_IDO" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41_IDO_V2.0", + "pav:version": "3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 IDO model has firmware version 2.0c." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_IDO_V2.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO) sensor V2.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:28.0", + "skos:altLabel": "SBE41_IDO_V2.0", + "skos:notation": "SDN:R27::SBE41_IDO_V2.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/", + "pav:authoredOn": "2025-03-31 13:56:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/1/" + }, + "dce:identifier": "SDN:R27::SBE41_IDO", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE41_IDO", + "skos:altLabel": "SBE41_IDO", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41_IDO", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO)" + }, + "owl:versionInfo": "1", + "dc:date": "2025-03-31 13:56:07.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure upwelling radiance in water. Number of channels: 7; field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR507_R10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-507 multispectral radiometer (upwelling radiance)" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "SATLANTIC_OCR507_R10W", + "skos:notation": "SDN:R27::SATLANTIC_OCR507_R10W", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::SATLANTIC_OCR507_R10W", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBB", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine backscattering, depth-rated to 600 m. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLbb sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB", + "skos:notation": "SDN:R27::ECO_FLBB", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "An optical dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into a pumped CTD system. Depth rating: 600 m (plastic housing) or 7000 m (titanium housing); oxygen concentration initial accuracy: 2 % saturation; response time (63 %): < 6 s; output signal: RS-232." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE63_OPTODE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 63 oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "SBE63_OPTODE", + "skos:notation": "SDN:R27::SBE63_OPTODE", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SBE63_OPTODE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1", + "skos:notation": "SDN:R27::SBE41CP_V1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/3/" + }, + "dce:identifier": "SDN:R27::SBE41_V3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 model has firmware version 3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_V3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD V3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:28.0", + "skos:altLabel": "SBE41_V3", + "skos:notation": "SDN:R27::SBE41_V3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/3/" + }, + "dce:identifier": "SDN:R27::SBE41_V2.6", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 model has firmware version 2.6." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_V2.6", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD V2.6" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:28.0", + "skos:altLabel": "SBE41_V2.6", + "skos:notation": "SDN:R27::SBE41_V2.6", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/1/" + }, + "pav:authoredOn": "2021-08-19 11:47:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/2/" + }, + "dce:identifier": "SDN:R27::SUNA", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time and over a variety of environments, depth-rated to 100 m. A deuterium lamp provides a light source of 1 cm path length; the measured spectrum falls within the Ultraviolet (UV) 190 nm - 370 nm wavelength range. Measurement accuracy: +/- 2 umol/l or 10 %; detection range: 0.5 umol/l to 2000 umol/l. The instrument is based on the MBARI-ISUS technology; it was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SUNA", + "skos:prefLabel": { + "@language": "en", + "@value": "Submersible Ultraviolet Nitrate Analyser (SUNA) nitrate sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2021-08-19 11:47:24.0", + "skos:altLabel": "SUNA", + "skos:notation": "SDN:R27::SUNA", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.9a", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.9a." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.9a", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.9a" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.9a", + "skos:notation": "SDN:R27::SBE41CP_V1.9a", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/3/" + }, + "dce:identifier": "SDN:R27::SBE41_IDO_V1.0c", + "pav:version": "3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 IDO model has firmware version 1.0c." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_IDO_V1.0c", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO) sensor V1.0c" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:28.0", + "skos:altLabel": "SBE41_IDO_V1.0c", + "skos:notation": "SDN:R27::SBE41_IDO_V1.0c" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBB_2K", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine backscattering, depth-rated to 2000 m and designed for float applications. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB_2K", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLbb2k sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB_2K", + "skos:notation": "SDN:R27::ECO_FLBB_2K", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/2/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure downwelling irradiance and upwelling radiance in water. Number of channels: 7; upwelling radiance field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard); spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR507_ICSWR10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-507 multispectral radiometer (downwelling irradiance and upwelling radiance)" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "SATLANTIC_OCR507_ICSWR10W", + "skos:notation": "SDN:R27::SATLANTIC_OCR507_ICSWR10W", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::SATLANTIC_OCR507_ICSWR10W" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/1/" + }, + "dce:identifier": "SDN:R27::FLOATCLOCK", + "pav:version": "1", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MARTEC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/OPTIMARE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WRC/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/" + }, + "skos:definition": { + "@language": "en", + "@value": "Inboard Real Time Clock (RTC) of a float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::FLOATCLOCK", + "skos:prefLabel": { + "@language": "en", + "@value": "Float clock" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "FLOATCLOCK", + "skos:notation": "SDN:R27::FLOATCLOCK" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/1/" + }, + "dce:identifier": "SDN:R27::SBE37", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A high accuracy conductivity and temperature recorder with an optional pressure sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE37", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 37 MicroCAT" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "SBE37", + "skos:notation": "SDN:R27::SBE37", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V5.3.0", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.3.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.3.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.3.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V5.3.0", + "skos:notation": "SDN:R27::SBE41CP_V5.3.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A through-flow, Clark polarographic membrane dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into a pumped CTD system. Depth rating: 600 m (plastic housing) or 7000 m (titanium housing); oxygen concentration initial accuracy: 2 % saturation; response time (63 %): 2 s - 5 s for 0.5 mil membrane (profiling applications), or 8 s - 20 s for 1.0 mil membrane (moored applications); output signal: 0-5 VDC." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE43_IDO", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 43 Integrated Dissolved Oxygen (IDO) sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "SBE43_IDO", + "skos:notation": "SDN:R27::SBE43_IDO", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SBE43_IDO", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V7.2.5", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 7.2.5." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V7.2.5", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V7.2.5" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41CP_V7.2.5", + "skos:notation": "SDN:R27::SBE41CP_V7.2.5", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "The SBE Surface Temperature and Salinity (STS) sensor is designed to make near-surface temperature and conductivity measurements from profiling floats. As its conductivity sensor is free-flushed, the SBE STS is designed to be used in conjunction with an SBE 41CP sensor for calibration purposes." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE_STS", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE Surface Temperature and Salinity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "SBE_STS", + "skos:notation": "SDN:R27::SBE_STS", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SBE_STS" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41_IDO_V3.0", + "pav:version": "3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 IDO model has firmware version 3.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_IDO_V3.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO) sensor V3.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41_IDO_V3.0", + "skos:notation": "SDN:R27::SBE41_IDO_V3.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V3", + "skos:notation": "SDN:R27::SBE41CP_V3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V5.3.1", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.3.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.3.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.3.1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V5.3.1", + "skos:notation": "SDN:R27::SBE41CP_V5.3.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + }, + "skos:definition": { + "@language": "en", + "@value": "A single-channel fluorometer, configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission), depth-rated to 600 m. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FL", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FL fluorometer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FL", + "skos:notation": "SDN:R27::ECO_FL", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_FL" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/1/" + }, + "dce:identifier": "SDN:R27::MCOMS_FLBB2", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three optical-sensor instrument fitted with one fluorometer and two scattering meters, depth-rated to 600 m. The fluorometer is configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths, whereas the two scattering meters (in-water centroid angle of 150 deg) can be configured to measure backscattering at a user-defined choice of 470 nm, 532 nm, 650 nm or 700 nm each. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MCOMS_FLBB2", + "skos:prefLabel": { + "@language": "en", + "@value": "MCOMS FLBB2 sensor package with one fluorometer and two scattering meters" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "MCOMS_FLBB2", + "skos:notation": "SDN:R27::MCOMS_FLBB2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A Clark polarographic membrane dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into the pumped CTD system of an Argo float. Depth rating: 2000 m; oxygen concentration initial accuracy: 1 % saturation; output signal: frequency." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE43I", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 43I (integral) dissolved oxygen sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "SBE43I", + "skos:notation": "SDN:R27::SBE43I", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SBE43I", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V2", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V2" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V2", + "skos:notation": "SDN:R27::SBE41CP_V2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.2a", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.2a." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.2a", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.2a" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.2a", + "skos:notation": "SDN:R27::SBE41CP_V1.2a", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.3b", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.3b." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.3b", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.3b" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.3b", + "skos:notation": "SDN:R27::SBE41CP_V1.3b", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.5", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.5." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.5", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.5" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.5", + "skos:notation": "SDN:R27::SBE41CP_V1.5", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.9", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.9." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.9", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.9" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.9", + "skos:notation": "SDN:R27::SBE41CP_V1.9", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.3", + "skos:notation": "SDN:R27::SBE41CP_V1.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.7", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.7." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.7", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.7" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.7", + "skos:notation": "SDN:R27::SBE41CP_V1.7", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V3.0c", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 3.0c." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V3.0c", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V3.0c" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V3.0c", + "skos:notation": "SDN:R27::SBE41CP_V3.0c", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41N_V5.3.0", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface. This SBE41N model has firmware version 5.3.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41N_V5.3.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD V5.3.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41N_V5.3.0", + "skos:notation": "SDN:R27::SBE41N_V5.3.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41N_V5.4.0", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface. This SBE41N model has firmware version 5.4.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41N_V5.4.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD V5.4.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41N_V5.4.0", + "skos:notation": "SDN:R27::SBE41N_V5.4.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "An optical sensor measuring scattering at a single 117 deg angle, configurable to 470 nm, 532 nm or 660 nm wavelength and depth-rated to 600 m. The scattering sensor has an in-water centroid angle of 124 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::ECO_BB", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO BB scattering meter" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "ECO_BB", + "skos:notation": "SDN:R27::ECO_BB", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::ECO_BB", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLNTU", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine turbidity, depth-rated to 600 m. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLNTU", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLntu sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLNTU", + "skos:notation": "SDN:R27::ECO_FLNTU", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/2/" + }, + "dce:identifier": "SDN:R27::SATLANTIC_OCR504_ICSW", + "pav:version": "2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + ], + "skos:notation": "SDN:R27::SATLANTIC_OCR504_ICSW", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure downwelling irradiance in water. Number of channels: 4; bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR504_ICSW", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-504 multispectral radiometer (downwelling irradiance)" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "SATLANTIC_OCR504_ICSW" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A single-channel optical meter measuring scattering at 700 nm to determine turbidity, depth-rated to 600 m. The scattering sensor has an in-water centroid angle of 124 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_NTU", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO NTU turbidity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_NTU", + "skos:notation": "SDN:R27::ECO_NTU", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_NTU" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/2/" + }, + "dce:identifier": "SDN:R27::SATLANTIC_OCR504_R10W", + "pav:version": "2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + ], + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure upwelling radiance in water. Number of channels: 4; field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR504_R10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-504 multispectral radiometer (upwelling radiance)" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "SATLANTIC_OCR504_R10W", + "skos:notation": "SDN:R27::SATLANTIC_OCR504_R10W" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/1/" + }, + "dce:identifier": "SDN:R27::MCOMS_FLBBCD", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength fluorometers and a single-angle scattering meter. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and Fluorescent Dissolved Organic Matter (FDOM) at 370 nm (excitation) / 460 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 150 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MCOMS_FLBBCD", + "skos:prefLabel": { + "@language": "en", + "@value": "MCOMS FLBBCD sensor package with two fluorometers and one scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "MCOMS_FLBBCD", + "skos:notation": "SDN:R27::MCOMS_FLBBCD", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBB_AP2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine backscattering, depth-rated to 2000 m and designed for float applications. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB_AP2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLbb-AP2 sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB_AP2", + "skos:notation": "SDN:R27::ECO_FLBB_AP2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBB2", + "pav:version": "1", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + ], + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three optical-sensor instrument fitted with one fluorometer and two scattering meters, depth-rated to 600 m. The fluorometer is configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths, whereas the two scattering meters (in-water centroid angle of 124 deg) can be configured to measure backscattering at a user-defined choice of 470 nm, 532 nm, 650 nm or 700 nm each. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLBB2 sensor package with one fluorometer and two scattering meters" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB2", + "skos:notation": "SDN:R27::ECO_FLBB2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/1/" + }, + "pav:authoredOn": "2021-08-19 11:48:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/2/" + }, + "dce:identifier": "SDN:R27::SUNA_V2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time and over clear to high turbidity/suspended sedimentation waters, depth-rated to 500 m. A deuterium lamp provides a light source of 10 mm path length (or 5 mm for high turbidity conditions); the measured spectrum falls within the Ultraviolet (UV) 190 nm - 370 nm wavelength range. The instrument is based on the MBARI-ISUS technology; it was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SUNA_V2", + "skos:prefLabel": { + "@language": "en", + "@value": "Submersible Ultraviolet Nitrate Analyser (SUNA) V2 nitrate sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2021-08-19 11:48:30.0", + "skos:altLabel": "SUNA_V2", + "skos:notation": "SDN:R27::SUNA_V2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/" + }, + "skos:definition": { + "@language": "en", + "@value": "An ion sensitive field effect transistor (ISFET) pH sensor with an AglCl reference electrode and a titanium counter electrode, housed in a pressure tolerant package. The sensor is manufactured at Sea-Bird Scientific, and was developed collaboratively by Monterey Bay Aquarium Research Institute (MBARI), Scripps Institution of Oceanography (SIO), and Honeywell International. Depth rating: 2000 dbar; Accuracy: +/- 0.05 pH; stability: 0.036 pH/year." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SEAFET", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific Deep SeaFET pH sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "SEAFET", + "skos:notation": "SDN:R27::SEAFET", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SEAFET", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + "skos:definition": { + "@language": "en", + "@value": "A Photosynthetically Active Radiation (PAR) sensor that measures quantum irradiance with near flat spectral response and cosine spatial response. Spectrum: 400 nm - 700 nm; PAR range: 0 umol - 5000 umol photons m^-2 s^-1; cosine error: < 3% (0 deg - 60 deg) and < 10% (60 deg - 85 deg); sample rate up to 100 Hz. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SATLANTIC_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic Photosynthetically Active Radiation (PAR) sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-07-01 16:48:21.0", + "skos:altLabel": "SATLANTIC_PAR", + "skos:notation": "SDN:R27::SATLANTIC_PAR", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::SATLANTIC_PAR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/" + }, + "skos:definition": { + "@language": "en", + "@value": "A neutrally buoyant optical transmissometer, designed for profiling floats applications. Depth rating: 2000 m; available wavelengths: 465 nm, 520 nm and 650 nm; optical pathlength: 25 cm; acceptance angle: 0.9 deg. The instrument was originally developed and manufactured at WET Labs, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::C_ROVER", + "skos:prefLabel": { + "@language": "en", + "@value": "c-Rover Transmissometer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "C_ROVER", + "skos:notation": "SDN:R27::C_ROVER", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::C_ROVER" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A single-channel optical sensor configurable to detect a wide range of parameters within a 260 nm - 900 nm optical range, including chlorophyll-a, Fluorescent Dissolved Organic Matter (FDOM), and turbidity. The instrument is depth-rated to 600m, and was developed and manufactured by Turner Designs." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::CYCLOPS_7_FLUOROMETER", + "skos:prefLabel": { + "@language": "en", + "@value": "Turner Designs Cyclops-7 fluorometer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "CYCLOPS_7_FLUOROMETER", + "skos:notation": "SDN:R27::CYCLOPS_7_FLUOROMETER", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::CYCLOPS_7_FLUOROMETER" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/UNKNOWN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms listing models of sensors mounted on Argo floats. Note: avoid using the manufacturer name and sensor firmware version in new entries when possible. Argo netCDF variable SENSOR_MODEL is populated by R27 altLabel.", + "dc:title": "Argo sensor models", + "skos:prefLabel": "Argo sensor models", + "owl:versionInfo": "25", + "dc:date": "2026-03-10 02:00:00.0", + "skos:altLabel": "SENSOR_MODEL", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "SENSOR_MODEL", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R33.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R33.jsonld new file mode 100644 index 0000000..2c76592 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R33.jsonld @@ -0,0 +1,150 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00001/", + "pav:authoredOn": "2026-03-18 11:19:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00001/1/" + }, + "dce:identifier": "SDN:R33::BM00001", + "pav:version": "1", + "skos:notation": "SDN:R33::BM00001", + "skos:altLabel": "ELECTROCHEM", + "dc:date": "2026-03-18 11:19:16.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ELECTROCHEM" + }, + "dc:identifier": "SDN:R33::BM00001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US company ELECTROCHEM, founded in 1979. https://electrochemsolutions.com/overview/." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00003/", + "pav:authoredOn": "2026-03-18 11:19:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00003/1/" + }, + "dce:identifier": "SDN:R33::BM00003", + "pav:version": "1", + "skos:notation": "SDN:R33::BM00003", + "skos:altLabel": "SAFT", + "dc:date": "2026-03-18 11:19:16.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SAFT" + }, + "dc:identifier": "SDN:R33::BM00003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "French company SAFT, founded in 1918. https://saft.com/en/about-saft/saft-in-brief." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00002/", + "pav:authoredOn": "2026-03-18 11:19:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00002/1/" + }, + "dce:identifier": "SDN:R33::BM00002", + "pav:version": "1", + "skos:notation": "SDN:R33::BM00002", + "skos:altLabel": "TADIRAN", + "dc:date": "2026-03-18 11:19:16.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TADIRAN" + }, + "dc:identifier": "SDN:R33::BM00002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US company TADIRAN, founded in 1962. https://tadiranbat.com/." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00003/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float battery manufacturers. Argo netCDF variable BATTERY_TYPE syntax uses both R33 altLabel and R34 altLabel with the following convention: V [+ V].", + "dc:title": "Argo battery maker", + "skos:prefLabel": "Argo battery maker", + "owl:versionInfo": "1", + "dc:date": "2026-03-19 02:00:01.0", + "skos:altLabel": "BATTERY_MAKER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "BATTERY_MAKER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R34.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R34.jsonld new file mode 100644 index 0000000..64d8b46 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R34.jsonld @@ -0,0 +1,150 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00003/", + "pav:authoredOn": "2026-03-18 11:19:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00003/1/" + }, + "dce:identifier": "SDN:R34::BT00003", + "pav:version": "1", + "skos:notation": "SDN:R34::BT00003", + "skos:altLabel": "Hybrid", + "dc:date": "2026-03-18 11:19:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hyb" + }, + "dc:identifier": "SDN:R34::BT00003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Hybrid (alkaline and lithium) batteries." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00002/", + "pav:authoredOn": "2026-03-18 11:19:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00002/1/" + }, + "dce:identifier": "SDN:R34::BT00002", + "pav:version": "1", + "skos:notation": "SDN:R34::BT00002", + "skos:altLabel": "Lithium", + "dc:date": "2026-03-18 11:19:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Li" + }, + "dc:identifier": "SDN:R34::BT00002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Lithium battery." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00001/", + "pav:authoredOn": "2026-03-18 11:19:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00001/1/" + }, + "dce:identifier": "SDN:R34::BT00001", + "pav:version": "1", + "skos:notation": "SDN:R34::BT00001", + "skos:altLabel": "Alkaline", + "dc:date": "2026-03-18 11:19:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Alk" + }, + "dc:identifier": "SDN:R34::BT00001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Alkaline battery." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00002/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float battery types. Argo netCDF variable BATTERY_TYPE syntax uses both R33 altLabel and R34 altLabel with the following convention: V [+ V]. Argo netCDF variable BATTERY_PACKS uses both R35 altLabel and R34 prefLabel with the following convention: [+ ].", + "dc:title": "Argo battery type", + "skos:prefLabel": "Argo battery type", + "owl:versionInfo": "1", + "dc:date": "2026-03-19 02:00:01.0", + "skos:altLabel": "BATTERY_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "BATTERY_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R35.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R35.jsonld new file mode 100644 index 0000000..2a95759 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R35.jsonld @@ -0,0 +1,150 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00003/", + "pav:authoredOn": "2026-03-18 11:19:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00003/1/" + }, + "dce:identifier": "SDN:R35::BS00003", + "pav:version": "1", + "skos:notation": "SDN:R35::BS00003", + "skos:altLabel": "C", + "dc:date": "2026-03-18 11:19:31.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "C" + }, + "dc:identifier": "SDN:R35::BS00003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "C cell battery." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00002/", + "pav:authoredOn": "2026-03-18 11:19:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00002/1/" + }, + "dce:identifier": "SDN:R35::BS00002", + "pav:version": "1", + "skos:notation": "SDN:R35::BS00002", + "skos:altLabel": "D", + "dc:date": "2026-03-18 11:19:31.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "D" + }, + "dc:identifier": "SDN:R35::BS00002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "D cell battery." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00001/", + "pav:authoredOn": "2026-03-18 11:19:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00001/1/" + }, + "dce:identifier": "SDN:R35::BS00001", + "pav:version": "1", + "skos:notation": "SDN:R35::BS00001", + "skos:altLabel": "DD", + "dc:date": "2026-03-18 11:19:31.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DD" + }, + "dc:identifier": "SDN:R35::BS00001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DD cell battery (larger capacity than D cell battery)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00002/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float battery styles. Argo netCDF variable BATTERY_PACKS uses both R35 altLabel and R34 prefLabel with the following convention: [+ ].", + "dc:title": "Argo battery size", + "skos:prefLabel": "Argo battery size", + "owl:versionInfo": "1", + "dc:date": "2026-03-19 02:00:01.0", + "skos:altLabel": "BATTERY_SIZE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "BATTERY_SIZE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R40.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R40.jsonld new file mode 100644 index 0000000..cc238ca --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R40.jsonld @@ -0,0 +1,8944 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0107/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0107/1/" + }, + "dce:identifier": "SDN:R40::PI0107", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0107", + "skos:altLabel": "Juliet HERMES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Juliet HERMES" + }, + "dc:identifier": "SDN:R40::PI0107", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0130/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0130/1/" + }, + "dce:identifier": "SDN:R40::PI0130", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0130", + "skos:altLabel": "Mike MEREDITH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mike MEREDITH" + }, + "dc:identifier": "SDN:R40::PI0130", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0254/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0254/1/" + }, + "dce:identifier": "SDN:R40::PI0254", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0254", + "skos:altLabel": "Emanuele ORGANELLI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emanuele ORGANELLI" + }, + "dc:identifier": "SDN:R40::PI0254", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0025/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0025/1/" + }, + "dce:identifier": "SDN:R40::PI0025", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0025", + "skos:altLabel": "Camille DAUBORD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Camille DAUBORD" + }, + "dc:identifier": "SDN:R40::PI0025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0094/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0094/1/" + }, + "dce:identifier": "SDN:R40::PI0094", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0094", + "skos:altLabel": "Jens SCHIMANSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jens SCHIMANSKI" + }, + "dc:identifier": "SDN:R40::PI0094", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0006/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0006/1/" + }, + "dce:identifier": "SDN:R40::PI0006", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0006", + "skos:altLabel": "Amy BOWER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Amy BOWER" + }, + "dc:identifier": "SDN:R40::PI0006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0176/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0176/1/" + }, + "dce:identifier": "SDN:R40::PI0176", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0176", + "skos:altLabel": "Shin-Ichi ITO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Shin-Ichi ITO" + }, + "dc:identifier": "SDN:R40::PI0176", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0117/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0117/1/" + }, + "dce:identifier": "SDN:R40::PI0117", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0117", + "skos:altLabel": "Laura TUOMI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laura TUOMI" + }, + "dc:identifier": "SDN:R40::PI0117", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0260/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0260/1/" + }, + "dce:identifier": "SDN:R40::PI0260", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0260", + "skos:altLabel": "Jean-Baptiste ROUSTAN", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jean-Baptiste ROUSTAN" + }, + "dc:identifier": "SDN:R40::PI0260", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0067/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0067/1/" + }, + "dce:identifier": "SDN:R40::PI0067", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0067", + "skos:altLabel": "Frederic VIVIER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Frederic VIVIER" + }, + "dc:identifier": "SDN:R40::PI0067", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0225/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0225/1/" + }, + "dce:identifier": "SDN:R40::PI0225", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0225", + "skos:altLabel": "Yutaka MICHIDA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yutaka MICHIDA" + }, + "dc:identifier": "SDN:R40::PI0225", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0089/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0089/1/" + }, + "dce:identifier": "SDN:R40::PI0089", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0089", + "skos:altLabel": "Jamal Chioua", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jamal Chioua" + }, + "dc:identifier": "SDN:R40::PI0089", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0222/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0222/1/" + }, + "dce:identifier": "SDN:R40::PI0222", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0222", + "skos:altLabel": "Youngsoo JEON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Youngsoo JEON" + }, + "dc:identifier": "SDN:R40::PI0222", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0185/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0185/1/" + }, + "dce:identifier": "SDN:R40::PI0185", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0185", + "skos:altLabel": "Steven EMERSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Steven EMERSON" + }, + "dc:identifier": "SDN:R40::PI0185", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0258/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0258/1/" + }, + "dce:identifier": "SDN:R40::PI0258", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0258", + "skos:altLabel": "Giovanni LA FORGIA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Giovanni LA FORGIA" + }, + "dc:identifier": "SDN:R40::PI0258", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0264/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0264/1/" + }, + "dce:identifier": "SDN:R40::PI0264", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0264", + "skos:altLabel": "Laura CIMOLI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laura CIMOLI" + }, + "dc:identifier": "SDN:R40::PI0264", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0133/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0133/1/" + }, + "dce:identifier": "SDN:R40::PI0133", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0133", + "skos:altLabel": "Molly BARINGER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Molly BARINGER" + }, + "dc:identifier": "SDN:R40::PI0133", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0159/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0159/1/" + }, + "dce:identifier": "SDN:R40::PI0159", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0159", + "skos:altLabel": "Robert MOLINARI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Robert MOLINARI" + }, + "dc:identifier": "SDN:R40::PI0159", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0033/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0033/1/" + }, + "dce:identifier": "SDN:R40::PI0033", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0033", + "skos:altLabel": "Christoph KIHM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christoph KIHM" + }, + "dc:identifier": "SDN:R40::PI0033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0229/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0229/1/" + }, + "dce:identifier": "SDN:R40::PI0229", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0229", + "skos:altLabel": "Zhaohui CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Zhaohui CHEN" + }, + "dc:identifier": "SDN:R40::PI0229", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0243/", + "pav:authoredOn": "2025-06-30 16:01:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0243/1/" + }, + "dce:identifier": "SDN:R40::PI0243", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0243", + "skos:altLabel": "Tetsuichi FUJIKI", + "dc:date": "2025-06-30 16:01:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tetsuichi FUJIKI" + }, + "dc:identifier": "SDN:R40::PI0243", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0079/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0079/1/" + }, + "dce:identifier": "SDN:R40::PI0079", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0079", + "skos:altLabel": "Henry BITTIG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Henry BITTIG" + }, + "dc:identifier": "SDN:R40::PI0079", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0237/", + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0237/1/" + }, + "dce:identifier": "SDN:R40::PI0237", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0237", + "skos:altLabel": "Christina SCHALLENBERG", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christina SCHALLENBERG" + }, + "dc:identifier": "SDN:R40::PI0237", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0083/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0083/1/" + }, + "dce:identifier": "SDN:R40::PI0083", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0083", + "skos:altLabel": "Howard FREELAND", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Howard FREELAND" + }, + "dc:identifier": "SDN:R40::PI0083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0012/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0012/1/" + }, + "dce:identifier": "SDN:R40::PI0012", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0012", + "skos:altLabel": "Antoine POTEAU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Antoine POTEAU" + }, + "dc:identifier": "SDN:R40::PI0012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0202/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0202/1/" + }, + "dce:identifier": "SDN:R40::PI0202", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0202", + "skos:altLabel": "Toshio SUGA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Toshio SUGA" + }, + "dc:identifier": "SDN:R40::PI0202", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0191/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0191/1/" + }, + "dce:identifier": "SDN:R40::PI0191", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0191", + "skos:altLabel": "Takashi KIKUCHI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Takashi KIKUCHI" + }, + "dc:identifier": "SDN:R40::PI0191", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0104/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0104/1/" + }, + "dce:identifier": "SDN:R40::PI0104", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0104", + "skos:altLabel": "Ju CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ju CHEN" + }, + "dc:identifier": "SDN:R40::PI0104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0042/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0042/1/" + }, + "dce:identifier": "SDN:R40::PI0042", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0042", + "skos:altLabel": "Dan RUDNICK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dan RUDNICK" + }, + "dc:identifier": "SDN:R40::PI0042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0219/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0219/1/" + }, + "dce:identifier": "SDN:R40::PI0219", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0219", + "skos:altLabel": "Yong-Hoon YOUN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yong-Hoon YOUN" + }, + "dc:identifier": "SDN:R40::PI0219", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0153/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0153/1/" + }, + "dce:identifier": "SDN:R40::PI0153", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0153", + "skos:altLabel": "Philip BOYD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Philip BOYD" + }, + "dc:identifier": "SDN:R40::PI0153", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0101/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0101/1/" + }, + "dce:identifier": "SDN:R40::PI0101", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0101", + "skos:altLabel": "Jordi FONT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jordi FONT" + }, + "dc:identifier": "SDN:R40::PI0101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0064/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0064/1/" + }, + "dce:identifier": "SDN:R40::PI0064", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0064", + "skos:altLabel": "Fiona GRANT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fiona GRANT" + }, + "dc:identifier": "SDN:R40::PI0064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0172/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0172/1/" + }, + "dce:identifier": "SDN:R40::PI0172", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0172", + "skos:altLabel": "Serge LE RESTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Serge LE RESTE" + }, + "dc:identifier": "SDN:R40::PI0172", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0029/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0029/1/" + }, + "dce:identifier": "SDN:R40::PI0029", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0029", + "skos:altLabel": "Charlie HORTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Charlie HORTON" + }, + "dc:identifier": "SDN:R40::PI0029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0255/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0255/1/" + }, + "dce:identifier": "SDN:R40::PI0255", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0255", + "skos:altLabel": "Emilio GARCIA-LADONA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emilio GARCIA-LADONA" + }, + "dc:identifier": "SDN:R40::PI0255", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0059/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0059/1/" + }, + "dce:identifier": "SDN:R40::PI0059", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0059", + "skos:altLabel": "Fabrizio D'ORTENZIO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fabrizio D'ORTENZIO" + }, + "dc:identifier": "SDN:R40::PI0059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0016/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0016/1/" + }, + "dce:identifier": "SDN:R40::PI0016", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0016", + "skos:altLabel": "Bert RUDELS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bert RUDELS" + }, + "dc:identifier": "SDN:R40::PI0016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0143/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0143/1/" + }, + "dce:identifier": "SDN:R40::PI0143", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0143", + "skos:altLabel": "Osvaldo ULLOA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Osvaldo ULLOA" + }, + "dc:identifier": "SDN:R40::PI0143", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0038/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0038/1/" + }, + "dce:identifier": "SDN:R40::PI0038", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0038", + "skos:altLabel": "Corinna JENSEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Corinna JENSEN" + }, + "dc:identifier": "SDN:R40::PI0038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0108/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0108/1/" + }, + "dce:identifier": "SDN:R40::PI0108", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0108", + "skos:altLabel": "Katrin LATARIUS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Katrin LATARIUS" + }, + "dc:identifier": "SDN:R40::PI0108", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0131/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0131/1/" + }, + "dce:identifier": "SDN:R40::PI0131", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0131", + "skos:altLabel": "Mikhail DANCHENKOV", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mikhail DANCHENKOV" + }, + "dc:identifier": "SDN:R40::PI0131", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0068/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0068/1/" + }, + "dce:identifier": "SDN:R40::PI0068", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0068", + "skos:altLabel": "Gerard ELDIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gerard ELDIN" + }, + "dc:identifier": "SDN:R40::PI0068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0226/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0226/1/" + }, + "dce:identifier": "SDN:R40::PI0226", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0226", + "skos:altLabel": "Yves GOURIOU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yves GOURIOU" + }, + "dc:identifier": "SDN:R40::PI0226", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0070/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0070/1/" + }, + "dce:identifier": "SDN:R40::PI0070", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0070", + "skos:altLabel": "Gerd ROHARDT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gerd ROHARDT" + }, + "dc:identifier": "SDN:R40::PI0070", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0177/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0177/1/" + }, + "dce:identifier": "SDN:R40::PI0177", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0177", + "skos:altLabel": "Sophie BONNET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sophie BONNET" + }, + "dc:identifier": "SDN:R40::PI0177", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0010/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0010/1/" + }, + "dce:identifier": "SDN:R40::PI0010", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0010", + "skos:altLabel": "Anja SCHNEEHORST", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Anja SCHNEEHORST" + }, + "dc:identifier": "SDN:R40::PI0010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0088/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0088/1/" + }, + "dce:identifier": "SDN:R40::PI0088", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0088", + "skos:altLabel": "Jae-Young BYON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jae-Young BYON" + }, + "dc:identifier": "SDN:R40::PI0088", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0261/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0261/1/" + }, + "dce:identifier": "SDN:R40::PI0261", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0261", + "skos:altLabel": "Joaquin TINTORE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Joaquin TINTORE" + }, + "dc:identifier": "SDN:R40::PI0261", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0270/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0270/1/" + }, + "dce:identifier": "SDN:R40::PI0270", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0270", + "skos:altLabel": "Mark MOORE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mark MOORE" + }, + "dc:identifier": "SDN:R40::PI0270", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0032/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0032/1/" + }, + "dce:identifier": "SDN:R40::PI0032", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0032", + "skos:altLabel": "Christine PROVOST", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christine PROVOST" + }, + "dc:identifier": "SDN:R40::PI0032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0206/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0206/1/" + }, + "dce:identifier": "SDN:R40::PI0206", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0206", + "skos:altLabel": "Violeta SLABAKOVA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Violeta SLABAKOVA" + }, + "dc:identifier": "SDN:R40::PI0206", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0279/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0279/1/" + }, + "dce:identifier": "SDN:R40::PI0279", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0279", + "skos:altLabel": "Sergio CAMBRONERO-SOLANO", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sergio CAMBRONERO-SOLANO" + }, + "dc:identifier": "SDN:R40::PI0279", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/2/" + }, + "dce:identifier": "SDN:R40::PI0112", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0112", + "skos:altLabel": "Kjell Arne MORK", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Kjell Arne MORK" + }, + "dc:identifier": "SDN:R40::PI0112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0051/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0051/1/" + }, + "dce:identifier": "SDN:R40::PI0051", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0051", + "skos:altLabel": "Einar SVENDSEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Einar SVENDSEN" + }, + "dc:identifier": "SDN:R40::PI0051", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0223/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0223/1/" + }, + "dce:identifier": "SDN:R40::PI0223", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0223", + "skos:altLabel": "Yu ZHANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yu ZHANG" + }, + "dc:identifier": "SDN:R40::PI0223", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0134/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0134/1/" + }, + "dce:identifier": "SDN:R40::PI0134", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0134", + "skos:altLabel": "Moon-Sik SUK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Moon-Sik SUK" + }, + "dc:identifier": "SDN:R40::PI0134", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0158/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0158/1/" + }, + "dce:identifier": "SDN:R40::PI0158", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0158", + "skos:altLabel": "Ricardo ROJAS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ricardo ROJAS" + }, + "dc:identifier": "SDN:R40::PI0158", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0001/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0001/1/" + }, + "dce:identifier": "SDN:R40::PI0001", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0001", + "skos:altLabel": "Agus ATMADIPOERA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Agus ATMADIPOERA" + }, + "dc:identifier": "SDN:R40::PI0001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0082/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0082/1/" + }, + "dce:identifier": "SDN:R40::PI0082", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0082", + "skos:altLabel": "Holger GIESE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Holger GIESE" + }, + "dc:identifier": "SDN:R40::PI0082", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0073/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0073/1/" + }, + "dce:identifier": "SDN:R40::PI0073", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0073", + "skos:altLabel": "Gregorio PARRILLA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gregorio PARRILLA" + }, + "dc:identifier": "SDN:R40::PI0073", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0009/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0009/1/" + }, + "dce:identifier": "SDN:R40::PI0009", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0009", + "skos:altLabel": "Andy REES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andy REES" + }, + "dc:identifier": "SDN:R40::PI0009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0036/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0036/1/" + }, + "dce:identifier": "SDN:R40::PI0036", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0036", + "skos:altLabel": "Claudia SCHMID", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Claudia SCHMID" + }, + "dc:identifier": "SDN:R40::PI0036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0105/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0105/1/" + }, + "dce:identifier": "SDN:R40::PI0105", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0105", + "skos:altLabel": "Juergen FISHER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Juergen FISHER" + }, + "dc:identifier": "SDN:R40::PI0105", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0091/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0091/1/" + }, + "dce:identifier": "SDN:R40::PI0091", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0091", + "skos:altLabel": "Jari HAAPALA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jari HAAPALA" + }, + "dc:identifier": "SDN:R40::PI0091", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0252/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0252/1/" + }, + "dce:identifier": "SDN:R40::PI0252", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0252", + "skos:altLabel": "Caroline CUSACK", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Caroline CUSACK" + }, + "dc:identifier": "SDN:R40::PI0252", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0056/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0056/1/" + }, + "dce:identifier": "SDN:R40::PI0056", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0056", + "skos:altLabel": "Emmanuel BOSS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emmanuel BOSS" + }, + "dc:identifier": "SDN:R40::PI0056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0213/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0213/1/" + }, + "dce:identifier": "SDN:R40::PI0213", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0213", + "skos:altLabel": "Xavier ANDRE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xavier ANDRE" + }, + "dc:identifier": "SDN:R40::PI0213", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0055/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0055/1/" + }, + "dce:identifier": "SDN:R40::PI0055", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0055", + "skos:altLabel": "Emily OSBORNE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emily OSBORNE" + }, + "dc:identifier": "SDN:R40::PI0055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0152/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0152/1/" + }, + "dce:identifier": "SDN:R40::PI0152", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0152", + "skos:altLabel": "Phil SUTTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Phil SUTTON" + }, + "dc:identifier": "SDN:R40::PI0152", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0140/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0140/1/" + }, + "dce:identifier": "SDN:R40::PI0140", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0140", + "skos:altLabel": "Olaf BOEBEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Olaf BOEBEL" + }, + "dc:identifier": "SDN:R40::PI0140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0259/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0259/1/" + }, + "dce:identifier": "SDN:R40::PI0259", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0259", + "skos:altLabel": "Guillaume LE PROVOST", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Guillaume LE PROVOST" + }, + "dc:identifier": "SDN:R40::PI0259", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0246/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0246/1/" + }, + "dce:identifier": "SDN:R40::PI0246", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0246", + "skos:altLabel": "Andre MENDES", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andre MENDES" + }, + "dc:identifier": "SDN:R40::PI0246", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0126/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0126/1/" + }, + "dce:identifier": "SDN:R40::PI0126", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0126", + "skos:altLabel": "Martin WHITE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Martin WHITE" + }, + "dc:identifier": "SDN:R40::PI0126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0065/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0065/1/" + }, + "dce:identifier": "SDN:R40::PI0065", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0065", + "skos:altLabel": "Franck DUMAS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Franck DUMAS" + }, + "dc:identifier": "SDN:R40::PI0065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/2/" + }, + "dce:identifier": "SDN:R40::PI0102", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0102", + "skos:altLabel": "Jose Luis OCHOA-DE-LA-TORRE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Jose Luis OCHOA-DE-LA-TORRE" + }, + "dc:identifier": "SDN:R40::PI0102", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0099/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0099/1/" + }, + "dce:identifier": "SDN:R40::PI0099", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0099", + "skos:altLabel": "John GILSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "John GILSON" + }, + "dc:identifier": "SDN:R40::PI0099", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0109/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0109/1/" + }, + "dce:identifier": "SDN:R40::PI0109", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0109", + "skos:altLabel": "Kenneth JOHNSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Kenneth JOHNSON" + }, + "dc:identifier": "SDN:R40::PI0109", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0121/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0121/1/" + }, + "dce:identifier": "SDN:R40::PI0121", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0121", + "skos:altLabel": "Louis M PRIEUR", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Louis M PRIEUR" + }, + "dc:identifier": "SDN:R40::PI0121", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Louis Marie Prieur" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0182/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0182/1/" + }, + "dce:identifier": "SDN:R40::PI0182", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0182", + "skos:altLabel": "Stephanie LOUAZEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephanie LOUAZEL" + }, + "dc:identifier": "SDN:R40::PI0182", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0144/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0144/1/" + }, + "dce:identifier": "SDN:R40::PI0144", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0144", + "skos:altLabel": "Pascal CONAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pascal CONAN" + }, + "dc:identifier": "SDN:R40::PI0144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0205/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0205/1/" + }, + "dce:identifier": "SDN:R40::PI0205", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0205", + "skos:altLabel": "Vincent ECHEVIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Vincent ECHEVIN" + }, + "dc:identifier": "SDN:R40::PI0205", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0278/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0278/1/" + }, + "dce:identifier": "SDN:R40::PI0278", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0278", + "skos:altLabel": "Rodrigo TECCHIO", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Rodrigo TECCHIO" + }, + "dc:identifier": "SDN:R40::PI0278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0023/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0023/1/" + }, + "dce:identifier": "SDN:R40::PI0023", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0023", + "skos:altLabel": "Brian KING", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Brian KING" + }, + "dc:identifier": "SDN:R40::PI0023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0227/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0227/1/" + }, + "dce:identifier": "SDN:R40::PI0227", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0227", + "skos:altLabel": "Yves MOREL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yves MOREL" + }, + "dc:identifier": "SDN:R40::PI0227", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0138/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0138/1/" + }, + "dce:identifier": "SDN:R40::PI0138", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0138", + "skos:altLabel": "Nicolas BARRE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nicolas BARRE" + }, + "dc:identifier": "SDN:R40::PI0138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0249/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0249/1/" + }, + "dce:identifier": "SDN:R40::PI0249", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0249", + "skos:altLabel": "Benjamin RABE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Benjamin RABE" + }, + "dc:identifier": "SDN:R40::PI0249", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0209/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0209/1/" + }, + "dce:identifier": "SDN:R40::PI0209", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0209", + "skos:altLabel": "Walter ZENK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Walter ZENK" + }, + "dc:identifier": "SDN:R40::PI0209", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0052/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0052/1/" + }, + "dce:identifier": "SDN:R40::PI0052", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0052", + "skos:altLabel": "Elena MAURI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Elena MAURI" + }, + "dc:identifier": "SDN:R40::PI0052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0061/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0061/1/" + }, + "dce:identifier": "SDN:R40::PI0061", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0061", + "skos:altLabel": "Femke DE JONG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Femke DE JONG" + }, + "dc:identifier": "SDN:R40::PI0061", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0026/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0026/1/" + }, + "dce:identifier": "SDN:R40::PI0026", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0026", + "skos:altLabel": "Carl SZCZECHOWSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Carl SZCZECHOWSKI" + }, + "dc:identifier": "SDN:R40::PI0026", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0135/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0135/1/" + }, + "dce:identifier": "SDN:R40::PI0135", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0135", + "skos:altLabel": "Nathalie ZILBERMAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nathalie ZILBERMAN" + }, + "dc:identifier": "SDN:R40::PI0135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0162/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0162/1/" + }, + "dce:identifier": "SDN:R40::PI0162", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0162", + "skos:altLabel": "Romain CANCOUET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Romain CANCOUET" + }, + "dc:identifier": "SDN:R40::PI0162", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0035/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0035/1/" + }, + "dce:identifier": "SDN:R40::PI0035", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0035", + "skos:altLabel": "Chunsheng JING", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Chunsheng JING" + }, + "dc:identifier": "SDN:R40::PI0035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0074/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0074/1/" + }, + "dce:identifier": "SDN:R40::PI0074", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0074", + "skos:altLabel": "Gregory C JOHNSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gregory C JOHNSON" + }, + "dc:identifier": "SDN:R40::PI0074", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0057/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0057/1/" + }, + "dce:identifier": "SDN:R40::PI0057", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0057", + "skos:altLabel": "Fabien DURAND", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fabien DURAND" + }, + "dc:identifier": "SDN:R40::PI0057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0165/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0165/1/" + }, + "dce:identifier": "SDN:R40::PI0165", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0165", + "skos:altLabel": "Ryuichi SHIROOKA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ryuichi SHIROOKA" + }, + "dc:identifier": "SDN:R40::PI0165", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0193/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0193/1/" + }, + "dce:identifier": "SDN:R40::PI0193", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0193", + "skos:altLabel": "Tamaryn MORRIS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tamaryn MORRIS" + }, + "dc:identifier": "SDN:R40::PI0193", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0096/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0096/1/" + }, + "dce:identifier": "SDN:R40::PI0096", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0096", + "skos:altLabel": "Jianhua ZHANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jianhua ZHANG" + }, + "dc:identifier": "SDN:R40::PI0096", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0120/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0120/1/" + }, + "dce:identifier": "SDN:R40::PI0120", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0120", + "skos:altLabel": "Liu ZENGHONG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Liu ZENGHONG" + }, + "dc:identifier": "SDN:R40::PI0120", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0092/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0092/1/" + }, + "dce:identifier": "SDN:R40::PI0092", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0092", + "skos:altLabel": "Jean-Baptiste SALLEE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jean-Baptiste SALLEE" + }, + "dc:identifier": "SDN:R40::PI0092", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0020/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0020/1/" + }, + "dce:identifier": "SDN:R40::PI0020", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0020", + "skos:altLabel": "Bo QIU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bo QIU" + }, + "dc:identifier": "SDN:R40::PI0020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0214/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0214/1/" + }, + "dce:identifier": "SDN:R40::PI0214", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0214", + "skos:altLabel": "Xavier CAPET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xavier CAPET" + }, + "dc:identifier": "SDN:R40::PI0214", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0211/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0211/1/" + }, + "dce:identifier": "SDN:R40::PI0211", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0211", + "skos:altLabel": "Weifang JIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Weifang JIN" + }, + "dc:identifier": "SDN:R40::PI0211", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0174/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0174/1/" + }, + "dce:identifier": "SDN:R40::PI0174", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0174", + "skos:altLabel": "Shangping XIE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Shangping XIE" + }, + "dc:identifier": "SDN:R40::PI0174", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0269/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0269/1/" + }, + "dce:identifier": "SDN:R40::PI0269", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0269", + "skos:altLabel": "Maristella BERTA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Maristella BERTA" + }, + "dc:identifier": "SDN:R40::PI0269", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0194/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0194/1/" + }, + "dce:identifier": "SDN:R40::PI0194", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0194", + "skos:altLabel": "Tero PUROKOSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tero PUROKOSKI" + }, + "dc:identifier": "SDN:R40::PI0194", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0041/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0041/1/" + }, + "dce:identifier": "SDN:R40::PI0041", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0041", + "skos:altLabel": "Damien DESBRUYERES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Damien DESBRUYERES" + }, + "dc:identifier": "SDN:R40::PI0041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0124/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0124/1/" + }, + "dce:identifier": "SDN:R40::PI0124", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0124", + "skos:altLabel": "Marcel BABIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Marcel BABIN" + }, + "dc:identifier": "SDN:R40::PI0124", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0024/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0024/1/" + }, + "dce:identifier": "SDN:R40::PI0024", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0024", + "skos:altLabel": "Byunghwan LIM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Byunghwan LIM" + }, + "dc:identifier": "SDN:R40::PI0024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0240/", + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0240/1/" + }, + "dce:identifier": "SDN:R40::PI0240", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0240", + "skos:altLabel": "Esmee VAN WIJK", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Esmee VAN WIJK" + }, + "dc:identifier": "SDN:R40::PI0240", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0044/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0044/1/" + }, + "dce:identifier": "SDN:R40::PI0044", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0044", + "skos:altLabel": "David NICHOLSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "David NICHOLSON" + }, + "dc:identifier": "SDN:R40::PI0044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0179/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0179/1/" + }, + "dce:identifier": "SDN:R40::PI0179", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0179", + "skos:altLabel": "Sorin BALAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sorin BALAN" + }, + "dc:identifier": "SDN:R40::PI0179", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0085/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0085/1/" + }, + "dce:identifier": "SDN:R40::PI0085", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0085", + "skos:altLabel": "Hyun-Suk KANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hyun-Suk KANG" + }, + "dc:identifier": "SDN:R40::PI0085", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0263/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0263/1/" + }, + "dce:identifier": "SDN:R40::PI0263", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0263", + "skos:altLabel": "Lara DIAZ BARROSO", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Lara DIAZ BARROSO" + }, + "dc:identifier": "SDN:R40::PI0263", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0235/", + "pav:authoredOn": "2024-11-11 09:32:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0235/1/" + }, + "dce:identifier": "SDN:R40::PI0235", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0235", + "skos:altLabel": "Stefanie SEMPER", + "dc:date": "2024-11-11 09:32:24.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stefanie SEMPER" + }, + "dc:identifier": "SDN:R40::PI0235", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0285/", + "pav:authoredOn": "2026-02-25 09:10:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0285/1/" + }, + "dce:identifier": "SDN:R40::PI0285", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0285", + "skos:altLabel": "Esther PORTELA RODRIGUEZ", + "dc:date": "2026-02-25 09:10:14.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Esther PORTELA RODRIGUEZ" + }, + "dc:identifier": "SDN:R40::PI0285", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0208/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0208/1/" + }, + "dce:identifier": "SDN:R40::PI0208", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0208", + "skos:altLabel": "Waldemar WALCZOWSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Waldemar WALCZOWSKI" + }, + "dc:identifier": "SDN:R40::PI0208", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0139/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0139/1/" + }, + "dce:identifier": "SDN:R40::PI0139", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0139", + "skos:altLabel": "Nobuyuki SHIKAMA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nobuyuki SHIKAMA" + }, + "dc:identifier": "SDN:R40::PI0139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0053/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0053/1/" + }, + "dce:identifier": "SDN:R40::PI0053", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0053", + "skos:altLabel": "Elodie MARTINEZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Elodie MARTINEZ" + }, + "dc:identifier": "SDN:R40::PI0053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0161/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0161/1/" + }, + "dce:identifier": "SDN:R40::PI0161", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0161", + "skos:altLabel": "Robert WELLER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Robert WELLER" + }, + "dc:identifier": "SDN:R40::PI0161", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0148/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0148/1/" + }, + "dce:identifier": "SDN:R40::PI0148", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0148", + "skos:altLabel": "Peter HACKER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter HACKER" + }, + "dc:identifier": "SDN:R40::PI0148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0170/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0170/1/" + }, + "dce:identifier": "SDN:R40::PI0170", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0170", + "skos:altLabel": "Satoru YOKOI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Satoru YOKOI" + }, + "dc:identifier": "SDN:R40::PI0170", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0018/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0018/1/" + }, + "dce:identifier": "SDN:R40::PI0018", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0018", + "skos:altLabel": "Birgit KLEIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Birgit KLEIN" + }, + "dc:identifier": "SDN:R40::PI0018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0244/", + "pav:authoredOn": "2025-10-08 10:58:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0244/1/" + }, + "dce:identifier": "SDN:R40::PI0244", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0244", + "skos:altLabel": "BaekJo KIM", + "dc:date": "2025-10-08 10:58:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "BaekJo KIM" + }, + "dc:identifier": "SDN:R40::PI0244", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0048/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0048/1/" + }, + "dce:identifier": "SDN:R40::PI0048", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0048", + "skos:altLabel": "Diarmuid O'CONCHUBHAIR", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Diarmuid O'CONCHUBHAIR" + }, + "dc:identifier": "SDN:R40::PI0048", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0003/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0003/1/" + }, + "dce:identifier": "SDN:R40::PI0003", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0003", + "skos:altLabel": "Akira KUWANO-YOSHIDA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Akira KUWANO-YOSHIDA" + }, + "dc:identifier": "SDN:R40::PI0003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0266/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0266/1/" + }, + "dce:identifier": "SDN:R40::PI0266", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0266", + "skos:altLabel": "Louis MARIE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Louis MARIE" + }, + "dc:identifier": "SDN:R40::PI0266", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0027/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0027/1/" + }, + "dce:identifier": "SDN:R40::PI0027", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0027", + "skos:altLabel": "Catherine WOODY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Catherine WOODY" + }, + "dc:identifier": "SDN:R40::PI0027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0097/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0097/1/" + }, + "dce:identifier": "SDN:R40::PI0097", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0097", + "skos:altLabel": "Jianping XU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jianping XU" + }, + "dc:identifier": "SDN:R40::PI0097", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0111/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0111/1/" + }, + "dce:identifier": "SDN:R40::PI0111", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0111", + "skos:altLabel": "KiRyong KANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "KiRyong KANG" + }, + "dc:identifier": "SDN:R40::PI0111", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0058/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0058/1/" + }, + "dce:identifier": "SDN:R40::PI0058", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0058", + "skos:altLabel": "Fabien ROQUET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fabien ROQUET" + }, + "dc:identifier": "SDN:R40::PI0058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0142/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0142/1/" + }, + "dce:identifier": "SDN:R40::PI0142", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0142", + "skos:altLabel": "Oliver ZIELINSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Oliver ZIELINSKI" + }, + "dc:identifier": "SDN:R40::PI0142", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0168/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0168/1/" + }, + "dce:identifier": "SDN:R40::PI0168", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0168", + "skos:altLabel": "Sarah PURKEY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sarah PURKEY" + }, + "dc:identifier": "SDN:R40::PI0168", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0114/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0114/1/" + }, + "dce:identifier": "SDN:R40::PI0114", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0114", + "skos:altLabel": "Koichi ISHIKAWA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Koichi ISHIKAWA" + }, + "dc:identifier": "SDN:R40::PI0114", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0077/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0077/1/" + }, + "dce:identifier": "SDN:R40::PI0077", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0077", + "skos:altLabel": "Heather FUREY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Heather FUREY" + }, + "dc:identifier": "SDN:R40::PI0077", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0250/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0250/1/" + }, + "dce:identifier": "SDN:R40::PI0250", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0250", + "skos:altLabel": "Bieito FERNANDEZ CASTRO", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bieito FERNANDEZ CASTRO" + }, + "dc:identifier": "SDN:R40::PI0250", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0021/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0021/1/" + }, + "dce:identifier": "SDN:R40::PI0021", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0021", + "skos:altLabel": "Boris DEWITTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Boris DEWITTE" + }, + "dc:identifier": "SDN:R40::PI0021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0187/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0187/1/" + }, + "dce:identifier": "SDN:R40::PI0187", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0187", + "skos:altLabel": "Sung-Dae KIM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sung-Dae KIM" + }, + "dc:identifier": "SDN:R40::PI0187", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0272/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0272/1/" + }, + "dce:identifier": "SDN:R40::PI0272", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0272", + "skos:altLabel": "Natalia SHEPEL", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Natalia SHEPEL" + }, + "dc:identifier": "SDN:R40::PI0272", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0039/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0039/1/" + }, + "dce:identifier": "SDN:R40::PI0039", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0039", + "skos:altLabel": "Daigo YANAGIMOTO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Daigo YANAGIMOTO" + }, + "dc:identifier": "SDN:R40::PI0039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0212/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0212/1/" + }, + "dce:identifier": "SDN:R40::PI0212", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0212", + "skos:altLabel": "Wilmar VAN DER ZWET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Wilmar VAN DER ZWET" + }, + "dc:identifier": "SDN:R40::PI0212", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0217/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0217/1/" + }, + "dce:identifier": "SDN:R40::PI0217", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0217", + "skos:altLabel": "Yanfeng WANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yanfeng WANG" + }, + "dc:identifier": "SDN:R40::PI0217", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0175/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0175/1/" + }, + "dce:identifier": "SDN:R40::PI0175", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0175", + "skos:altLabel": "Sheena FENNELL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sheena FENNELL" + }, + "dc:identifier": "SDN:R40::PI0175", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0062/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0062/1/" + }, + "dce:identifier": "SDN:R40::PI0062", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0062", + "skos:altLabel": "Feng ZHOU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Feng ZHOU" + }, + "dc:identifier": "SDN:R40::PI0062", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0231/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0231/1/" + }, + "dce:identifier": "SDN:R40::PI0231", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0231", + "skos:altLabel": "Francisco DOS SANTOS", + "dc:date": "2024-04-25 11:42:03.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Francisco DOS SANTOS" + }, + "dc:identifier": "SDN:R40::PI0231", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0197/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0197/1/" + }, + "dce:identifier": "SDN:R40::PI0197", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0197", + "skos:altLabel": "Thomas PEACOCK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thomas PEACOCK" + }, + "dc:identifier": "SDN:R40::PI0197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0253/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0253/1/" + }, + "dce:identifier": "SDN:R40::PI0253", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0253", + "skos:altLabel": "Celine HEUZE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Celine HEUZE" + }, + "dc:identifier": "SDN:R40::PI0253", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0093/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0093/1/" + }, + "dce:identifier": "SDN:R40::PI0093", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0093", + "skos:altLabel": "Jens MEINCKE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jens MEINCKE" + }, + "dc:identifier": "SDN:R40::PI0093", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0276/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0276/1/" + }, + "dce:identifier": "SDN:R40::PI0276", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0276", + "skos:altLabel": "Povl ABRAHAMSEN", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Povl ABRAHAMSEN" + }, + "dc:identifier": "SDN:R40::PI0276", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0047/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0047/1/" + }, + "dce:identifier": "SDN:R40::PI0047", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0047", + "skos:altLabel": "Detlef QUADFASEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Detlef QUADFASEL" + }, + "dc:identifier": "SDN:R40::PI0047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0284/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0284/1/" + }, + "dce:identifier": "SDN:R40::PI0284", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0284", + "skos:altLabel": "Vincent TAILLANDIER", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Vincent TAILLANDIER" + }, + "dc:identifier": "SDN:R40::PI0284", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0066/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0066/1/" + }, + "dce:identifier": "SDN:R40::PI0066", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0066", + "skos:altLabel": "Fraser DAVIDSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fraser DAVIDSON" + }, + "dc:identifier": "SDN:R40::PI0066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0007/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0007/1/" + }, + "dce:identifier": "SDN:R40::PI0007", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0007", + "skos:altLabel": "Andrea FASSBENDER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andrea FASSBENDER" + }, + "dc:identifier": "SDN:R40::PI0007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0257/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0257/1/" + }, + "dce:identifier": "SDN:R40::PI0257", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0257", + "skos:altLabel": "Fiona CARSE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fiona CARSE" + }, + "dc:identifier": "SDN:R40::PI0257", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0076/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0076/1/" + }, + "dce:identifier": "SDN:R40::PI0076", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0076", + "skos:altLabel": "Guoping GAO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Guoping GAO" + }, + "dc:identifier": "SDN:R40::PI0076", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0171/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0171/1/" + }, + "dce:identifier": "SDN:R40::PI0171", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0171", + "skos:altLabel": "Satoshi MITARAI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Satoshi MITARAI" + }, + "dc:identifier": "SDN:R40::PI0171", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0221/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0221/1/" + }, + "dce:identifier": "SDN:R40::PI0221", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0221", + "skos:altLabel": "Young-Hwa KIM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Young-Hwa KIM" + }, + "dc:identifier": "SDN:R40::PI0221", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0118/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0118/1/" + }, + "dce:identifier": "SDN:R40::PI0118", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0118", + "skos:altLabel": "Laurent COPPOLA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laurent COPPOLA" + }, + "dc:identifier": "SDN:R40::PI0118", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0184/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0184/1/" + }, + "dce:identifier": "SDN:R40::PI0184", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0184", + "skos:altLabel": "Stephen RISER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephen RISER" + }, + "dc:identifier": "SDN:R40::PI0184", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0220/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0220/1/" + }, + "dce:identifier": "SDN:R40::PI0220", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0220", + "skos:altLabel": "Yonghua CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yonghua CHEN" + }, + "dc:identifier": "SDN:R40::PI0220", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0267/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0267/1/" + }, + "dce:identifier": "SDN:R40::PI0267", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0267", + "skos:altLabel": "Louis PRIEUR", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Louis PRIEUR" + }, + "dc:identifier": "SDN:R40::PI0267", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0060/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0060/1/" + }, + "dce:identifier": "SDN:R40::PI0060", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0060", + "skos:altLabel": "Fei CHAI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fei CHAI" + }, + "dc:identifier": "SDN:R40::PI0060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0228/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0228/1/" + }, + "dce:identifier": "SDN:R40::PI0228", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0228", + "skos:altLabel": "Zenghong LIU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Zenghong LIU" + }, + "dc:identifier": "SDN:R40::PI0228", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0167/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0167/1/" + }, + "dce:identifier": "SDN:R40::PI0167", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0167", + "skos:altLabel": "Sang-Boom RYOO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sang-Boom RYOO" + }, + "dc:identifier": "SDN:R40::PI0167", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0098/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0098/1/" + }, + "dce:identifier": "SDN:R40::PI0098", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0098", + "skos:altLabel": "Jianqing ZHOU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jianqing ZHOU" + }, + "dc:identifier": "SDN:R40::PI0098", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0216/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0216/1/" + }, + "dce:identifier": "SDN:R40::PI0216", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0216", + "skos:altLabel": "Xu JIANPING", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xu JIANPING" + }, + "dc:identifier": "SDN:R40::PI0216", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0127/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0127/1/" + }, + "dce:identifier": "SDN:R40::PI0127", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0127", + "skos:altLabel": "Mauricio M MATA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mauricio M MATA" + }, + "dc:identifier": "SDN:R40::PI0127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/2/" + }, + "dce:identifier": "SDN:R40::PI0103", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0103", + "skos:altLabel": "Josep Lluis PELEGRI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Josep Lluis PELEGRI" + }, + "dc:identifier": "SDN:R40::PI0103", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0238/", + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0238/1/" + }, + "dce:identifier": "SDN:R40::PI0238", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0238", + "skos:altLabel": "Craig STEVENS", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Craig STEVENS" + }, + "dc:identifier": "SDN:R40::PI0238", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0149/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0149/1/" + }, + "dce:identifier": "SDN:R40::PI0149", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0149", + "skos:altLabel": "Peter LAZAREVICH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter LAZAREVICH" + }, + "dc:identifier": "SDN:R40::PI0149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0150/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0150/1/" + }, + "dce:identifier": "SDN:R40::PI0150", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0150", + "skos:altLabel": "Peter OKE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter OKE" + }, + "dc:identifier": "SDN:R40::PI0150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0136/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0136/1/" + }, + "dce:identifier": "SDN:R40::PI0136", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0136", + "skos:altLabel": "Nicholas P FOUKAL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nicholas P FOUKAL" + }, + "dc:identifier": "SDN:R40::PI0136", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0203/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0203/1/" + }, + "dce:identifier": "SDN:R40::PI0203", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0203", + "skos:altLabel": "Turki ALRADDADI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Turki ALRADDADI" + }, + "dc:identifier": "SDN:R40::PI0203", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0281/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0281/1/" + }, + "dce:identifier": "SDN:R40::PI0281", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0281", + "skos:altLabel": "Sophie CASITAS", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sophie CASITAS" + }, + "dc:identifier": "SDN:R40::PI0281", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0050/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0050/1/" + }, + "dce:identifier": "SDN:R40::PI0050", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0050", + "skos:altLabel": "Dongliang YUAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dongliang YUAN" + }, + "dc:identifier": "SDN:R40::PI0050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0218/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0218/1/" + }, + "dce:identifier": "SDN:R40::PI0218", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0218", + "skos:altLabel": "Yoichi TANIMOTO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yoichi TANIMOTO" + }, + "dc:identifier": "SDN:R40::PI0218", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0015/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0015/1/" + }, + "dce:identifier": "SDN:R40::PI0015", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0015", + "skos:altLabel": "Bernard BOURLES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bernard BOURLES" + }, + "dc:identifier": "SDN:R40::PI0015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0275/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0275/1/" + }, + "dce:identifier": "SDN:R40::PI0275", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0275", + "skos:altLabel": "Pierre DUTRIEUX", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pierre DUTRIEUX" + }, + "dc:identifier": "SDN:R40::PI0275", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0146/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0146/1/" + }, + "dce:identifier": "SDN:R40::PI0146", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0146", + "skos:altLabel": "Pelle E ROBBINS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pelle E ROBBINS" + }, + "dc:identifier": "SDN:R40::PI0146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0129/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0129/1/" + }, + "dce:identifier": "SDN:R40::PI0129", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0129", + "skos:altLabel": "Miguel SANTOS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Miguel SANTOS" + }, + "dc:identifier": "SDN:R40::PI0129", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0180/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0180/1/" + }, + "dce:identifier": "SDN:R40::PI0180", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0180", + "skos:altLabel": "Stephane BLAIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephane BLAIN" + }, + "dc:identifier": "SDN:R40::PI0180", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0262/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0262/1/" + }, + "dce:identifier": "SDN:R40::PI0262", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0262", + "skos:altLabel": "Jorgen BENDTSEN", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jorgen BENDTSEN" + }, + "dc:identifier": "SDN:R40::PI0262", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0200/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0200/1/" + }, + "dce:identifier": "SDN:R40::PI0200", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0200", + "skos:altLabel": "Tom TRULL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tom TRULL" + }, + "dc:identifier": "SDN:R40::PI0200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/1/" + }, + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/2/" + }, + "dce:identifier": "SDN:R40::PI0183", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0183", + "skos:altLabel": "Steve RINTOUL", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Steve RINTOUL" + }, + "dc:identifier": "SDN:R40::PI0183", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0241/", + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0241/1/" + }, + "dce:identifier": "SDN:R40::PI0241", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0241", + "skos:altLabel": "Felicity MCCORMACK", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Felicity MCCORMACK" + }, + "dc:identifier": "SDN:R40::PI0241", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0282/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0282/1/" + }, + "dce:identifier": "SDN:R40::PI0282", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0282", + "skos:altLabel": "Stephane RAYNAUD", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephane RAYNAUD" + }, + "dc:identifier": "SDN:R40::PI0282", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0186/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0186/1/" + }, + "dce:identifier": "SDN:R40::PI0186", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0186", + "skos:altLabel": "Steven JAYNE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Steven JAYNE" + }, + "dc:identifier": "SDN:R40::PI0186", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0224/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0224/1/" + }, + "dce:identifier": "SDN:R40::PI0224", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0224", + "skos:altLabel": "Yugo SHIMIZU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yugo SHIMIZU" + }, + "dc:identifier": "SDN:R40::PI0224", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0268/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0268/1/" + }, + "dce:identifier": "SDN:R40::PI0268", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0268", + "skos:altLabel": "Malika KHEIREDDINE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Malika KHEIREDDINE" + }, + "dc:identifier": "SDN:R40::PI0268", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0110/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0110/1/" + }, + "dce:identifier": "SDN:R40::PI0110", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0110", + "skos:altLabel": "Kensuke TAKEUCHI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Kensuke TAKEUCHI" + }, + "dc:identifier": "SDN:R40::PI0110", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0137/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0137/1/" + }, + "dce:identifier": "SDN:R40::PI0137", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0137", + "skos:altLabel": "Nick HARDMAN-MOUNTFORD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nick HARDMAN-MOUNTFORD" + }, + "dc:identifier": "SDN:R40::PI0137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0265/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0265/1/" + }, + "dce:identifier": "SDN:R40::PI0265", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0265", + "skos:altLabel": "Laurent MEMERY", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laurent MEMERY" + }, + "dc:identifier": "SDN:R40::PI0265", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0189/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0189/1/" + }, + "dce:identifier": "SDN:R40::PI0189", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0189", + "skos:altLabel": "Susan WIJFFELS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Susan WIJFFELS" + }, + "dc:identifier": "SDN:R40::PI0189", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0031/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0031/1/" + }, + "dce:identifier": "SDN:R40::PI0031", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0031", + "skos:altLabel": "Christine COATANOAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christine COATANOAN" + }, + "dc:identifier": "SDN:R40::PI0031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0178/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0178/1/" + }, + "dce:identifier": "SDN:R40::PI0178", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0178", + "skos:altLabel": "Sophie CRAVATTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sophie CRAVATTE" + }, + "dc:identifier": "SDN:R40::PI0178", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0080/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0080/1/" + }, + "dce:identifier": "SDN:R40::PI0080", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0080", + "skos:altLabel": "Herve CLAUSTRE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Herve CLAUSTRE" + }, + "dc:identifier": "SDN:R40::PI0080", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0113/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0113/1/" + }, + "dce:identifier": "SDN:R40::PI0113", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0113", + "skos:altLabel": "Klaus-Peter KOLTERMANN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Klaus-Peter KOLTERMANN" + }, + "dc:identifier": "SDN:R40::PI0113", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0022/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0022/1/" + }, + "dce:identifier": "SDN:R40::PI0022", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0022", + "skos:altLabel": "Breck OWENS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Breck OWENS" + }, + "dc:identifier": "SDN:R40::PI0022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0034/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0034/1/" + }, + "dce:identifier": "SDN:R40::PI0034", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0034", + "skos:altLabel": "Christophe MAES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christophe MAES" + }, + "dc:identifier": "SDN:R40::PI0034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0063/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0063/1/" + }, + "dce:identifier": "SDN:R40::PI0063", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0063", + "skos:altLabel": "Fengying JI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fengying JI" + }, + "dc:identifier": "SDN:R40::PI0063", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0116/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0116/1/" + }, + "dce:identifier": "SDN:R40::PI0116", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0116", + "skos:altLabel": "Lars STEMMANN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Lars STEMMANN" + }, + "dc:identifier": "SDN:R40::PI0116", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0232/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0232/1/" + }, + "dce:identifier": "SDN:R40::PI0232", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0232", + "skos:altLabel": "Markus JANOUT", + "dc:date": "2024-04-25 11:42:03.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Markus JANOUT" + }, + "dc:identifier": "SDN:R40::PI0232", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0119/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0119/1/" + }, + "dce:identifier": "SDN:R40::PI0119", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0119", + "skos:altLabel": "Lili ZENG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Lili ZENG" + }, + "dc:identifier": "SDN:R40::PI0119", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0273/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0273/1/" + }, + "dce:identifier": "SDN:R40::PI0273", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0273", + "skos:altLabel": "Nathan BRIGGS", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nathan BRIGGS" + }, + "dc:identifier": "SDN:R40::PI0273", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0230/", + "pav:authoredOn": "2023-07-31 13:30:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0230/1/" + }, + "dce:identifier": "SDN:R40::PI0230", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0230", + "skos:altLabel": "Colin STEDMON", + "dc:date": "2023-07-31 13:30:31.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Colin STEDMON" + }, + "dc:identifier": "SDN:R40::PI0230", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0215/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0215/1/" + }, + "dce:identifier": "SDN:R40::PI0215", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0215", + "skos:altLabel": "Xavier CARTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xavier CARTON" + }, + "dc:identifier": "SDN:R40::PI0215", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0151/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0151/1/" + }, + "dce:identifier": "SDN:R40::PI0151", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0151", + "skos:altLabel": "Peter THOMPSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter THOMPSON" + }, + "dc:identifier": "SDN:R40::PI0151", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0030/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0030/1/" + }, + "dce:identifier": "SDN:R40::PI0030", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0030", + "skos:altLabel": "Chris BULL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Chris BULL" + }, + "dc:identifier": "SDN:R40::PI0030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0256/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0256/1/" + }, + "dce:identifier": "SDN:R40::PI0256", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0256", + "skos:altLabel": "Enrico ZAMBIANCHI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Enrico ZAMBIANCHI" + }, + "dc:identifier": "SDN:R40::PI0256", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0233/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0233/1/" + }, + "dce:identifier": "SDN:R40::PI0233", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0233", + "skos:altLabel": "Meike MARTINS", + "dc:date": "2024-04-25 11:42:03.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Meike MARTINS" + }, + "dc:identifier": "SDN:R40::PI0233", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0072/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0072/1/" + }, + "dce:identifier": "SDN:R40::PI0072", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0072", + "skos:altLabel": "Giorgio DALL'OLMO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Giorgio DALL'OLMO" + }, + "dc:identifier": "SDN:R40::PI0072", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0071/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0071/1/" + }, + "dce:identifier": "SDN:R40::PI0071", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0071", + "skos:altLabel": "Gilles REVERDIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gilles REVERDIN" + }, + "dc:identifier": "SDN:R40::PI0071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0154/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0154/1/" + }, + "dce:identifier": "SDN:R40::PI0154", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0154", + "skos:altLabel": "Pierre-Marie POULAIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pierre-Marie POULAIN" + }, + "dc:identifier": "SDN:R40::PI0154", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0100/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0100/1/" + }, + "dce:identifier": "SDN:R40::PI0100", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0100", + "skos:altLabel": "Jon TURTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jon TURTON" + }, + "dc:identifier": "SDN:R40::PI0100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0236/", + "pav:authoredOn": "2024-11-11 09:32:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0236/1/" + }, + "dce:identifier": "SDN:R40::PI0236", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0236", + "skos:altLabel": "Johan SODERQVIST", + "dc:date": "2024-11-11 09:32:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Johan SODERQVIST" + }, + "dc:identifier": "SDN:R40::PI0236", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0075/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0075/1/" + }, + "dce:identifier": "SDN:R40::PI0075", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0075", + "skos:altLabel": "Guillaume MAZE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Guillaume MAZE" + }, + "dc:identifier": "SDN:R40::PI0075", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0013/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0013/1/" + }, + "dce:identifier": "SDN:R40::PI0013", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0013", + "skos:altLabel": "Ariel TROISI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ariel TROISI" + }, + "dc:identifier": "SDN:R40::PI0013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0141/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0141/1/" + }, + "dce:identifier": "SDN:R40::PI0141", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0141", + "skos:altLabel": "Olaf KLATT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Olaf KLATT" + }, + "dc:identifier": "SDN:R40::PI0141", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0157/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0157/1/" + }, + "dce:identifier": "SDN:R40::PI0157", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0157", + "skos:altLabel": "Renske GELDERLOOS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Renske GELDERLOOS" + }, + "dc:identifier": "SDN:R40::PI0157", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0054/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0054/1/" + }, + "dce:identifier": "SDN:R40::PI0054", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0054", + "skos:altLabel": "Emil STANEV", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emil STANEV" + }, + "dc:identifier": "SDN:R40::PI0054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/2/" + }, + "dce:identifier": "SDN:R40::PI0199", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0199", + "skos:altLabel": "Tobias RAMALHO DOS SANTOS FERREIRA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Tobias RAMALHO DOS SANTOS FERREIRA" + }, + "dc:identifier": "SDN:R40::PI0199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0239/", + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0239/1/" + }, + "dce:identifier": "SDN:R40::PI0239", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0239", + "skos:altLabel": "Denise FERNANDEZ", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Denise FERNANDEZ" + }, + "dc:identifier": "SDN:R40::PI0239", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0095/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0095/1/" + }, + "dce:identifier": "SDN:R40::PI0095", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0095", + "skos:altLabel": "Jerome VIALARD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jerome VIALARD" + }, + "dc:identifier": "SDN:R40::PI0095", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0002/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0002/1/" + }, + "dce:identifier": "SDN:R40::PI0002", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0002", + "skos:altLabel": "Akira KUSAKA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Akira KUSAKA" + }, + "dc:identifier": "SDN:R40::PI0002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0037/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0037/1/" + }, + "dce:identifier": "SDN:R40::PI0037", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0037", + "skos:altLabel": "Conall O'MALLEY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conall O'MALLEY" + }, + "dc:identifier": "SDN:R40::PI0037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0271/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0271/1/" + }, + "dce:identifier": "SDN:R40::PI0271", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0271", + "skos:altLabel": "Natalia D'AVILA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Natalia D'AVILA" + }, + "dc:identifier": "SDN:R40::PI0271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0078/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0078/1/" + }, + "dce:identifier": "SDN:R40::PI0078", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0078", + "skos:altLabel": "Helen PHILLIPS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Helen PHILLIPS" + }, + "dc:identifier": "SDN:R40::PI0078", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0005/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0005/1/" + }, + "dce:identifier": "SDN:R40::PI0005", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0005", + "skos:altLabel": "Alban LAZAR", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Alban LAZAR" + }, + "dc:identifier": "SDN:R40::PI0005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0192/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0192/1/" + }, + "dce:identifier": "SDN:R40::PI0192", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0192", + "skos:altLabel": "Takuya HASEGAWA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Takuya HASEGAWA" + }, + "dc:identifier": "SDN:R40::PI0192", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0274/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0274/1/" + }, + "dce:identifier": "SDN:R40::PI0274", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0274", + "skos:altLabel": "Nicolas KOLODZIEJCZIK", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nicolas KOLODZIEJCZIK" + }, + "dc:identifier": "SDN:R40::PI0274", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0247/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0247/1/" + }, + "dce:identifier": "SDN:R40::PI0247", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0247", + "skos:altLabel": "Andrea DOGLIOLI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andrea DOGLIOLI" + }, + "dc:identifier": "SDN:R40::PI0247", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0008/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0008/1/" + }, + "dce:identifier": "SDN:R40::PI0008", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0008", + "skos:altLabel": "Andreas STERL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andreas STERL" + }, + "dc:identifier": "SDN:R40::PI0008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0195/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0195/1/" + }, + "dce:identifier": "SDN:R40::PI0195", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0195", + "skos:altLabel": "Thierry DELCROIX", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thierry DELCROIX" + }, + "dc:identifier": "SDN:R40::PI0195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0190/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0190/1/" + }, + "dce:identifier": "SDN:R40::PI0190", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0190", + "skos:altLabel": "Sven PETERSEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sven PETERSEN" + }, + "dc:identifier": "SDN:R40::PI0190", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0277/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0277/1/" + }, + "dce:identifier": "SDN:R40::PI0277", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0277", + "skos:altLabel": "Rainer KIKO", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Rainer KIKO" + }, + "dc:identifier": "SDN:R40::PI0277", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0004/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0004/1/" + }, + "dce:identifier": "SDN:R40::PI0004", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0004", + "skos:altLabel": "Alain SERPETTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Alain SERPETTE" + }, + "dc:identifier": "SDN:R40::PI0004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0132/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0132/1/" + }, + "dce:identifier": "SDN:R40::PI0132", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0132", + "skos:altLabel": "Mohomudally BEEBEEJAUN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mohomudally BEEBEEJAUN" + }, + "dc:identifier": "SDN:R40::PI0132", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0198/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0198/1/" + }, + "dce:identifier": "SDN:R40::PI0198", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0198", + "skos:altLabel": "Tmel OGUZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tmel OGUZ" + }, + "dc:identifier": "SDN:R40::PI0198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0045/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0045/1/" + }, + "dce:identifier": "SDN:R40::PI0045", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0045", + "skos:altLabel": "Dean ROEMMICH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dean ROEMMICH" + }, + "dc:identifier": "SDN:R40::PI0045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0040/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0040/1/" + }, + "dce:identifier": "SDN:R40::PI0040", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0040", + "skos:altLabel": "Dake CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dake CHEN" + }, + "dc:identifier": "SDN:R40::PI0040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0173/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0173/1/" + }, + "dce:identifier": "SDN:R40::PI0173", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0173", + "skos:altLabel": "Serguey GLADYSHEV", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Serguey GLADYSHEV" + }, + "dc:identifier": "SDN:R40::PI0173", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/2/" + }, + "dce:identifier": "SDN:R40::PI0122", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0122", + "skos:altLabel": "Luis Felipe SILVA SANTOS", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Luis Felipe SILVA SANTOS" + }, + "dc:identifier": "SDN:R40::PI0122", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0086/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0086/1/" + }, + "dce:identifier": "SDN:R40::PI0086", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0086", + "skos:altLabel": "Inmaculada RUIZ-PARRADO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Inmaculada RUIZ-PARRADO" + }, + "dc:identifier": "SDN:R40::PI0086", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0115/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0115/1/" + }, + "dce:identifier": "SDN:R40::PI0115", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0115", + "skos:altLabel": "Koppillil RADHAKRISHNAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Koppillil RADHAKRISHNAN" + }, + "dc:identifier": "SDN:R40::PI0115", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0204/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0204/1/" + }, + "dce:identifier": "SDN:R40::PI0204", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0204", + "skos:altLabel": "Vincent DUTREUIL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Vincent DUTREUIL" + }, + "dc:identifier": "SDN:R40::PI0204", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0043/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0043/1/" + }, + "dce:identifier": "SDN:R40::PI0043", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0043", + "skos:altLabel": "Daniel BALLESTERO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Daniel BALLESTERO" + }, + "dc:identifier": "SDN:R40::PI0043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0028/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0028/1/" + }, + "dce:identifier": "SDN:R40::PI0028", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0028", + "skos:altLabel": "Cecile CABANES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Cecile CABANES" + }, + "dc:identifier": "SDN:R40::PI0028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0156/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0156/1/" + }, + "dce:identifier": "SDN:R40::PI0156", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0156", + "skos:altLabel": "Rena CZESCHEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Rena CZESCHEL" + }, + "dc:identifier": "SDN:R40::PI0156", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0125/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0125/1/" + }, + "dce:identifier": "SDN:R40::PI0125", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0125", + "skos:altLabel": "Marek STAWARZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Marek STAWARZ" + }, + "dc:identifier": "SDN:R40::PI0125", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0069/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0069/1/" + }, + "dce:identifier": "SDN:R40::PI0069", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0069", + "skos:altLabel": "Gerasimos KORRES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gerasimos KORRES" + }, + "dc:identifier": "SDN:R40::PI0069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0207/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0207/1/" + }, + "dce:identifier": "SDN:R40::PI0207", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0207", + "skos:altLabel": "Virginie THIERRY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Virginie THIERRY" + }, + "dc:identifier": "SDN:R40::PI0207", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0046/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0046/1/" + }, + "dce:identifier": "SDN:R40::PI0046", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0046", + "skos:altLabel": "Denis GILBERT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Denis GILBERT" + }, + "dc:identifier": "SDN:R40::PI0046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0128/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0128/1/" + }, + "dce:identifier": "SDN:R40::PI0128", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0128", + "skos:altLabel": "Michel ARHAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Michel ARHAN" + }, + "dc:identifier": "SDN:R40::PI0128", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/2/" + }, + "dce:identifier": "SDN:R40::PI0145", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0145", + "skos:altLabel": "Pedro VELEZ", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Pedro VELEZ" + }, + "dc:identifier": "SDN:R40::PI0145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pedro VELEZ-BELCHI" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0049/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0049/1/" + }, + "dce:identifier": "SDN:R40::PI0049", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0049", + "skos:altLabel": "Dimitris KASSIS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dimitris KASSIS" + }, + "dc:identifier": "SDN:R40::PI0049", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0181/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0181/1/" + }, + "dce:identifier": "SDN:R40::PI0181", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0181", + "skos:altLabel": "Stephanie CORREARD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephanie CORREARD" + }, + "dc:identifier": "SDN:R40::PI0181", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0160/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0160/1/" + }, + "dce:identifier": "SDN:R40::PI0160", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0160", + "skos:altLabel": "Robert S PICKART", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Robert S PICKART" + }, + "dc:identifier": "SDN:R40::PI0160", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0210/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0210/1/" + }, + "dce:identifier": "SDN:R40::PI0210", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0210", + "skos:altLabel": "Wei FAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Wei FAN" + }, + "dc:identifier": "SDN:R40::PI0210", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0123/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0123/1/" + }, + "dce:identifier": "SDN:R40::PI0123", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0123", + "skos:altLabel": "M RAVICHANDRAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "M RAVICHANDRAN" + }, + "dc:identifier": "SDN:R40::PI0123", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0081/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0081/1/" + }, + "dce:identifier": "SDN:R40::PI0081", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0081", + "skos:altLabel": "Hiroyuki YAMADA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hiroyuki YAMADA" + }, + "dc:identifier": "SDN:R40::PI0081", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0251/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0251/1/" + }, + "dce:identifier": "SDN:R40::PI0251", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0251", + "skos:altLabel": "Camille LIQUE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Camille LIQUE" + }, + "dc:identifier": "SDN:R40::PI0251", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0164/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0164/1/" + }, + "dce:identifier": "SDN:R40::PI0164", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0164", + "skos:altLabel": "Russ DAVIS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Russ DAVIS" + }, + "dc:identifier": "SDN:R40::PI0164", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0163/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0163/1/" + }, + "dce:identifier": "SDN:R40::PI0163", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0163", + "skos:altLabel": "Rosemary MORROW", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Rosemary MORROW" + }, + "dc:identifier": "SDN:R40::PI0163", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0106/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0106/1/" + }, + "dce:identifier": "SDN:R40::PI0106", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0106", + "skos:altLabel": "Julia UITZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Julia UITZ" + }, + "dc:identifier": "SDN:R40::PI0106", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0084/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0084/1/" + }, + "dce:identifier": "SDN:R40::PI0084", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0084", + "skos:altLabel": "Hubert LOISEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hubert LOISEL" + }, + "dc:identifier": "SDN:R40::PI0084", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0245/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0245/1/" + }, + "dce:identifier": "SDN:R40::PI0245", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0245", + "skos:altLabel": "Alexandre GUERRA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Alexandre GUERRA" + }, + "dc:identifier": "SDN:R40::PI0245", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0234/", + "pav:authoredOn": "2024-11-11 09:32:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0234/1/" + }, + "dce:identifier": "SDN:R40::PI0234", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0234", + "skos:altLabel": "Marius ARTHUN", + "dc:date": "2024-11-11 09:32:24.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Marius ARTHUN" + }, + "dc:identifier": "SDN:R40::PI0234", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0019/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0019/1/" + }, + "dce:identifier": "SDN:R40::PI0019", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0019", + "skos:altLabel": "Blair GREENAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Blair GREENAN" + }, + "dc:identifier": "SDN:R40::PI0019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0166/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0166/1/" + }, + "dce:identifier": "SDN:R40::PI0166", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0166", + "skos:altLabel": "Sabrina SPEICH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sabrina SPEICH" + }, + "dc:identifier": "SDN:R40::PI0166", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0147/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0147/1/" + }, + "dce:identifier": "SDN:R40::PI0147", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0147", + "skos:altLabel": "Peter BRANDT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter BRANDT" + }, + "dc:identifier": "SDN:R40::PI0147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0248/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0248/1/" + }, + "dce:identifier": "SDN:R40::PI0248", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0248", + "skos:altLabel": "Andri RAMDHANI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andri RAMDHANI" + }, + "dc:identifier": "SDN:R40::PI0248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/1/" + }, + "pav:authoredOn": "2024-04-25 11:42:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/2/" + }, + "dce:identifier": "SDN:R40::PI0087", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0087", + "skos:altLabel": "Isabelle TAUPIER-LETAGE", + "dc:date": "2024-04-25 11:42:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Isabelle TAUPIER-LETAGE" + }, + "dc:identifier": "SDN:R40::PI0087", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0188/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0188/1/" + }, + "dce:identifier": "SDN:R40::PI0188", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0188", + "skos:altLabel": "Sunke SCHMIDTKO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sunke SCHMIDTKO" + }, + "dc:identifier": "SDN:R40::PI0188", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0090/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0090/1/" + }, + "dce:identifier": "SDN:R40::PI0090", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0090", + "skos:altLabel": "Jang-Won SEO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jang-Won SEO" + }, + "dc:identifier": "SDN:R40::PI0090", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0169/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0169/1/" + }, + "dce:identifier": "SDN:R40::PI0169", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0169", + "skos:altLabel": "Sato NAOKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sato NAOKI" + }, + "dc:identifier": "SDN:R40::PI0169", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0011/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0011/1/" + }, + "dce:identifier": "SDN:R40::PI0011", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0011", + "skos:altLabel": "Antje BOETIUS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Antje BOETIUS" + }, + "dc:identifier": "SDN:R40::PI0011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0280/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0280/1/" + }, + "dce:identifier": "SDN:R40::PI0280", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0280", + "skos:altLabel": "Simon QUINIOU", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Simon QUINIOU" + }, + "dc:identifier": "SDN:R40::PI0280", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0014/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0014/1/" + }, + "dce:identifier": "SDN:R40::PI0014", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0014", + "skos:altLabel": "Arne KORTZINGER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Arne KORTZINGER" + }, + "dc:identifier": "SDN:R40::PI0014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0201/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0201/1/" + }, + "dce:identifier": "SDN:R40::PI0201", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0201", + "skos:altLabel": "Tomowo WATANABE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tomowo WATANABE" + }, + "dc:identifier": "SDN:R40::PI0201", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0242/", + "pav:authoredOn": "2025-06-30 16:01:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0242/1/" + }, + "dce:identifier": "SDN:R40::PI0242", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0242", + "skos:altLabel": "Shigeki HOSODA", + "dc:date": "2025-06-30 16:01:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Shigeki HOSODA" + }, + "dc:identifier": "SDN:R40::PI0242", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0155/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0155/1/" + }, + "dce:identifier": "SDN:R40::PI0155", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0155", + "skos:altLabel": "Pritha TUTASI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pritha TUTASI" + }, + "dc:identifier": "SDN:R40::PI0155", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0017/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0017/1/" + }, + "dce:identifier": "SDN:R40::PI0017", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0017", + "skos:altLabel": "Bettina FACH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bettina FACH" + }, + "dc:identifier": "SDN:R40::PI0017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0283/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0283/1/" + }, + "dce:identifier": "SDN:R40::PI0283", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0283", + "skos:altLabel": "Thomas BADEWIEN", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thomas BADEWIEN" + }, + "dc:identifier": "SDN:R40::PI0283", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0286/", + "pav:authoredOn": "2026-03-16 09:14:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0286/1/" + }, + "dce:identifier": "SDN:R40::PI0286", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0286", + "skos:altLabel": "Candice HALL", + "dc:date": "2026-03-16 09:14:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Candice HALL" + }, + "dc:identifier": "SDN:R40::PI0286", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0196/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0196/1/" + }, + "dce:identifier": "SDN:R40::PI0196", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0196", + "skos:altLabel": "Thierry MOUTIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thierry MOUTIN" + }, + "dc:identifier": "SDN:R40::PI0196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0107/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0130/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0254/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0094/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0176/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0117/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0260/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0225/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0089/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0222/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0258/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0264/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0133/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0159/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0229/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0243/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0237/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0202/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0191/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0219/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0153/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0172/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0255/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0143/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0108/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0131/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0226/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0177/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0088/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0261/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0270/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0206/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0279/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0223/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0134/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0158/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0105/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0091/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0252/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0213/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0152/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0259/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0246/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0109/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0121/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0182/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0205/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0227/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0249/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0209/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0162/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0074/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0165/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0193/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0120/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0092/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0214/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0211/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0174/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0269/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0194/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0124/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0240/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0179/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0263/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0235/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0285/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0208/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0161/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0170/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0244/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0266/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0111/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0142/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0168/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0114/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0250/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0272/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0212/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0217/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0175/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0231/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0253/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0093/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0276/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0284/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0257/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0171/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0221/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0118/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0184/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0220/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0267/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0228/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0167/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0216/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0238/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0281/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0218/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0275/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0129/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0180/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0262/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0241/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0282/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0186/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0224/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0268/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0110/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0265/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0178/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0113/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0116/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0232/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0119/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0273/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0230/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0215/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0151/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0256/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0233/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0154/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0236/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0141/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0157/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0239/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0192/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0274/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0247/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0190/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0277/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0132/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0173/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0115/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0204/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0156/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0125/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0207/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0128/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0181/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0160/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0210/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0123/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0251/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0164/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0163/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0106/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0245/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0234/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0166/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0090/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0169/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0280/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0201/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0242/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0155/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0283/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0286/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Principal Investigator (PI) names in charge of Argo floats. Argo netCDF variable PI_NAME is populated by R40 altLabel.", + "dc:title": "Argo Principal Investigator (PI) names", + "skos:prefLabel": "Argo Principal Investigator (PI) names", + "owl:versionInfo": "10", + "dc:date": "2026-03-17 02:00:00.0", + "skos:altLabel": "PI_NAME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PI_NAME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/R41.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R41.jsonld new file mode 100644 index 0000000..ba79329 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/R41.jsonld @@ -0,0 +1,2468 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100037/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100037/1/" + }, + "dce:identifier": "SDN:R41::R4100037", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100037", + "skos:altLabel": "Argo JAMSTEC", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo JAMSTEC" + }, + "dc:identifier": "SDN:R41::R4100037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Japanese Argo program led by JAMSTEC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100033/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100033/1/" + }, + "dce:identifier": "SDN:R41::R4100033", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100033", + "skos:altLabel": "Argo eq. IRELAND", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. IRELAND" + }, + "dc:identifier": "SDN:R41::R4100033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program led by National University of Ireland." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100056/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100056/1/" + }, + "dce:identifier": "SDN:R41::R4100056", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100056", + "skos:altLabel": "Argo SOUTH AFRICA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SOUTH AFRICA" + }, + "dc:identifier": "SDN:R41::R4100056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "South African Argo program led by SEAON - Floats are sponsored by SAEON (South African Environmental Observations Network) and SANAP (South African National Antarctic Program)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100023/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100023/1/" + }, + "dce:identifier": "SDN:R41::R4100023", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100023", + "skos:altLabel": "Argo GABON", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo GABON" + }, + "dc:identifier": "SDN:R41::R4100023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Gabon." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100005/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100005/1/" + }, + "dce:identifier": "SDN:R41::R4100005", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100005", + "skos:altLabel": "Argo BRAZIL Navy", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo BRAZIL Navy" + }, + "dc:identifier": "SDN:R41::R4100005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from the Brazilian Navy." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100058/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100058/1/" + }, + "dce:identifier": "SDN:R41::R4100058", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100058", + "skos:altLabel": "Argo SRI LANKA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SRI LANKA" + }, + "dc:identifier": "SDN:R41::R4100058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Sri Lanka." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100059/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100059/1/" + }, + "dce:identifier": "SDN:R41::R4100059", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100059", + "skos:altLabel": "Argo SWEDEN", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SWEDEN" + }, + "dc:identifier": "SDN:R41::R4100059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Swedish Argo program led by University of Gothenburg." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100071/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100071/1/" + }, + "dce:identifier": "SDN:R41::R4100071", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100071", + "skos:altLabel": "Argo BGC CHINA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo BGC CHINA" + }, + "dc:identifier": "SDN:R41::R4100071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Chinese Argo BGC program led by CSIO." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100047/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100047/1/" + }, + "dce:identifier": "SDN:R41::R4100047", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100047", + "skos:altLabel": "Argo NETHERLANDS", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo NETHERLANDS" + }, + "dc:identifier": "SDN:R41::R4100047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Netherland Argo program led by KNMI." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100070/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100070/1/" + }, + "dce:identifier": "SDN:R41::R4100070", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100070", + "skos:altLabel": "Argo US supplemental", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo US supplemental" + }, + "dc:identifier": "SDN:R41::R4100070", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Supplementary Argo contribution from USA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100014/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100014/1/" + }, + "dce:identifier": "SDN:R41::R4100014", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100014", + "skos:altLabel": "Argo CHILE", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo CHILE" + }, + "dc:identifier": "SDN:R41::R4100014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Chile." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100066/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100066/1/" + }, + "dce:identifier": "SDN:R41::R4100066", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100066", + "skos:altLabel": "Argo WHOI", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo WHOI" + }, + "dc:identifier": "SDN:R41::R4100066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US Argo program led by Woods Hole Oceanographic Institution." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100031/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100031/1/" + }, + "dce:identifier": "SDN:R41::R4100031", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100031", + "skos:altLabel": "Argo INDONESIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo INDONESIA" + }, + "dc:identifier": "SDN:R41::R4100031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indonesian Argo program led by Institute Pertanian Bogor University." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100034/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100034/1/" + }, + "dce:identifier": "SDN:R41::R4100034", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100034", + "skos:altLabel": "Argo IRELAND", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo IRELAND" + }, + "dc:identifier": "SDN:R41::R4100034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Irish Argo program led by Marine Institute." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100028/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100028/1/" + }, + "dce:identifier": "SDN:R41::R4100028", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100028", + "skos:altLabel": "Argo ICBM", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo ICBM" + }, + "dc:identifier": "SDN:R41::R4100028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "German Argo program led by ICBM, University of Oldenburg." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100061/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100061/1/" + }, + "dce:identifier": "SDN:R41::R4100061", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100061", + "skos:altLabel": "Argo UK", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo UK" + }, + "dc:identifier": "SDN:R41::R4100061", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "UK Argo program led by NOC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100003/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100003/1/" + }, + "dce:identifier": "SDN:R41::R4100003", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100003", + "skos:altLabel": "Argo eq. AUSTRALIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. AUSTRALIA" + }, + "dc:identifier": "SDN:R41::R4100003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program led by CSIRO." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100069/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100069/1/" + }, + "dce:identifier": "SDN:R41::R4100069", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100069", + "skos:altLabel": "Argo AOML-NOAA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo AOML-NOAA" + }, + "dc:identifier": "SDN:R41::R4100069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US Argo program led by Atlantic Oceanographic and Meteorological Laboratory of NOAA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100017/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100017/1/" + }, + "dce:identifier": "SDN:R41::R4100017", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100017", + "skos:altLabel": "Argo DENMARK", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo DENMARK" + }, + "dc:identifier": "SDN:R41::R4100017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Danish Argo programme led by DTU." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100024/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100024/1/" + }, + "dce:identifier": "SDN:R41::R4100024", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100024", + "skos:altLabel": "Argo AWI", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo AWI" + }, + "dc:identifier": "SDN:R41::R4100024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "German Argo program led by AWI." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100026/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100026/1/" + }, + "dce:identifier": "SDN:R41::R4100026", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100026", + "skos:altLabel": "Argo eq. UHH", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. UHH" + }, + "dc:identifier": "SDN:R41::R4100026", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program led by IFM." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100045/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100045/1/" + }, + "dce:identifier": "SDN:R41::R4100045", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100045", + "skos:altLabel": "Argo MEXICO", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo MEXICO" + }, + "dc:identifier": "SDN:R41::R4100045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Mexican Argo program led by CICESE." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100049/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100049/1/" + }, + "dce:identifier": "SDN:R41::R4100049", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100049", + "skos:altLabel": "Argo NEW ZEALAND", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo NEW ZEALAND" + }, + "dc:identifier": "SDN:R41::R4100049", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "New-Zealand Argo program led by NIWA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100013/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100013/1/" + }, + "dce:identifier": "SDN:R41::R4100013", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100013", + "skos:altLabel": "Argo eq. CHINA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. CHINA" + }, + "dc:identifier": "SDN:R41::R4100013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program operated by China." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100067/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100067/1/" + }, + "dce:identifier": "SDN:R41::R4100067", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100067", + "skos:altLabel": "Argo UW", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo UW" + }, + "dc:identifier": "SDN:R41::R4100067", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US Argo program led by University of Washington." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100001/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100001/1/" + }, + "dce:identifier": "SDN:R41::R4100001", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100001", + "skos:altLabel": "Argo ARGENTINA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo ARGENTINA" + }, + "dc:identifier": "SDN:R41::R4100001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argentinian Argo program led by SHN and supported by WHOI." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100063/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100063/1/" + }, + "dce:identifier": "SDN:R41::R4100063", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100063", + "skos:altLabel": "Argo eq. UK", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. UK" + }, + "dc:identifier": "SDN:R41::R4100063", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program operated by UK." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100040/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100040/1/" + }, + "dce:identifier": "SDN:R41::R4100040", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100040", + "skos:altLabel": "Argo KENYA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo KENYA" + }, + "dc:identifier": "SDN:R41::R4100040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Kenya." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100002/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100002/1/" + }, + "dce:identifier": "SDN:R41::R4100002", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100002", + "skos:altLabel": "Argo AUSTRALIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo AUSTRALIA" + }, + "dc:identifier": "SDN:R41::R4100002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Australian Argo program, funded by the Commonwealth Scientific and Industrial Research Organization (CSIRO), the Bureau of Meteorology (BoM), the Antarctic Climate and Ecosystems Co-operative Research Centre, University of Tasmania, and cooperating within the Australian Integrated Marine Observing System (IMOS)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100054/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100054/1/" + }, + "dce:identifier": "SDN:R41::R4100054", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100054", + "skos:altLabel": "Argo RUSSIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo RUSSIA" + }, + "dc:identifier": "SDN:R41::R4100054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Russian Argo program led by FERHRI." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100050/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100050/1/" + }, + "dce:identifier": "SDN:R41::R4100050", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100050", + "skos:altLabel": "Argo PERU", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo PERU" + }, + "dc:identifier": "SDN:R41::R4100050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Peru." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100055/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100055/1/" + }, + "dce:identifier": "SDN:R41::R4100055", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100055", + "skos:altLabel": "Argo SAUDI ARABIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SAUDI ARABIA" + }, + "dc:identifier": "SDN:R41::R4100055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Saudi Arabian Argo program led by KAUST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100051/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100051/1/" + }, + "dce:identifier": "SDN:R41::R4100051", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100051", + "skos:altLabel": "Argo POLAND", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo POLAND" + }, + "dc:identifier": "SDN:R41::R4100051", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Polish Argo program led by IOPAN." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100060/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100060/1/" + }, + "dce:identifier": "SDN:R41::R4100060", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100060", + "skos:altLabel": "DEKOSIM", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DEKOSIM" + }, + "dc:identifier": "SDN:R41::R4100060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Turkish Argo program led by ISM-METU - DEKOSIM is an interdisciplinary research project funded by the Turkish Ministry of Development." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100015/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100015/1/" + }, + "dce:identifier": "SDN:R41::R4100015", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100015", + "skos:altLabel": "Argo COLOMBIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo COLOMBIA" + }, + "dc:identifier": "SDN:R41::R4100015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Columbia." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100043/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100043/1/" + }, + "dce:identifier": "SDN:R41::R4100043", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100043", + "skos:altLabel": "Argo LEBANON", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo LEBANON" + }, + "dc:identifier": "SDN:R41::R4100043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Lebanon." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100018/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100018/1/" + }, + "dce:identifier": "SDN:R41::R4100018", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100018", + "skos:altLabel": "Argo ECUADOR", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo ECUADOR" + }, + "dc:identifier": "SDN:R41::R4100018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ecuadorian Argo program led by INOCAR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100004/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100004/1/" + }, + "dce:identifier": "SDN:R41::R4100004", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100004", + "skos:altLabel": "Argo BRAZIL", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo BRAZIL" + }, + "dc:identifier": "SDN:R41::R4100004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Brazilian Argo program - Collaboration between FURG &." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100011/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100011/1/" + }, + "dce:identifier": "SDN:R41::R4100011", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100011", + "skos:altLabel": "Argo CHINA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo CHINA" + }, + "dc:identifier": "SDN:R41::R4100011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Chinese Argo program led by Second Institute of Oceanography." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100008/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100008/1/" + }, + "dce:identifier": "SDN:R41::R4100008", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100008", + "skos:altLabel": "Argo CANADA Dalhousie University", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo CANADA Dalhousie University" + }, + "dc:identifier": "SDN:R41::R4100008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Canadian Argo program led by Dalhousie University (Dal) and Memorial University of Argo Newfoundland (MUN)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100036/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100036/1/" + }, + "dce:identifier": "SDN:R41::R4100036", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100036", + "skos:altLabel": "ITINERIS", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ITINERIS" + }, + "dc:identifier": "SDN:R41::R4100036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Italian Argo program led by CNR and funded under the ITINERIS project." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100032/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100032/1/" + }, + "dce:identifier": "SDN:R41::R4100032", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100032", + "skos:altLabel": "Argo INDIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo INDIA" + }, + "dc:identifier": "SDN:R41::R4100032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indian Argo program led by INCOIS." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100053/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100053/1/" + }, + "dce:identifier": "SDN:R41::R4100053", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100053", + "skos:altLabel": "Argo ROMANIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo ROMANIA" + }, + "dc:identifier": "SDN:R41::R4100053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Romanian Argo program led by GEOECOMAR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100022/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100022/1/" + }, + "dce:identifier": "SDN:R41::R4100022", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100022", + "skos:altLabel": "Argo eq. FRANCE", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. FRANCE" + }, + "dc:identifier": "SDN:R41::R4100022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program operated by France.Equivalent Argo programs regroup floats contributing to Argo but that are not in the \"global implementation phase\" with respect to the Argo framework at the time of deployment." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100039/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100039/1/" + }, + "dce:identifier": "SDN:R41::R4100039", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100039", + "skos:altLabel": "Argo JMA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo JMA" + }, + "dc:identifier": "SDN:R41::R4100039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Japanese Argo program led by JMA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100007/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100007/1/" + }, + "dce:identifier": "SDN:R41::R4100007", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100007", + "skos:altLabel": "Argo CANADA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo CANADA" + }, + "dc:identifier": "SDN:R41::R4100007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Canadian Argo program led by DFO." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100041/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100041/1/" + }, + "dce:identifier": "SDN:R41::R4100041", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100041", + "skos:altLabel": "Argo KIOST", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo KIOST" + }, + "dc:identifier": "SDN:R41::R4100041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Korean Argo program led by KIOST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100025/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100025/1/" + }, + "dce:identifier": "SDN:R41::R4100025", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100025", + "skos:altLabel": "Argo BSH", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo BSH" + }, + "dc:identifier": "SDN:R41::R4100025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "German Argo program led by BSH." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100021/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100021/1/" + }, + "dce:identifier": "SDN:R41::R4100021", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100021", + "skos:altLabel": "Argo FRANCE", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo FRANCE" + }, + "dc:identifier": "SDN:R41::R4100021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "French Argo program operated by France." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100048/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100048/1/" + }, + "dce:identifier": "SDN:R41::R4100048", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100048", + "skos:altLabel": "Argo NORWAY", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo NORWAY" + }, + "dc:identifier": "SDN:R41::R4100048", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Norvegian Argo program led by IMR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100044/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100044/1/" + }, + "dce:identifier": "SDN:R41::R4100044", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100044", + "skos:altLabel": "Argo MAURITIUS", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo MAURITIUS" + }, + "dc:identifier": "SDN:R41::R4100044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Mauritius." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100029/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100029/1/" + }, + "dce:identifier": "SDN:R41::R4100029", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100029", + "skos:altLabel": "Argo IOW", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo IOW" + }, + "dc:identifier": "SDN:R41::R4100029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "German Argo program led by IOW, Rostock." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100064/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100064/1/" + }, + "dce:identifier": "SDN:R41::R4100064", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100064", + "skos:altLabel": "Argo UKRAINE", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo UKRAINE" + }, + "dc:identifier": "SDN:R41::R4100064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ukrainian Argo program led by UAC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100035/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100035/1/" + }, + "dce:identifier": "SDN:R41::R4100035", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100035", + "skos:altLabel": "Argo ITALY", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo ITALY" + }, + "dc:identifier": "SDN:R41::R4100035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Italian Argo program led by OGS and funded by CNR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100010/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100010/1/" + }, + "dce:identifier": "SDN:R41::R4100010", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100010", + "skos:altLabel": "Argo CANADA ONC", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo CANADA ONC" + }, + "dc:identifier": "SDN:R41::R4100010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Canadian Argo program led by Ocean Networks Canada (ONC)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100065/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100065/1/" + }, + "dce:identifier": "SDN:R41::R4100065", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100065", + "skos:altLabel": "Argo SIO", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SIO" + }, + "dc:identifier": "SDN:R41::R4100065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US Argo program led by Scripps Institution of Oceanography." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100042/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100042/1/" + }, + "dce:identifier": "SDN:R41::R4100042", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100042", + "skos:altLabel": "Argo NIMS/KMA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo NIMS/KMA" + }, + "dc:identifier": "SDN:R41::R4100042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Korean Argo program led by KMA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100016/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100016/1/" + }, + "dce:identifier": "SDN:R41::R4100016", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100016", + "skos:altLabel": "Argo COSTA RICA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo COSTA RICA" + }, + "dc:identifier": "SDN:R41::R4100016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Coasta Rica." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100012/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100012/1/" + }, + "pav:authoredOn": "2026-04-09 11:27:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100012/2/" + }, + "dce:identifier": "SDN:R41::R4100012", + "pav:version": "2", + "skos:notation": "SDN:R41::R4100012", + "skos:altLabel": "Argo Deep CHINA", + "dc:date": "2026-04-09 11:27:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo Deep CHINA" + }, + "dc:identifier": "SDN:R41::R4100012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep Argo program led by Laoshan Laboratory in China. It includes the developments and operations of HM4000 and Xuanwu (HM6000) deep floats." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100046/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100046/1/" + }, + "dce:identifier": "SDN:R41::R4100046", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100046", + "skos:altLabel": "Argo MOROCCO", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo MOROCCO" + }, + "dc:identifier": "SDN:R41::R4100046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Morocco." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100020/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100020/1/" + }, + "dce:identifier": "SDN:R41::R4100020", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100020", + "skos:altLabel": "Argo FINLAND", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo FINLAND" + }, + "dc:identifier": "SDN:R41::R4100020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Finish Argo program led by FMI. The aim of the programme is to study the water mass distribution and evolution in the Nordic Seas and the Arctic Ocean and their impacts on the overflow and on the North Atlantic thermohaline circulation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100009/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100009/1/" + }, + "dce:identifier": "SDN:R41::R4100009", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100009", + "skos:altLabel": "Argo eq. CANADA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. CANADA" + }, + "dc:identifier": "SDN:R41::R4100009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Canadian Argo program led by DFO." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100027/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100027/1/" + }, + "dce:identifier": "SDN:R41::R4100027", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100027", + "skos:altLabel": "Argo GEOMAR", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo GEOMAR" + }, + "dc:identifier": "SDN:R41::R4100027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "German Argo program led by Geomar, Kiel." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100052/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100052/1/" + }, + "dce:identifier": "SDN:R41::R4100052", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100052", + "skos:altLabel": "Argo PORTUGAL", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo PORTUGAL" + }, + "dc:identifier": "SDN:R41::R4100052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Portuguese Argo program led by IPMA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100057/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100057/1/" + }, + "dce:identifier": "SDN:R41::R4100057", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100057", + "skos:altLabel": "Argo SPAIN", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SPAIN" + }, + "dc:identifier": "SDN:R41::R4100057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Spanish Argo program led by IEO and operated by SOCIB." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100030/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100030/1/" + }, + "dce:identifier": "SDN:R41::R4100030", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100030", + "skos:altLabel": "Argo GREECE", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo GREECE" + }, + "dc:identifier": "SDN:R41::R4100030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Greek Argo program led by HCMR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100019/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100019/1/" + }, + "dce:identifier": "SDN:R41::R4100019", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100019", + "skos:altLabel": "Euro-Argo", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Euro-Argo" + }, + "dc:identifier": "SDN:R41::R4100019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "European Argo program led by Euro-Argo." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100038/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100038/1/" + }, + "dce:identifier": "SDN:R41::R4100038", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100038", + "skos:altLabel": "Argo JAPAN", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo JAPAN" + }, + "dc:identifier": "SDN:R41::R4100038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program for Japan" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100062/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100062/1/" + }, + "pav:authoredOn": "2026-03-20 15:44:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100062/2/" + }, + "dce:identifier": "SDN:R41::R4100062", + "pav:version": "2", + "skos:notation": "SDN:R41::R4100062", + "skos:altLabel": "Argo UK Bio", + "dc:date": "2026-03-20 15:44:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo UK Bio" + }, + "dc:identifier": "SDN:R41::R4100062", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "UK Argo BGC program led by NOC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100068/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100068/1/" + }, + "dce:identifier": "SDN:R41::R4100068", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100068", + "skos:altLabel": "Argo PMEL-NOAA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo PMEL-NOAA" + }, + "dc:identifier": "SDN:R41::R4100068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US Argo program led by Pacific Marine Environmental Laboratory of NOAA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100006/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100006/1/" + }, + "dce:identifier": "SDN:R41::R4100006", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100006", + "skos:altLabel": "Argo Bulgaria", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo BULGARIA" + }, + "dc:identifier": "SDN:R41::R4100006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bulgarian Argo program led by IO-BAS." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100068/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Argo floats managed under the same lead agency. A program is bound to one country, one or several agencies with defined roles, and has contact points with defined roles. The same agency can implement multiple programs. Some cases such as EuroArgo (European Research Infrastructure Consortium) use a multinational agency and \"Europe\" as country. Argo netCDF variable PROGRAM_NAME is populated by R41 prefLabel.", + "dc:title": "Argo program name", + "skos:prefLabel": "Argo program name", + "owl:versionInfo": "3", + "dc:date": "2026-04-10 03:00:01.0", + "skos:altLabel": "PROGRAM_NAME", + "dc:creator": "GOOS/OceanOPS Vocabulary Governance", + "dc:alternative": "PROGRAM_NAME", + "rdfs:comment": "Governance for vocabularies managed by the Global Ocean Observing System (GOOS) under OceanOPS (https://www.ocean-ops.org) and hosted on the NERC Vocabulary Server (NVS).", + "grg:RE_RegisterOwner": "GOOS/OceanOPS Vocabulary Governance", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/RD2.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/RD2.jsonld new file mode 100644 index 0000000..0782cd7 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/RD2.jsonld @@ -0,0 +1,335 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/8/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/8/1/" + }, + "dce:identifier": "SDN:RD2::8", + "pav:version": "1", + "skos:notation": "SDN:RD2::8", + "skos:altLabel": "8", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated value" + }, + "dc:identifier": "SDN:RD2::8", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated value (interpolated, extrapolated or other estimation)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/2/" + }, + "dce:identifier": "SDN:RD2::9", + "pav:version": "2", + "skos:notation": "SDN:RD2::9", + "skos:altLabel": "9", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Missing Value" + }, + "dc:identifier": "SDN:RD2::9", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Missing value. Data parameter will record FillValue." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/2/" + }, + "dce:identifier": "SDN:RD2::2", + "pav:version": "2", + "skos:notation": "SDN:RD2::2", + "skos:altLabel": "2", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Probably good data" + }, + "dc:identifier": "SDN:RD2::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Delayed-mode evaluation is based on insufficient information. An error estimate is supplied." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/2/" + }, + "dce:identifier": "SDN:RD2::3", + "pav:version": "2", + "skos:notation": "SDN:RD2::3", + "skos:altLabel": "3", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Probably bad data that are potentially adjustable" + }, + "dc:identifier": "SDN:RD2::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An adjustment may (or may not) have been applied, but the value may still be bad. An error estimate is supplied." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/5/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/5/1/" + }, + "dce:identifier": "SDN:RD2::5", + "pav:version": "1", + "skos:notation": "SDN:RD2::5", + "skos:altLabel": "5", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value changed" + }, + "dc:identifier": "SDN:RD2::5", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value changed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/2/" + }, + "dce:identifier": "SDN:RD2::4", + "pav:version": "2", + "skos:notation": "SDN:RD2::4", + "skos:altLabel": "4", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Bad data" + }, + "dc:identifier": "SDN:RD2::4", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Not adjustable. Adjusted data are replaced by FillValue." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/2/" + }, + "dce:identifier": "SDN:RD2::1", + "pav:version": "2", + "skos:notation": "SDN:RD2::1", + "skos:altLabel": "1", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Good data" + }, + "dc:identifier": "SDN:RD2::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No adjustment is needed, or the adjusted value is statistically consistent with good quality reference data. An error estimate is supplied." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/0/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/0/1/" + }, + "dce:identifier": "SDN:RD2::0", + "pav:version": "1", + "skos:notation": "SDN:RD2::0", + "skos:altLabel": "0", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "No QC" + }, + "dc:identifier": "SDN:RD2::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No delayed-mode quality-control (QC) was performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Quality flag scale for delayed-mode measurements. Argo netCDF {param}_ADJUSTED_QC when data_mode='D' are populated by RD2 altLabel, with {param} consisting of R03 altLabels. Associated FillValue is an empty space in Argo NetCDF files. This case can occur, e.g., in Argo multi-cycle files when the maximum number of vertical level is not reached by a cycle, or for levels not concerning a specific sensor, or for sampling schemes not concerning a sensor.", + "dc:title": "Argo delayed-mode quality control measurement flags", + "skos:prefLabel": "Argo delayed-mode quality control measurement flags", + "owl:versionInfo": "1", + "dc:date": "2024-04-19 03:00:08.0", + "skos:altLabel": "DM_QC_FLAG", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "DM_QC_FLAG", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/RP2.jsonld b/file_checker_exec/src/main/resources/file_checker_spec/NVS/RP2.jsonld new file mode 100644 index 0000000..b0db7e8 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/RP2.jsonld @@ -0,0 +1,289 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/C/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/C/1/" + }, + "dce:identifier": "SDN:RP2::C", + "pav:version": "1", + "skos:notation": "SDN:RP2::C", + "skos:altLabel": "C", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "50% - 75% of profile good" + }, + "dc:identifier": "SDN:RP2::C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 50% (included) and 75% (excluded) of all levels in the profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/E/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/E/1/" + }, + "dce:identifier": "SDN:RP2::E", + "pav:version": "1", + "skos:notation": "SDN:RP2::E", + "skos:altLabel": "E", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "0% - 25% of profile good" + }, + "dc:identifier": "SDN:RP2::E", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 0% (excluded) and 25% (excluded) of all levels in a given profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/D/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/D/1/" + }, + "dce:identifier": "SDN:RP2::D", + "pav:version": "1", + "skos:notation": "SDN:RP2::D", + "skos:altLabel": "D", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "25% - 50% of profile good" + }, + "dc:identifier": "SDN:RP2::D", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 25% (included) and 50% (excluded) of all levels in the profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/F/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/F/1/" + }, + "dce:identifier": "SDN:RP2::F", + "pav:version": "1", + "skos:notation": "SDN:RP2::F", + "skos:altLabel": "F", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "0% of profile good" + }, + "dc:identifier": "SDN:RP2::F", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "0% of all levels in the profile contain good data. This means that all levels are associated with quality control (QC) flags of 3, 4, 6 or 7. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/2/" + }, + "dce:identifier": "SDN:RP2::N", + "pav:version": "2", + "skos:notation": "SDN:RP2::N", + "skos:altLabel": "N", + "dc:date": "2025-08-28 11:45:51.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "No QC" + }, + "dc:identifier": "SDN:RP2::N", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No quality control (QC) was performed on any of the profile levels." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/B/1/" + }, + "dce:identifier": "SDN:RP2::B", + "pav:version": "1", + "skos:notation": "SDN:RP2::B", + "skos:altLabel": "B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "75% - 100% of profile good" + }, + "dc:identifier": "SDN:RP2::B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 75% (included) and 100% (excluded) of all levels in the profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/A/1/" + }, + "dce:identifier": "SDN:RP2::A", + "pav:version": "1", + "skos:notation": "SDN:RP2::A", + "skos:altLabel": "A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "100% of profile good" + }, + "dc:identifier": "SDN:RP2::A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "100% of all levels in the profile contain good data. This means that all levels are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/E/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/B/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Quality control flag scale for whole profiles. Argo netCDF variables PROFILE_{param}_QC are populated by RP2 altLabel, with {param} consisting of R03 altLabels. Associated FillValue is an empty space in Argo NetCDF files. This case occurs when no QC is performed or no usable flag values are present.", + "dc:title": "Argo profile quality control flags", + "skos:prefLabel": "Argo profile quality control flags", + "owl:versionInfo": "1", + "dc:date": "2025-08-29 03:00:01.0", + "skos:altLabel": "PROF_QC_FLAG", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PROF_QC_FLAG", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/NVS/dateOfUpdate.txt b/file_checker_exec/src/main/resources/file_checker_spec/NVS/dateOfUpdate.txt new file mode 100644 index 0000000..4225209 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/NVS/dateOfUpdate.txt @@ -0,0 +1 @@ +2026-04-21T09:24:48.256314 \ No newline at end of file diff --git a/file_checker_exec/src/main/resources/file_checker_spec/VersionInfo.properties b/file_checker_exec/src/main/resources/file_checker_spec/VersionInfo.properties new file mode 100644 index 0000000..4157344 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/VersionInfo.properties @@ -0,0 +1 @@ +Version = -r1259 diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-R03-deprecated-physical_params-spec b/file_checker_exec/src/main/resources/file_checker_spec/argo-R03-deprecated-physical_params-spec new file mode 100644 index 0000000..2757980 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-R03-deprecated-physical_params-spec @@ -0,0 +1,70 @@ +// This table lists attribute/values accepted or deprecated in previous format version of the physical parameter table (The NVS R03 table is the current reference) +//i.e. it lists which param/local_attribute.key/local_attribute.value or param/property.key/property.value pairs +//trigger a warning, are accepted or rejected. + +// columns +// PARAM_NAME | local_attribute.key or property.key | local_attribute.value or property.value | status (reject/warning/pass) | message | versions | deprecation_date +BPHASE_DOXY | long_name | OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR | pass | | [2.2] | 04/04/2018 +BPHASE_DOXY | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +BPHASE_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +C1PHASE_DOXY | category | c | pass | | [2.3,3.0] | 04/04/2018 +C2PHASE_DOXY | valid_min | 10.f | pass | | [2.3,3.0] | 04/04/2018 +C2PHASE_DOXY | valid_max | 70.f | pass | | [2.3,3.0] | 04/04/2018 +C2PHASE_DOXY | category | c | pass | | [2.3,3.0] | 04/04/2018 +CNDC | long_name | ELECTRICAL CONDUCTIVITY | pass | | [2.2,2.3,3.0] | 04/04/2018 +CNDC | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +CNDC | valid_max | 60.f | pass | | [2.2] | 04/04/2018 +CNDC | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +COUNT_DOXY | long_name | COUNT_DOXY | pass | | [2.3] | 04/04/2018 +COUNT_DOXY | long_name | Raw counts reported by sensos such as SBE43 | pass | | [2.2] | 04/04/2018 +COUNT_DOXY | valid_min | 0.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +COUNT_DOXY | valid_max | 100.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +COUNT_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +DOXY | long_name | DISSOLVED OXYGEN | pass | | [2.2,2.3,3.0] | 04/04/2018 +DOXY | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +DOXY | valid_min | 0.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +DOXY | valid_max | 650.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +DPHASE_DOXY | long_name | Calibrated phase shirt reported by sensors such as Aandera Optode | pass | | [2.2] | 04/04/2018 +DPHASE_DOXY | long_name | DPHASE_DOXY | pass | | [2.3] | 04/04/2018 +DPHASE_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +FREQUENCY_DOXY | long_name | FREQUENCY_DOXY | pass | | [2.3] | 04/04/2018 +FREQUENCY_DOXY | long_name | Frequency reported by sensors such as SBE43 | pass | | [2.2] | 04/04/2018 +FREQUENCY_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +MLPL_DOXY | category | c | pass | | [2.3,3.0] | 04/04/2018 +MOLAR_DOXY | long_name | MOLAR_DOXY | pass | | [2.2,2.3] | 04/04/2018 +MOLAR_DOXY | standard_name | Technical value reported by sensors such as Aandera Optode | pass | | [2.2] | 04/04/2018 +MOLAR_DOXY | units | micromole/litre | pass | | [2.2,2.3,3.0] | 04/04/2018 +MOLAR_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +PHASE_DOXY | long_name | Phase shift reported by oxygen sensor | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | units | degree | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | valid_min | 10.f | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | valid_max | 70.f | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | category | c | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | fillValue | 99999. | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | data_type | float | pass | | [2.3,3.0] | 04/04/2018 +PRES | long_name | SEA PRESSURE | pass | | [2.2,2.3,3.0] | 04/04/2018 +PRES | standard_name | In situ measurement, sea surface = 0 | pass | | [2.2] | 04/04/2018 +PRES_DOXY | long_name | SEA PRESSURE FROM DOXY SENSOR | pass | | [2.2] | 04/04/2018 +PRES_DOXY | long_name | Sea water pressure at the depth of oxygen sampling | pass | | [2.3,3.0] | 04/04/2018 +PRES_DOXY | standard_name | In situ measurement, sea surface = 0 | pass | | [2.2] | 04/04/2018 +PRES_DOXY | units | decibar | pass | | [2.2,2.3,3.0] | 04/04/2018 +PRES_DOXY | valid_min | 0.f | pass | | [2.3,3.0] | 04/04/2018 +PRES_DOXY | valid_max | 12000.f | pass | | [2.3,3.0] | 04/04/2018 +PRES_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +PRES_DOXY | fillValue | 99999. | pass | | [2.2,2.3,3.0] | 04/04/2018 +PRES_DOXY | data_type | float | pass | | [2.2,2.3,3.0] | 04/04/2018 +PSAL | long_name | PRACTICAL SALINITY | pass | | [2.2,2.3,3.0] | 04/04/2018 +PSAL | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +PSAL | valid_min | 0.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +PSAL | valid_max | 42.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +TEMP | long_name | SEA TEMPERATURE IN SITU ITS-90 SCALE | pass | | [2.2,2.3,3.0] | 04/04/2018 +TEMP | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +TEMP | valid_min | -2.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +TEMP_DOXY | long_name | SEA TEMPERATURE FROM DOXY SENSOR (ITS-90 SCALE) | pass | | [2.2,2.3,3.0] | 04/04/2018 +TEMP_DOXY | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +TEMP_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +TPHASE_DOXY | category | c | pass | | [2.3,3.0] | 04/04/2018 +VOLTAGE_DOXY | long_name | VOLTAGE_DOXY | pass | | [2.3] | 04/04/2018 +VOLTAGE_DOXY | long_name | Voltage reported by sensors such as SBE43 | pass | | [2.2] | 04/04/2018 +VOLTAGE_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-b_profile-spec-v3.1.attr_regexp b/file_checker_exec/src/main/resources/file_checker_spec/argo-b_profile-spec-v3.1.attr_regexp new file mode 100644 index 0000000..c075819 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-b_profile-spec-v3.1.attr_regexp @@ -0,0 +1,20 @@ +// $Revision: 1233 $ +// $Date: 2021-03-09 15:45:04 +0000 (Tue, 09 Mar 2021) $ + +DOXY:valid_min = 0.0; WARN +DOXY_ADJUSTED:valid_min = 0.0; WARN +DOXY_STD:valid_min = 0.0; WARN +DOXY_MED:valid_min = 0.0; WARN + +C2PHASE_DOXY:valid_min = 10.0; WARN +C2PHASE_DOXY:valid_max = 70.0; WARN +C2PHASE_DOXY_ADJUSTED:valid_min = 10.0; WARN +C2PHASE_DOXY_ADJUSTED:valid_max = 70.0; WARN +C2PHASE_DOXY_STD:valid_min = 10.0; WARN +C2PHASE_DOXY_STD:valid_max = 70.0; WARN +C2PHASE_DOXY_MED:valid_min = 10.0; WARN +C2PHASE_DOXY_MED:valid_max = 70.0; WARN + +POSITION_ERROR_ESTIMATED:long_name = "Position error (estimated|determined) by the real-time or delayed-mode process"; NOWARN + +TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660:units = dimensionless; WARN diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-b_profile-spec-v3.1.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-b_profile-spec-v3.1.cdl new file mode 100644 index 0000000..d675f44 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-b_profile-spec-v3.1.cdl @@ -0,0 +1,247 @@ +netcdf argo-profile-v3.1-spec { + +//@ DATA_TYPE = "Argo profile" +//@ FORMAT_VERSION = "3.1" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: 1196 $ +//@ $Date: 2020-11-13 16:03:00 +0000 (Fri, 13 Nov 2020) $ + +// global attributes: + :title = "Argo float vertical profile" ; + :institution = "<+>US GDAC" ; + :source = "Argo float" ; + :history = "<+>"; + :references = "http://www.argodatamgt.org/Documentation" ; + :user_manual_version = "3.1" ; /*REGEX = "3\..*" */ + :Conventions = "Argo-3.1 CF-1.6" ; /*REGEX = "Argo-3\..* +CF-.*" */ + :featureType = "trajectoryProfile" ; + +dimensions: + DATE_TIME = 14; + STRING1024 = 1024; + STRING256 = 256; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_PROF = _unspecified_; + N_PARAM = _unspecified_; + N_LEVELS = _unspecified_; + N_CALIB = _unspecified_; + N_VALUES\d+ = _extra_; + N_HISTORY = UNLIMITED; + +variables: +// General information on the profile file. + char DATA_TYPE(STRING32); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:conventions = "Argo reference table 1"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char REFERENCE_DATE_TIME(DATE_TIME); + REFERENCE_DATE_TIME:long_name = "Date of reference for Julian days"; + REFERENCE_DATE_TIME:conventions = "YYYYMMDDHHMISS"; + REFERENCE_DATE_TIME:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; +// General information on each profile. + char PLATFORM_NUMBER(N_PROF, STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PROJECT_NAME(N_PROF, STRING64); + PROJECT_NAME:long_name = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PI_NAME (N_PROF, STRING64); + PI_NAME:long_name = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char STATION_PARAMETERS(N_PROF, N_PARAM, STRING64); + STATION_PARAMETERS:long_name = "List of available parameters for the station"; + STATION_PARAMETERS:conventions = "Argo reference table 3"; + STATION_PARAMETERS:_FillValue = " "; + int CYCLE_NUMBER(N_PROF); + CYCLE_NUMBER:long_name = "Float cycle number"; + CYCLE_NUMBER:conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + char DIRECTION(N_PROF); + DIRECTION:long_name = "Direction of the station profiles"; + DIRECTION:conventions = "A: ascending profiles, D: descending profiles"; + DIRECTION:_FillValue = " "; + char DATA_CENTRE(N_PROF, STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DC_REFERENCE(N_PROF, STRING32); + DC_REFERENCE:long_name = "Station unique identifier in data centre"; + DC_REFERENCE:conventions = "Data centre convention"; + DC_REFERENCE:_FillValue = " "; + char DATA_STATE_INDICATOR(N_PROF, STRING4); + DATA_STATE_INDICATOR:long_name = "Degree of processing the data have passed through"; + DATA_STATE_INDICATOR:conventions = "Argo reference table 6"; + DATA_STATE_INDICATOR:_FillValue = " "; + char DATA_MODE(N_PROF); + DATA_MODE:long_name = "Delayed mode or real time data"; + DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + DATA_MODE:_FillValue = " "; + char PLATFORM_TYPE(N_PROF, STRING32); + PLATFORM_TYPE:long_name = "Type of float"; + PLATFORM_TYPE:conventions = "Argo reference table 23"; + PLATFORM_TYPE:_FillValue = " "; + char FLOAT_SERIAL_NO(N_PROF, STRING32); + FLOAT_SERIAL_NO:long_name = "Serial number of the float"; + FLOAT_SERIAL_NO:_FillValue = " "; + char FIRMWARE_VERSION(N_PROF, STRING64|STRING32); + FIRMWARE_VERSION:long_name = "Instrument firmware version"; + FIRMWARE_VERSION:_FillValue = " "; + char WMO_INST_TYPE(N_PROF, STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + double JULD(N_PROF); + JULD:long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + JULD:standard_name = "time"; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD:resolution = "<+>DOUBLE:"; + JULD:_FillValue = 999999.; + JULD:axis = "T"; + char JULD_QC(N_PROF); + JULD_QC:long_name = "Quality on date and time"; + JULD_QC:conventions = "Argo reference table 2"; + JULD_QC:_FillValue = " "; + double JULD_LOCATION(N_PROF); + JULD_LOCATION:long_name = "Julian day (UTC) of the location relative to REFERENCE_DATE_TIME"; + JULD_LOCATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_LOCATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_LOCATION:resolution = "<+>DOUBLE:"; + JULD_LOCATION:_FillValue = 999999.; + double LATITUDE(N_PROF); + LATITUDE:long_name = "Latitude of the station, best estimate"; + LATITUDE:standard_name = "latitude"; + LATITUDE:units = "degree_north"; + LATITUDE:_FillValue = 99999.; + LATITUDE:valid_min = -90.; + LATITUDE:valid_max = 90.; + LATITUDE:axis = "Y"; + double LONGITUDE(N_PROF); + LONGITUDE:long_name = "Longitude of the station, best estimate"; + LONGITUDE:standard_name = "longitude"; + LONGITUDE:units = "degree_east"; + LONGITUDE:_FillValue = 99999.; + LONGITUDE:valid_min = -180.; + LONGITUDE:valid_max = 180.; + LONGITUDE:axis = "X"; + char POSITION_QC(N_PROF); + POSITION_QC:long_name = "Quality on position (latitude and longitude)"; + POSITION_QC:conventions = "Argo reference table 2"; + POSITION_QC:_FillValue = " "; + char POSITIONING_SYSTEM(N_PROF, STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + float POSITION_ERROR_REPORTED(N_PROF); + POSITION_ERROR_REPORTED:long_name = "Position error reported by the positioning system"; + POSITION_ERROR_REPORTED:units = "meters"; + POSITION_ERROR_REPORTED:_FillValue = 99999.f; + float POSITION_ERROR_ESTIMATED(N_PROF); + POSITION_ERROR_ESTIMATED:long_name = "Position error determined by real-time or delayed-mode process"; + POSITION_ERROR_ESTIMATED:units = "meters"; + POSITION_ERROR_ESTIMATED:_FillValue = 99999.f; + char POSITION_ERROR_ESTIMATED_COMMENT(N_PROF, STRING1024); + POSITION_ERROR_ESTIMATED_COMMENT:long_name = "Comment on the method used to determine POSITION_ERROR_ESTIMATED"; + POSITION_ERROR_ESTIMATED_COMMENT:_FillValue = " "; + char VERTICAL_SAMPLING_SCHEME (N_PROF, STRING256); + VERTICAL_SAMPLING_SCHEME:long_name = "Vertical sampling scheme"; + VERTICAL_SAMPLING_SCHEME:conventions = "Argo reference table 16"; + VERTICAL_SAMPLING_SCHEME:_FillValue = " "; + int CONFIG_MISSION_NUMBER (N_PROF); +// CONFIG_MISSION_NUMBER:long_name = "Float\'s mission number for each profile"; + CONFIG_MISSION_NUMBER:long_name = "Unique number denoting the missions performed by the float"; + CONFIG_MISSION_NUMBER:conventions = "1...N, 1 : first complete mission"; + CONFIG_MISSION_NUMBER:_FillValue = 99999; + char PARAMETER_DATA_MODE(N_PROF, N_PARAM); + PARAMETER_DATA_MODE:long_name = "Delayed mode or real time data"; + PARAMETER_DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + PARAMETER_DATA_MODE:_FillValue = " "; +// Measurements for each profile +// ..added based on the argo-params-spec.v3.1 entries +// Calibration information for each profile + char PARAMETER(N_PROF, N_CALIB, N_PARAM, STRING64); + PARAMETER:long_name = "List of parameters with calibration information"; + PARAMETER:conventions = "Argo reference table 3"; + PARAMETER:_FillValue = " "; + char SCIENTIFIC_CALIB_EQUATION(N_PROF, N_CALIB, N_PARAM,STRING256); + SCIENTIFIC_CALIB_EQUATION:long_name = "Calibration equation for this parameter"; + SCIENTIFIC_CALIB_EQUATION:_FillValue = " "; + char SCIENTIFIC_CALIB_COEFFICIENT(N_PROF, N_CALIB, N_PARAM,STRING256); + SCIENTIFIC_CALIB_COEFFICIENT:long_name = "Calibration coefficients for this equation"; + SCIENTIFIC_CALIB_COEFFICIENT:_FillValue = " "; + char SCIENTIFIC_CALIB_COMMENT(N_PROF, N_CALIB, N_PARAM,STRING256); + SCIENTIFIC_CALIB_COMMENT:long_name = "Comment applying to this parameter calibration"; + SCIENTIFIC_CALIB_COMMENT:_FillValue = " "; + char SCIENTIFIC_CALIB_DATE(N_PROF, N_CALIB, N_PARAM, DATE_TIME); + SCIENTIFIC_CALIB_DATE:long_name = "Date of calibration"; + SCIENTIFIC_CALIB_DATE:conventions = "YYYYMMDDHHMISS"; + SCIENTIFIC_CALIB_DATE:_FillValue = " "; +// History information for each profile + char HISTORY_INSTITUTION ( N_HISTORY, N_PROF, STRING4); + HISTORY_INSTITUTION:long_name = "Institution which performed action"; + HISTORY_INSTITUTION:conventions = "Argo reference table 4"; + HISTORY_INSTITUTION:_FillValue = " "; + char HISTORY_STEP ( N_HISTORY, N_PROF, STRING4); + HISTORY_STEP:long_name = "Step in data processing"; + HISTORY_STEP:conventions = "Argo reference table 12"; + HISTORY_STEP:_FillValue = " "; + char HISTORY_SOFTWARE ( N_HISTORY, N_PROF, STRING4); + HISTORY_SOFTWARE:long_name = "Name of software which performed action"; + HISTORY_SOFTWARE:conventions = "Institution dependent"; + HISTORY_SOFTWARE:_FillValue = " "; + char HISTORY_SOFTWARE_RELEASE ( N_HISTORY, N_PROF, STRING4); + HISTORY_SOFTWARE_RELEASE:long_name = "Version/release of software which performed action"; + HISTORY_SOFTWARE_RELEASE:conventions = "Institution dependent"; + HISTORY_SOFTWARE_RELEASE:_FillValue = " "; + char HISTORY_REFERENCE ( N_HISTORY, N_PROF, STRING64); + HISTORY_REFERENCE:long_name = "Reference of database"; + HISTORY_REFERENCE:conventions = "Institution dependent"; + HISTORY_REFERENCE:_FillValue = " "; + char HISTORY_DATE( N_HISTORY, N_PROF, DATE_TIME); + HISTORY_DATE:long_name = "Date the history record was created"; + HISTORY_DATE:conventions = "YYYYMMDDHHMISS"; + HISTORY_DATE:_FillValue = " "; + char HISTORY_ACTION( N_HISTORY, N_PROF, STRING4); + HISTORY_ACTION:long_name = "Action performed on data"; + HISTORY_ACTION:conventions = "Argo reference table 7"; + HISTORY_ACTION:_FillValue = " "; + char HISTORY_PARAMETER( N_HISTORY, N_PROF, STRING64); + HISTORY_PARAMETER:long_name = "Station parameter action is performed on"; + HISTORY_PARAMETER:conventions = "Argo reference table 3"; + HISTORY_PARAMETER:_FillValue = " "; + float HISTORY_START_PRES( N_HISTORY, N_PROF); + HISTORY_START_PRES:long_name = "Start pressure action applied on"; + HISTORY_START_PRES:_FillValue = 99999.f; + HISTORY_START_PRES:units = "decibar"; + float HISTORY_STOP_PRES( N_HISTORY, N_PROF); + HISTORY_STOP_PRES:long_name = "Stop pressure action applied on"; + HISTORY_STOP_PRES:_FillValue = 99999.f; + HISTORY_STOP_PRES:units = "decibar"; +float_or_double HISTORY_PREVIOUS_VALUE( N_HISTORY, N_PROF); + HISTORY_PREVIOUS_VALUE:long_name = "Parameter/Flag previous value before action"; + HISTORY_PREVIOUS_VALUE:_FillValue = 99999.f; + char HISTORY_QCTEST( N_HISTORY, N_PROF, STRING16); + HISTORY_QCTEST:long_name = "Documentation of tests performed, tests failed (in hex form)"; + HISTORY_QCTEST:conventions = "Write tests performed when ACTION=QCP$; tests failed when ACTION=QCF$"; + HISTORY_QCTEST:_FillValue = " "; +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-b_profile-spec-v3.1.opt b/file_checker_exec/src/main/resources/file_checker_spec/argo-b_profile-spec-v3.1.opt new file mode 100644 index 0000000..b212146 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-b_profile-spec-v3.1.opt @@ -0,0 +1,10 @@ +// $Revision: 1153 $ +// $Date: 2020-10-20 20:42:12 +0000 (Tue, 20 Oct 2020) $ + +STRING1024 + +PARAMETER_DATA_MODE + +POSITION_ERROR_REPORTED +POSITION_ERROR_ESTIMATED +POSITION_ERROR_ESTIMATED_COMMENT diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-b_trajectory-spec-v3.1.attr_regexp b/file_checker_exec/src/main/resources/file_checker_spec/argo-b_trajectory-spec-v3.1.attr_regexp new file mode 100644 index 0000000..e9a0d72 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-b_trajectory-spec-v3.1.attr_regexp @@ -0,0 +1,17 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + + +DOXY:valid_min = 0.0; WARN +DOXY_ADJUSTED:valid_min = 0.0; WARN +DOXY_STD:valid_min = 0.0; WARN +DOXY_MED:valid_min = 0.0; WARN + +C2PHASE_DOXY:valid_min = 10.0; WARN +C2PHASE_DOXY:valid_max = 70.0; WARN +C2PHASE_DOXY_ADJUSTED:valid_min = 10.0; WARN +C2PHASE_DOXY_ADJUSTED:valid_max = 70.0; WARN +C2PHASE_DOXY_STD:valid_min = 10.0; WARN +C2PHASE_DOXY_STD:valid_max = 70.0; WARN +C2PHASE_DOXY_MED:valid_min = 10.0; WARN +C2PHASE_DOXY_MED:valid_max = 70.0; WARN diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-b_trajectory-spec-v3.1.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-b_trajectory-spec-v3.1.cdl new file mode 100644 index 0000000..7fccc61 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-b_trajectory-spec-v3.1.cdl @@ -0,0 +1,233 @@ +netcdf argo-trajectory-v3.0-spec { + +//@ DATA_TYPE = "B-Argo trajectory" +//@ FORMAT_VERSION = "3.1" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" + +// global attributes: + :title = "Argo float trajectory file"; + :institution = "<+>US GDAC" ; + :source = "Argo float"; + :history = "<+>"; + :references = "http://www.argodatamgt.org/Documentation"; + :user_manual_version = "3.1" ; /*REGEX = "3\..*" */ + :Conventions = "Argo-3.1 CF-1.6" ; /*REGEX = "Argo-3\..* +CF-.*" */ + :featureType = "trajectory"; + +dimensions: + DATE_TIME = 14; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + + N_PARAM = _unspecified_; + N_MEASUREMENT = UNLIMITED; + N_CYCLE = _unspecified_; + N_VALUES\d+ = _extra_; + N_HISTORY = _unspecified_; + +variables: + +// General information on the trajectory file + char DATA_TYPE(STRING32); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:conventions = "Argo reference table 1"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char REFERENCE_DATE_TIME(DATE_TIME); + REFERENCE_DATE_TIME:long_name = "Date of reference for Julian days"; + REFERENCE_DATE_TIME:conventions = "YYYYMMDDHHMISS"; + REFERENCE_DATE_TIME:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + +// General information on the float + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PROJECT_NAME(STRING64); + PROJECT_NAME:long_name = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PI_NAME(STRING64); + PI_NAME:long_name = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char TRAJECTORY_PARAMETERS(N_PARAM,STRING64); + TRAJECTORY_PARAMETERS:long_name = "List of available parameters for the station"; + TRAJECTORY_PARAMETERS:conventions = "Argo reference table 3"; + TRAJECTORY_PARAMETERS:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATA_STATE_INDICATOR(STRING4); + DATA_STATE_INDICATOR:long_name = "Degree of processing the data have passed through"; + DATA_STATE_INDICATOR:conventions = "Argo reference table 6"; + DATA_STATE_INDICATOR:_FillValue = " "; + char PLATFORM_TYPE(STRING32); + PLATFORM_TYPE:long_name = "Type of float"; + PLATFORM_TYPE:conventions = "Argo reference table 23"; + PLATFORM_TYPE:_FillValue = " "; + char FLOAT_SERIAL_NO(STRING32); + FLOAT_SERIAL_NO:long_name = "Serial number of the float"; + FLOAT_SERIAL_NO:_FillValue = " "; + char FIRMWARE_VERSION(STRING32); + FIRMWARE_VERSION:long_name = "Instrument firmware version"; + FIRMWARE_VERSION:_FillValue = " "; + char WMO_INST_TYPE(STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + char POSITIONING_SYSTEM(STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + +// N_MEASUREMENT dimension variable group + double JULD(N_MEASUREMENT); + JULD:long_name = "Julian day (UTC) of each measurement relative to REFERENCE_DATE_TIME"; + JULD:standard_name = "time"; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD:resolution = "<+>DOUBLE:"; + JULD:_FillValue = 999999.; + JULD:axis = "T"; + char JULD_STATUS(N_MEASUREMENT); + JULD_STATUS:long_name = "Status of the date and time"; + JULD_STATUS:conventions = "Argo reference table 19"; + JULD_STATUS:_FillValue = " "; + char JULD_QC(N_MEASUREMENT); + JULD_QC:long_name = "Quality on date and time"; + JULD_QC:conventions = "Argo reference table 2"; + JULD_QC:_FillValue = " "; + double LATITUDE(N_MEASUREMENT); + LATITUDE:long_name = "Latitude of each location"; + LATITUDE:standard_name = "latitude"; + LATITUDE:units = "degree_north"; + LATITUDE:_FillValue = 99999.; + LATITUDE:valid_min = -90.; + LATITUDE:valid_max = 90.; + LATITUDE:axis = "Y"; + double LONGITUDE(N_MEASUREMENT); + LONGITUDE:long_name = "Longitude of each location"; + LONGITUDE:standard_name = "longitude"; + LONGITUDE:units = "degree_east"; + LONGITUDE:_FillValue = 99999.; + LONGITUDE:valid_min = -180.; + LONGITUDE:valid_max = 180.; + LONGITUDE:axis = "X"; + char POSITION_ACCURACY(N_MEASUREMENT); + POSITION_ACCURACY:long_name = "Estimated accuracy in latitude and longitude"; + POSITION_ACCURACY:conventions = "Argo reference table 5"; + POSITION_ACCURACY:_FillValue = " "; + char POSITION_QC(N_MEASUREMENT); + POSITION_QC:long_name = "Quality on position"; + POSITION_QC:conventions = "Argo reference table 2"; + POSITION_QC:_FillValue = " "; + int CYCLE_NUMBER(N_MEASUREMENT); + CYCLE_NUMBER:long_name = "Float cycle number of the measurement"; + CYCLE_NUMBER:conventions = "0...N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + int MEASUREMENT_CODE(N_MEASUREMENT); + MEASUREMENT_CODE:long_name = "Flag referring to a measurement event in the cycle"; + MEASUREMENT_CODE:conventions = "Argo reference table 15"; + MEASUREMENT_CODE:_FillValue = 99999; + +// structures are added via argo-params-spec-v3.1 + + float AXES_ERROR_ELLIPSE_MAJOR(N_MEASUREMENT); + AXES_ERROR_ELLIPSE_MAJOR:long_name = "Major axis of error ellipse from positioning system"; + AXES_ERROR_ELLIPSE_MAJOR:units = "meters"; + AXES_ERROR_ELLIPSE_MAJOR:_FillValue = 99999.f; + float AXES_ERROR_ELLIPSE_MINOR(N_MEASUREMENT); + AXES_ERROR_ELLIPSE_MINOR:long_name = "Minor axis of error ellipse from positioning system"; + AXES_ERROR_ELLIPSE_MINOR:units = "meters"; + AXES_ERROR_ELLIPSE_MINOR:_FillValue = 99999.f; + float AXES_ERROR_ELLIPSE_ANGLE(N_MEASUREMENT); + AXES_ERROR_ELLIPSE_ANGLE:long_name = "Angle of error ellipse from positioning system"; + AXES_ERROR_ELLIPSE_ANGLE:units = "Degrees (from North when heading East)"; + AXES_ERROR_ELLIPSE_ANGLE:_FillValue = 99999.f; + char SATELLITE_NAME(N_MEASUREMENT); + SATELLITE_NAME:long_name = "Satellite name from positioning system"; + SATELLITE_NAME:_FillValue = " "; + +// N_CYCLE dimension variable group + int CONFIG_MISSION_NUMBER(N_CYCLE); + CONFIG_MISSION_NUMBER:long_name = "Unique number denoting the missions performed by the float"; + CONFIG_MISSION_NUMBER:conventions = "1...N, 1 : first complete mission"; + CONFIG_MISSION_NUMBER:_FillValue = 99999; + int CYCLE_NUMBER_INDEX(N_CYCLE); + CYCLE_NUMBER_INDEX:long_name = "Cycle number that corresponds to the current index"; + CYCLE_NUMBER_INDEX:conventions = "0...N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER_INDEX:_FillValue = 99999; + char DATA_MODE(N_CYCLE); + DATA_MODE:long_name = "Delayed mode or real time data"; + DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + DATA_MODE:_FillValue = " "; + +// History information + char HISTORY_INSTITUTION(N_HISTORY, STRING4); + HISTORY_INSTITUTION:long_name = "Institution which performed action"; + HISTORY_INSTITUTION:conventions = "Argo reference table 4"; + HISTORY_INSTITUTION:_FillValue = " "; + char HISTORY_STEP(N_HISTORY, STRING4); + HISTORY_STEP:long_name = "Step in data processing"; + HISTORY_STEP:conventions = "Argo reference table 12"; + HISTORY_STEP:_FillValue = " "; + char HISTORY_SOFTWARE(N_HISTORY, STRING4); + HISTORY_SOFTWARE:long_name = "Name of software which performed action"; + HISTORY_SOFTWARE:conventions = "Institution dependent"; + HISTORY_SOFTWARE:_FillValue = " "; + char HISTORY_SOFTWARE_RELEASE(N_HISTORY, STRING4); + HISTORY_SOFTWARE_RELEASE:long_name = "Version/release of software which performed action"; + HISTORY_SOFTWARE_RELEASE:conventions = "Institution dependent"; + HISTORY_SOFTWARE_RELEASE:_FillValue = " "; + char HISTORY_REFERENCE(N_HISTORY, STRING64); + HISTORY_REFERENCE:long_name = "Reference of database"; + HISTORY_REFERENCE:conventions = "Institution dependent"; + HISTORY_REFERENCE:_FillValue = " "; + char HISTORY_DATE(N_HISTORY, DATE_TIME); + HISTORY_DATE:long_name = "Date the history record was created"; + HISTORY_DATE:conventions = "YYYYMMDDHHMISS"; + HISTORY_DATE:_FillValue = " "; + char HISTORY_ACTION(N_HISTORY, STRING4); + HISTORY_ACTION:long_name = "Action performed on data"; + HISTORY_ACTION:conventions = "Argo reference table 7"; + HISTORY_ACTION:_FillValue = " "; + char HISTORY_PARAMETER(N_HISTORY, STRING64); + HISTORY_PARAMETER:long_name = "Station parameter action is performed on"; + HISTORY_PARAMETER:conventions = "Argo reference table 3"; + HISTORY_PARAMETER:_FillValue = " "; +float_or_double HISTORY_PREVIOUS_VALUE(N_HISTORY); + HISTORY_PREVIOUS_VALUE:long_name = "Parameter/Flag previous value before action"; + HISTORY_PREVIOUS_VALUE:_FillValue = 99999.f; + char HISTORY_INDEX_DIMENSION(N_HISTORY); + HISTORY_INDEX_DIMENSION:long_name = "Name of dimension to which HISTORY_START_INDEX and HISTORY_STOP_INDEX correspond"; + HISTORY_INDEX_DIMENSION:conventions = "C: N_CYCLE, M: N_MEASUREMENT"; + HISTORY_INDEX_DIMENSION:_FillValue = " "; + int HISTORY_START_INDEX(N_HISTORY); + HISTORY_START_INDEX:long_name = "Start index action applied on"; + HISTORY_START_INDEX:_FillValue = 99999; + int HISTORY_STOP_INDEX(N_HISTORY); + HISTORY_STOP_INDEX:long_name = "Stop index action applied on"; + HISTORY_STOP_INDEX:_FillValue = 99999; + char HISTORY_QCTEST(N_HISTORY, STRING16); + HISTORY_QCTEST:long_name = "Documentation of tests performed, tests failed (in hex form)"; + HISTORY_QCTEST:conventions = "Write tests performed when ACTION=QCP$; tests failed when ACTION=QCF$"; + HISTORY_QCTEST:_FillValue = " "; + +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v2.2.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v2.2.cdl new file mode 100644 index 0000000..9df43fa --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v2.2.cdl @@ -0,0 +1,215 @@ +netcdf argo-metadata-v2.1-spec { + +//@ DATA_TYPE = "Argo meta-data" +//@ FORMAT_VERSION = "2.2" +//@ HANDBOOK_VERSION = "1.2" +//@ $Revision: 656 $ +//@ $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +dimensions: + DATE_TIME = 14; + STRING256 = 256; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_CYCLES = _unspecified_; + N_PARAM = _unspecified_; + +variables: + char DATA_TYPE(STRING16); + DATA_TYPE:comment = "Data type"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:comment = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:comment = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:comment = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PTT(STRING256); + PTT:long_name = "Transmission identifier (ARGOS, ORBCOMM, etc.)"; + PTT:_FillValue = " "; + char TRANS_SYSTEM(STRING16); + TRANS_SYSTEM:long_name = "The telecommunications system used"; + TRANS_SYSTEM:_FillValue = " "; + char TRANS_SYSTEM_ID(STRING32); + TRANS_SYSTEM_ID:long_name = "The program identifier used by the transmission system"; + TRANS_SYSTEM_ID:_FillValue = " "; + char TRANS_FREQUENCY(STRING16); + TRANS_FREQUENCY:long_name = "The frequency of transmission from the float"; + TRANS_FREQUENCY:units = "hertz"; + TRANS_FREQUENCY:_FillValue = " "; + float TRANS_REPETITION; + TRANS_REPETITION:long_name = "The repetition rate of transmission from the float"; + TRANS_REPETITION:units = "second"; + TRANS_REPETITION:_FillValue = 99999.f; + char POSITIONING_SYSTEM(STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + float CLOCK_DRIFT; + CLOCK_DRIFT:long_name = "The rate of drift of the float clock"; + CLOCK_DRIFT:units = "decisecond/day"; + CLOCK_DRIFT:_FillValue = 99999.f; + char PLATFORM_MODEL(STRING16); + PLATFORM_MODEL:long_name = "Model of the float"; + PLATFORM_MODEL:_FillValue = " "; + char PLATFORM_MAKER(STRING256); + PLATFORM_MAKER:long_name = "The name of the manufacturer"; + PLATFORM_MAKER:_FillValue = " "; + char INST_REFERENCE(STRING64); + INST_REFERENCE:long_name = "Instrument type"; + INST_REFERENCE:conventions = "Brand, type, serial number"; + INST_REFERENCE:_FillValue = " "; + char WMO_INST_TYPE(STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + char DIRECTION; + DIRECTION:long_name = "Direction of the profiles"; + DIRECTION:conventions = "A: ascending profiles, B: descending and ascending profiles"; + DIRECTION:_FillValue = " "; + char PROJECT_NAME(STRING64); + PROJECT_NAME:long_name = "The program under which the float was deployed"; + PROJECT_NAME:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float real-time processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char PI_NAME(STRING64); + PI_NAME:comment = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char ANOMALY(STRING256); + ANOMALY:long_name = "Describe any anomalies or problems the float may have had."; + ANOMALY:_FillValue = " "; + char LAUNCH_DATE(DATE_TIME); + LAUNCH_DATE:long_name = "Date (UTC) of the deployment"; + LAUNCH_DATE:conventions = "YYYYMMDDHHMISS"; + LAUNCH_DATE:_FillValue = " "; + double LAUNCH_LATITUDE; + LAUNCH_LATITUDE:long_name = "Latitude of the float when deployed"; + LAUNCH_LATITUDE:units = "degrees_north"; + LAUNCH_LATITUDE:_FillValue = 99999.; + LAUNCH_LATITUDE:valid_min = -90.; + LAUNCH_LATITUDE:valid_max = 90.; + double LAUNCH_LONGITUDE; + LAUNCH_LONGITUDE:long_name = "Longitude of the float when deployed"; + LAUNCH_LONGITUDE:units = "degrees_east"; + LAUNCH_LONGITUDE:_FillValue = 99999.; + LAUNCH_LONGITUDE:valid_min = -180.; + LAUNCH_LONGITUDE:valid_max = 180.; + char LAUNCH_QC; + LAUNCH_QC:long_name = "Quality on launch date, time and location"; + LAUNCH_QC:conventions = "Argo reference table 2"; + LAUNCH_QC:_FillValue = " "; + char START_DATE(DATE_TIME); + START_DATE:long_name = "Date (UTC) of the first descent of the float."; + START_DATE:conventions = "YYYYMMDDHHMISS"; + START_DATE:_FillValue = " "; + char START_DATE_QC; + START_DATE_QC:long_name = "Quality on start date"; + START_DATE_QC:conventions = "Argo reference table 2"; + START_DATE_QC:_FillValue = " "; + char DEPLOY_PLATFORM(STRING32); + DEPLOY_PLATFORM:long_name = "Identifier of the deployment platform"; + DEPLOY_PLATFORM:_FillValue = " "; + char DEPLOY_MISSION(STRING32); + DEPLOY_MISSION:long_name = "Identifier of the mission used to deploy the float"; + DEPLOY_MISSION:_FillValue = " "; + char DEPLOY_AVAILABLE_PROFILE_ID(STRING256); + DEPLOY_AVAILABLE_PROFILE_ID:long_name = "Identifier of stations used to verify the first profile"; + DEPLOY_AVAILABLE_PROFILE_ID:_FillValue = " "; + char END_MISSION_DATE (DATE_TIME); + END_MISSION_DATE:long_name = "Date (UTC) of the end of mission of the float"; + END_MISSION_DATE:conventions = "YYYYMMDDHHMISS"; + END_MISSION_DATE:_FillValue = " "; + char END_MISSION_STATUS; + END_MISSION_STATUS:long_name = "Status of the end of mission of the float"; + END_MISSION_STATUS:conventions = "T:No more transmission received, R:Retrieved"; + END_MISSION_STATUS:_FillValue = " "; + char SENSOR(N_PARAM, STRING16); + SENSOR:long_name = "List of sensors on the float"; + SENSOR:conventions = "Argo reference table 3"; + SENSOR:_FillValue = " "; + char SENSOR_MAKER(N_PARAM, STRING256); + SENSOR_MAKER:long_name = "The name of the manufacturer"; + SENSOR_MAKER:_FillValue = " "; + char SENSOR_MODEL(N_PARAM, STRING256); + SENSOR_MODEL:long_name = "Type of sensor"; + SENSOR_MODEL:_FillValue = " "; + char SENSOR_SERIAL_NO(N_PARAM, STRING16); + SENSOR_SERIAL_NO:long_name = "The serial number of the sensor"; + SENSOR_SERIAL_NO:_FillValue = " "; + char SENSOR_UNITS(N_PARAM, STRING16); + SENSOR_UNITS:long_name = "The units of accuracy and resolution of the sensor"; + SENSOR_UNITS:_FillValue = " "; + float SENSOR_ACCURACY(N_PARAM); + SENSOR_ACCURACY:long_name = "The accuracy of the sensor"; + SENSOR_ACCURACY:_FillValue = 99999.f; + float SENSOR_RESOLUTION(N_PARAM); + SENSOR_RESOLUTION:long_name = "The resolution of the sensor"; + SENSOR_RESOLUTION:_FillValue = 99999.f; + char PARAMETER(N_PARAM, STRING16); + PARAMETER:long_name = "List of parameters with calibration information"; + PARAMETER:conventions = "Argo reference table 3"; + PARAMETER:_FillValue = " "; + char PREDEPLOYMENT_CALIB_EQUATION(N_PARAM, STRING256); + PREDEPLOYMENT_CALIB_EQUATION:long_name = "Calibration equation for this parameter"; + PREDEPLOYMENT_CALIB_EQUATION:_FillValue = " "; + char PREDEPLOYMENT_CALIB_COEFFICIENT(N_PARAM, STRING256); + PREDEPLOYMENT_CALIB_COEFFICIENT:long_name = "Calibration coefficients for this equation"; + PREDEPLOYMENT_CALIB_COEFFICIENT:_FillValue = " "; + char PREDEPLOYMENT_CALIB_COMMENT(N_PARAM, STRING256); + PREDEPLOYMENT_CALIB_COMMENT:long_name = "Comment applying to this parameter calibration"; + PREDEPLOYMENT_CALIB_COMMENT:_FillValue = " "; + + int REPETITION_RATE(N_CYCLES); + REPETITION_RATE:long_name = "The number of times this cycle repeats"; + REPETITION_RATE:units = "number"; + REPETITION_RATE:_FillValue = 99999; + float CYCLE_TIME(N_CYCLES); + CYCLE_TIME:long_name = "The total time of a cycle : descent + parking + ascent + surface"; + CYCLE_TIME:units = "decimal hour"; + CYCLE_TIME:_FillValue = 99999.f; + float PARKING_TIME(N_CYCLES); + PARKING_TIME:long_name = "The time spent at the parking pressure"; + PARKING_TIME:units = "decimal hour"; + PARKING_TIME:_FillValue = 99999.f; + float DESCENDING_PROFILING_TIME(N_CYCLES); + DESCENDING_PROFILING_TIME:long_name = "The time spent sampling the descending profile"; + DESCENDING_PROFILING_TIME:units = "decimal hour"; + DESCENDING_PROFILING_TIME:_FillValue = 99999.f; + float ASCENDING_PROFILING_TIME(N_CYCLES); + ASCENDING_PROFILING_TIME:long_name = "The time spent sampling the ascending profile"; + ASCENDING_PROFILING_TIME:units = "decimal hour"; + ASCENDING_PROFILING_TIME:_FillValue = 99999.f; + float SURFACE_TIME(N_CYCLES); + SURFACE_TIME:long_name = "The time spent at the surface."; + SURFACE_TIME:units = "decimal hour"; + SURFACE_TIME:_FillValue = 99999.f; + float PARKING_PRESSURE(N_CYCLES); + PARKING_PRESSURE:long_name = "The pressure of subsurface drifts"; + PARKING_PRESSURE:units = "decibar"; + PARKING_PRESSURE:_FillValue = 99999.f; + float DEEPEST_PRESSURE(N_CYCLES); + DEEPEST_PRESSURE:long_name = "The deepest pressure sampled in the ascending profile"; + DEEPEST_PRESSURE:units = "decibar"; + DEEPEST_PRESSURE:_FillValue = 99999.f; + float DEEPEST_PRESSURE_DESCENDING(N_CYCLES); + DEEPEST_PRESSURE_DESCENDING:long_name = "The deepest pressure sampled in the descending profile"; + DEEPEST_PRESSURE_DESCENDING:units = "decibar"; + DEEPEST_PRESSURE_DESCENDING:_FillValue = 99999.f; +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v3.1.attr_regexp b/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v3.1.attr_regexp new file mode 100644 index 0000000..44d195a --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v3.1.attr_regexp @@ -0,0 +1,4 @@ +// $Date: 2025-18-06 + + +PROJECT_NAME:long_name = Program under which the float was deployed; NOWARN diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v3.1.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v3.1.cdl new file mode 100644 index 0000000..02fcc80 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v3.1.cdl @@ -0,0 +1,287 @@ +netcdf argo-metadata-v3.0-spec { + +//@ DATA_TYPE = "Argo meta-data" +//@ FORMAT_VERSION = "3.1" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: 1228 $ +//@ $Date: 2021-03-03 16:22:15 +0000 (Wed, 03 Mar 2021) $ + +// global attributes: + :title = "Argo float metadata file" ; + :institution = "<+>US GDAC" ; + :source = "Argo float" ; + :history = "<+>"; + :references = "http://www.argodatamgt.org/Documentation" ; + :user_manual_version = "3.1" ; /*REGEX = "3\..*" */ + :Conventions = "Argo-3.1 CF-1.6" ; /*REGEX = "Argo-3\..* +CF-.*" */ + +dimensions: + DATE_TIME = 14; + STRING4096 = 4096; + STRING1024 = 1024; + STRING256 = 256; + STRING128 = 128; + STRING64 = 64; + STRING32 = 32; + STRING17 = 17; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_PARAM = _unspecified_; + N_SENSOR = _unspecified_; + N_CONFIG_PARAM = _unspecified_; + N_LAUNCH_CONFIG_PARAM = _unspecified_; + N_MISSIONS = _unspecified_; + N_POSITIONING_SYSTEM = _unspecified_; + N_TRANS_SYSTEM = _unspecified_; + +variables: +// General information on the meta-data file + char DATA_TYPE(STRING16); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:conventions = "Argo reference table 1"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PLATFORM_WIGOS_ID(STRING17); + PLATFORM_WIGOS_ID:long_name = "Float unique identifier"; + PLATFORM_WIGOS_ID:conventions = "WMO WIGOS float identifier: 0-22000-0-A9IIIII"; + PLATFORM_WIGOS_ID:_FillValue = " "; + char PTT(STRING256); + PTT:long_name = "Transmission identifier (ARGOS, ORBCOMM, etc.)"; + PTT:_FillValue = " "; + char TRANS_SYSTEM(N_TRANS_SYSTEM, STRING16); + TRANS_SYSTEM:long_name = "Telecommunications system used"; + TRANS_SYSTEM:_FillValue = " "; + char TRANS_SYSTEM_ID(N_TRANS_SYSTEM, STRING32); + TRANS_SYSTEM_ID:long_name = "Program identifier used by the transmission system"; + TRANS_SYSTEM_ID:_FillValue = " "; + char TRANS_FREQUENCY(N_TRANS_SYSTEM, STRING16); + TRANS_FREQUENCY:long_name = "Frequency of transmission from the float"; + TRANS_FREQUENCY:units = "hertz"; + TRANS_FREQUENCY:_FillValue = " "; + char POSITIONING_SYSTEM(N_POSITIONING_SYSTEM, STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + char PLATFORM_FAMILY(STRING256); + PLATFORM_FAMILY:long_name = "Category of instrument"; + PLATFORM_FAMILY:conventions = "Argo reference table 22"; + PLATFORM_FAMILY:_FillValue = " "; + char PLATFORM_TYPE(STRING32); + PLATFORM_TYPE:long_name = "Type of float"; + PLATFORM_TYPE:conventions = "Argo reference table 23"; + PLATFORM_TYPE:_FillValue = " "; + char PLATFORM_MAKER(STRING256); + PLATFORM_MAKER:long_name = "Name of the manufacturer"; + PLATFORM_MAKER:conventions = "Argo reference table 24"; + PLATFORM_MAKER:_FillValue = " "; + char FIRMWARE_VERSION(STRING64|STRING32); + FIRMWARE_VERSION:long_name = "Firmware version for the float"; + FIRMWARE_VERSION:_FillValue = " "; + char MANUAL_VERSION(STRING16); + MANUAL_VERSION:long_name = "Manual version for the float"; + MANUAL_VERSION:_FillValue = " "; + char FLOAT_SERIAL_NO(STRING32); + FLOAT_SERIAL_NO:long_name = "Serial number of the float"; + FLOAT_SERIAL_NO:_FillValue = " "; + char STANDARD_FORMAT_ID(STRING16); + STANDARD_FORMAT_ID:long_name = "Standard format number to describe the data format type for each float"; + STANDARD_FORMAT_ID:_FillValue = " "; + char DAC_FORMAT_ID(STRING16); + DAC_FORMAT_ID:long_name = "Format number used by the DAC to describe the data format type for each float"; + DAC_FORMAT_ID:_FillValue = " "; + char WMO_INST_TYPE(STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + char PROJECT_NAME(STRING64); + PROJECT_NAME:long_name = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PROGRAM_NAME(STRING64); + PROGRAM_NAME:long_name = "Name of the program"; + PROGRAM_NAME:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float real-time processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char PI_NAME (STRING64); + PI_NAME:long_name = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char ANOMALY(STRING256); + ANOMALY:long_name = "Describe any anomalies or problems the float may have had"; + ANOMALY:_FillValue = " "; + char BATTERY_TYPE(STRING64); + BATTERY_TYPE:long_name = "Type of battery packs in the float"; + BATTERY_TYPE:_FillValue = " "; + char BATTERY_PACKS(STRING64); + BATTERY_PACKS:long_name = "Configuration of battery packs in the float"; + BATTERY_PACKS:_FillValue = " "; + char CONTROLLER_BOARD_TYPE_PRIMARY(STRING32); + CONTROLLER_BOARD_TYPE_PRIMARY:long_name = "Type of primary controller board"; + CONTROLLER_BOARD_TYPE_PRIMARY:_FillValue = " "; + char CONTROLLER_BOARD_TYPE_SECONDARY(STRING32); + CONTROLLER_BOARD_TYPE_SECONDARY:long_name = "Type of secondary controller board"; + CONTROLLER_BOARD_TYPE_SECONDARY:_FillValue = " "; + char CONTROLLER_BOARD_SERIAL_NO_PRIMARY(STRING32); + CONTROLLER_BOARD_SERIAL_NO_PRIMARY:long_name = "Serial number of the primary controller board"; + CONTROLLER_BOARD_SERIAL_NO_PRIMARY:_FillValue = " "; + char CONTROLLER_BOARD_SERIAL_NO_SECONDARY(STRING32); + CONTROLLER_BOARD_SERIAL_NO_SECONDARY:long_name = "Serial number of the secondary controller board"; + CONTROLLER_BOARD_SERIAL_NO_SECONDARY:_FillValue = " "; + char SPECIAL_FEATURES(STRING1024); + SPECIAL_FEATURES:long_name = "Extra features of the float (algorithms, compressee etc.)"; + SPECIAL_FEATURES:_FillValue = " "; + char FLOAT_OWNER (STRING64); + FLOAT_OWNER:long_name = "Float owner"; + FLOAT_OWNER:_FillValue = " "; + char OPERATING_INSTITUTION(STRING64); + OPERATING_INSTITUTION:long_name = "Operating institution of the float"; + OPERATING_INSTITUTION:_FillValue = " "; + char CUSTOMISATION(STRING1024); + CUSTOMISATION:long_name = "Float customisation, i.e. (institution and modifications)"; + CUSTOMISATION:_FillValue = " "; + + +// Float deployment and mission information + char LAUNCH_DATE(DATE_TIME); + LAUNCH_DATE:long_name = "Date (UTC) of the deployment"; + LAUNCH_DATE:conventions = "YYYYMMDDHHMISS"; + LAUNCH_DATE:_FillValue = " "; + double LAUNCH_LATITUDE; + LAUNCH_LATITUDE:long_name = "Latitude of the float when deployed"; + LAUNCH_LATITUDE:units = "degree_north"; + LAUNCH_LATITUDE:_FillValue = 99999.; + LAUNCH_LATITUDE:valid_min = -90.; + LAUNCH_LATITUDE:valid_max = 90.; + double LAUNCH_LONGITUDE; + LAUNCH_LONGITUDE:long_name = "Longitude of the float when deployed"; + LAUNCH_LONGITUDE:units = "degree_east"; + LAUNCH_LONGITUDE:_FillValue = 99999.; + LAUNCH_LONGITUDE:valid_min = -180.; + LAUNCH_LONGITUDE:valid_max = 180.; + char LAUNCH_QC; + LAUNCH_QC:long_name = "Quality on launch date, time and location"; + LAUNCH_QC:conventions = "Argo reference table 2"; + LAUNCH_QC:_FillValue = " "; + char START_DATE(DATE_TIME); + START_DATE:long_name = "Date (UTC) of the first descent of the float"; + START_DATE:conventions = "YYYYMMDDHHMISS"; + START_DATE:_FillValue = " "; + char START_DATE_QC; + START_DATE_QC:long_name = "Quality on start date"; + START_DATE_QC:conventions = "Argo reference table 2"; + START_DATE_QC:_FillValue = " "; + char STARTUP_DATE(DATE_TIME); + STARTUP_DATE:long_name = "Date (UTC) of the activation of the float"; + STARTUP_DATE:conventions = "YYYYMMDDHHMISS"; + STARTUP_DATE:_FillValue = " "; + char STARTUP_DATE_QC; + STARTUP_DATE_QC:long_name = "Quality on startup date"; + STARTUP_DATE_QC:conventions = "Argo reference table 2"; + STARTUP_DATE_QC:_FillValue = " "; + char DEPLOYMENT_PLATFORM(STRING32|STRING128); + DEPLOYMENT_PLATFORM:long_name = "Identifier of the deployment platform"; + DEPLOYMENT_PLATFORM:_FillValue = " "; + char DEPLOYMENT_CRUISE_ID(STRING32); + DEPLOYMENT_CRUISE_ID:long_name = "Identification number or reference number of the cruise used to deploy the float"; + DEPLOYMENT_CRUISE_ID:_FillValue = " "; + char DEPLOYMENT_REFERENCE_STATION_ID(STRING256); + DEPLOYMENT_REFERENCE_STATION_ID:long_name = "Identifier or reference number of co-located stations used to verify the first profile"; + DEPLOYMENT_REFERENCE_STATION_ID:_FillValue = " "; + char END_MISSION_DATE(DATE_TIME); + END_MISSION_DATE:long_name = "Date (UTC) of the end of mission of the float"; + END_MISSION_DATE:conventions = "YYYYMMDDHHMISS"; + END_MISSION_DATE:_FillValue = " "; + char END_MISSION_STATUS; + END_MISSION_STATUS:long_name = "Status of the end of mission of the float"; + END_MISSION_STATUS:conventions = "T:No more transmission received, R:Retrieved"; + END_MISSION_STATUS:_FillValue = " "; + +// Configuration parameters + char LAUNCH_CONFIG_PARAMETER_NAME(N_LAUNCH_CONFIG_PARAM, STRING128); + LAUNCH_CONFIG_PARAMETER_NAME:long_name = "Name of configuration parameter at launch"; + LAUNCH_CONFIG_PARAMETER_NAME:_FillValue = " "; +float_or_double LAUNCH_CONFIG_PARAMETER_VALUE(N_LAUNCH_CONFIG_PARAM); + LAUNCH_CONFIG_PARAMETER_VALUE:long_name = "Value of configuration parameter at launch"; + LAUNCH_CONFIG_PARAMETER_VALUE:_FillValue = 99999.; + char CONFIG_PARAMETER_NAME(N_CONFIG_PARAM, STRING128); + CONFIG_PARAMETER_NAME:long_name = "Name of configuration parameter"; + CONFIG_PARAMETER_NAME:_FillValue = " "; +float_or_double CONFIG_PARAMETER_VALUE(N_MISSIONS, N_CONFIG_PARAM); + CONFIG_PARAMETER_VALUE:long_name = "Value of configuration parameter"; + CONFIG_PARAMETER_VALUE:_FillValue = 99999.; + int CONFIG_MISSION_NUMBER(N_MISSIONS); + CONFIG_MISSION_NUMBER:long_name = "Unique number denoting the missions performed by the float"; + CONFIG_MISSION_NUMBER:conventions = "1...N, 1 : first complete mission"; + CONFIG_MISSION_NUMBER:_FillValue = 99999; + char CONFIG_MISSION_COMMENT(N_MISSIONS, STRING256); + CONFIG_MISSION_COMMENT:long_name = "Comment on configuration"; + CONFIG_MISSION_COMMENT:_FillValue = " "; + +// Float sensor information + char SENSOR(N_SENSOR, STRING32); + SENSOR:long_name = "Name of the sensor mounted on the float"; + SENSOR:conventions = "Argo reference table 25"; + SENSOR:_FillValue = " "; + char SENSOR_MAKER(N_SENSOR, STRING256); + SENSOR_MAKER:long_name = "Name of the sensor manufacturer"; + SENSOR_MAKER:conventions = "Argo reference table 26"; + SENSOR_MAKER:_FillValue = " "; + char SENSOR_MODEL(N_SENSOR, STRING256); + SENSOR_MODEL:long_name = "Type of sensor"; + SENSOR_MODEL:conventions = "Argo reference table 27"; + SENSOR_MODEL:_FillValue = " "; + char SENSOR_SERIAL_NO(N_SENSOR, STRING16); + SENSOR_SERIAL_NO:long_name = "Serial number of the sensor"; + SENSOR_SERIAL_NO:_FillValue = " "; + char SENSOR_FIRMWARE_VERSION(N_SENSOR, STRING32); + SENSOR_FIRMWARE_VERSION:long_name = "Firmware version of the sensor"; + SENSOR_FIRMWARE_VERSION:_FillValue = " "; + +// Float parameter information + char PARAMETER(N_PARAM, STRING64); + PARAMETER:long_name = "Name of parameter computed from float measurements"; + PARAMETER:conventions = "Argo reference table 3"; + PARAMETER:_FillValue = " "; + char PARAMETER_SENSOR(N_PARAM, STRING128); + PARAMETER_SENSOR:long_name = "Name of the sensor that measures this parameter"; + PARAMETER_SENSOR:conventions = "Argo reference table 25"; + PARAMETER_SENSOR:_FillValue = " "; + char PARAMETER_UNITS(N_PARAM, STRING32); + PARAMETER_UNITS:long_name = "Units of accuracy and resolution of the parameter"; + PARAMETER_UNITS:_FillValue = " "; + char PARAMETER_ACCURACY(N_PARAM, STRING32); + PARAMETER_ACCURACY:long_name = "Accuracy of the parameter"; + PARAMETER_ACCURACY:_FillValue = " "; + char PARAMETER_RESOLUTION(N_PARAM, STRING32); + PARAMETER_RESOLUTION:long_name = "Resolution of the parameter"; + PARAMETER_RESOLUTION:_FillValue =" "; + +// Float calibration information + char PREDEPLOYMENT_CALIB_EQUATION(N_PARAM, STRING1024|STRING4096); + PREDEPLOYMENT_CALIB_EQUATION:long_name = "Calibration equation for this parameter"; + PREDEPLOYMENT_CALIB_EQUATION:_FillValue = " "; + char PREDEPLOYMENT_CALIB_COEFFICIENT(N_PARAM, STRING1024|STRING4096); + PREDEPLOYMENT_CALIB_COEFFICIENT:long_name = "Calibration coefficients for this equation"; + PREDEPLOYMENT_CALIB_COEFFICIENT:_FillValue = " "; + char PREDEPLOYMENT_CALIB_COMMENT(N_PARAM, STRING1024|STRING4096); + PREDEPLOYMENT_CALIB_COMMENT:long_name = "Comment applying to this parameter calibration"; + PREDEPLOYMENT_CALIB_COMMENT:_FillValue = " "; diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v3.1.opt b/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v3.1.opt new file mode 100644 index 0000000..3207013 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-metadata-spec-v3.1.opt @@ -0,0 +1,11 @@ +// $Revision: 1225 $ +// $Date: 2021-03-02 20:50:37 +0000 (Tue, 02 Mar 2021) $ + +STRING17 +STRING4096 + +PLATFORM_WIGOS_ID +CONTROLLER_BOARD_TYPE_SECONDARY +CONTROLLER_BOARD_SERIAL_NO_SECONDARY +SENSOR_FIRMWARE_VERSION +PROGRAM_NAME diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v2.2.aux b/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v2.2.aux new file mode 100644 index 0000000..efabe76 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v2.2.aux @@ -0,0 +1,13 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +// Special codes: +// "<->" attribute cannot exist; "<*>" attribute optional, value ignored; <+> attribute must exist, value is ignored + +// Special settings: +// Define some additional specialized attribute settings +// They are NOT free-form. That is the Java parsing code has specific names that are hard-coded. + +ADJUSTED_ERROR:comment | Contains the error on the adjusted values as determined by the delayed mode QC process. +PRES:axis | <-> | +PRES_ADJUSTED:axis | <-> | diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v2.3.aux b/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v2.3.aux new file mode 100644 index 0000000..cf170ec --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v2.3.aux @@ -0,0 +1,12 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +// Special codes: +// "<->" attribute cannot exist; "<*>" attribute optional, value ignored; <+> attribute must exist, value is ignored + +// Special settings: +// Define some additional specialized attribute settings +// They are NOT free-form. That is the Java parsing code has specific names that are hard-coded. + +ADJUSTED_ERROR:comment | <-> +PRES_ADJUSTED:axis | <*> diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v3.0.aux b/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v3.0.aux new file mode 100644 index 0000000..cf170ec --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v3.0.aux @@ -0,0 +1,12 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +// Special codes: +// "<->" attribute cannot exist; "<*>" attribute optional, value ignored; <+> attribute must exist, value is ignored + +// Special settings: +// Define some additional specialized attribute settings +// They are NOT free-form. That is the Java parsing code has specific names that are hard-coded. + +ADJUSTED_ERROR:comment | <-> +PRES_ADJUSTED:axis | <*> diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v3.1.aux b/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v3.1.aux new file mode 100644 index 0000000..c3103a7 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v3.1.aux @@ -0,0 +1,14 @@ +// Auxilliary settings for the Argo physical parameters +// $Revision: 829 $ +// $Date: 2018-01-29 23:44:56 +0000 (Mon, 29 Jan 2018) $ + +// Special codes: +// "<->" attribute cannot exist; "<*>" attribute optional, value ignored; <+> attribute must exist, value is ignored + +// They are NOT free-form. The code looks for very specific :attribute names +// Unknown names are an error + +ADJUSTED_ERROR:comment | <-> +ADJUSTED_ERROR:long_name | Contains the error on the adjusted values as determined by the delayed mode QC process +PRES_ADJUSTED:axis | <*> + diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v3.2.aux b/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v3.2.aux new file mode 100644 index 0000000..c3103a7 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-physical_params-spec-v3.2.aux @@ -0,0 +1,14 @@ +// Auxilliary settings for the Argo physical parameters +// $Revision: 829 $ +// $Date: 2018-01-29 23:44:56 +0000 (Mon, 29 Jan 2018) $ + +// Special codes: +// "<->" attribute cannot exist; "<*>" attribute optional, value ignored; <+> attribute must exist, value is ignored + +// They are NOT free-form. The code looks for very specific :attribute names +// Unknown names are an error + +ADJUSTED_ERROR:comment | <-> +ADJUSTED_ERROR:long_name | Contains the error on the adjusted values as determined by the delayed mode QC process +PRES_ADJUSTED:axis | <*> + diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.2.attr_regexp b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.2.attr_regexp new file mode 100644 index 0000000..cc5ecd1 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.2.attr_regexp @@ -0,0 +1,24 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +// Changes in BPHASE_DOXY between v2.2 and v2.31 that have not been dealt with + +BPHASE_DOXY:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +BPHASE_DOXY_ADJUSTED:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY_ADJUSTED:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +BPHASE_DOXY_ADJUSTED_ERROR:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); + +BPHASE_DOXY2:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY2:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +BPHASE_DOXY2_ADJUSTED:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY2_ADJUSTED:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +MOLAR_DOXY_ADJUSTED:comment = (Technical value reported by sensors such as Aandera Optode)|(Adjusted technical value reported by sensors such as Aandera Optode); +MOLAR_DOXY_ADJUSTED:long_name = (MOLAR_DOXY)|(DISSOLVED OXYGEN); +MOLAR_DOXY_ADJUSTED_ERROR:long_name = (MOLAR_DOXY)|(DISSOLVED OXYGEN); + + diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.2.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.2.cdl new file mode 100644 index 0000000..bf0ea72 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.2.cdl @@ -0,0 +1,235 @@ +netcdf argo-profile-v2.1-spec { + +//@ DATA_TYPE = "Argo profile" +//@ FORMAT_VERSION = "2.2" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: 656 $ +//@ $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +dimensions: + DATE_TIME = 14; + STRING256 = 256; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_PROF = _unspecified_; + N_PARAM = _unspecified_; + N_LEVELS = _unspecified_; + N_CALIB = _unspecified_; + N_HISTORY = UNLIMITED; + +variables: + char DATA_TYPE(STRING16); + DATA_TYPE:comment = "Data type"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:comment = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:comment = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char REFERENCE_DATE_TIME(DATE_TIME); + REFERENCE_DATE_TIME:comment = "Date of reference for Julian days"; + REFERENCE_DATE_TIME:conventions = "YYYYMMDDHHMISS"; + REFERENCE_DATE_TIME:_FillValue = " "; + char PLATFORM_NUMBER(N_PROF, STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PROJECT_NAME(N_PROF, STRING64); + PROJECT_NAME:comment = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PI_NAME (N_PROF, STRING64); + PI_NAME:comment = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char STATION_PARAMETERS(N_PROF, N_PARAM, STRING16); + STATION_PARAMETERS:long_name = "List of available parameters for the station"; + STATION_PARAMETERS:conventions = "Argo reference table 3"; + STATION_PARAMETERS:_FillValue = " "; + int CYCLE_NUMBER(N_PROF); + CYCLE_NUMBER:long_name = "Float cycle number"; + CYCLE_NUMBER:conventions = "0..N, 0 : launch cycle (if exists), 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + char DIRECTION(N_PROF); + DIRECTION:long_name = "Direction of the station profiles"; + DIRECTION:conventions = "A: ascending profiles, D: descending profiles"; + DIRECTION:_FillValue = " "; + char DATA_CENTRE(N_PROF, STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:comment = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + char DC_REFERENCE(N_PROF, STRING32); + DC_REFERENCE:long_name = "Station unique identifier in data centre"; + DC_REFERENCE:conventions = "Data centre convention"; + DC_REFERENCE:_FillValue = " "; + char DATA_STATE_INDICATOR(N_PROF, STRING4); + DATA_STATE_INDICATOR:long_name = "Degree of processing the data have passed through"; + DATA_STATE_INDICATOR:conventions = "Argo reference table 6"; + DATA_STATE_INDICATOR:_FillValue = " "; + char DATA_MODE(N_PROF); + DATA_MODE:long_name = "Delayed mode or real time data"; + DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + DATA_MODE:_FillValue = " "; + char INST_REFERENCE(N_PROF, STRING64); + INST_REFERENCE:long_name = "Instrument type"; + INST_REFERENCE:conventions = "Brand, type, serial number"; + INST_REFERENCE:_FillValue = " "; + char WMO_INST_TYPE(N_PROF, STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + double JULD(N_PROF); + JULD:long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD:_FillValue = 999999.; + char JULD_QC(N_PROF); + JULD_QC:long_name = "Quality on Date and Time"; + JULD_QC:conventions = "Argo reference table 2"; + JULD_QC:_FillValue = " "; + double JULD_LOCATION(N_PROF); + JULD_LOCATION:long_name = "Julian day (UTC) of the location relative to REFERENCE_DATE_TIME"; + JULD_LOCATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_LOCATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_LOCATION:_FillValue = 999999.; + double LATITUDE(N_PROF); + LATITUDE:long_name = "Latitude of the station, best estimate"; + LATITUDE:units = "degree_north"; + LATITUDE:_FillValue = 99999.; + LATITUDE:valid_min = -90.; + LATITUDE:valid_max = 90.; + double LONGITUDE(N_PROF); + LONGITUDE:long_name = "Longitude of the station, best estimate"; + LONGITUDE:units = "degree_east"; + LONGITUDE:_FillValue = 99999.; + LONGITUDE:valid_min = -180.; + LONGITUDE:valid_max = 180.; + char POSITION_QC(N_PROF); + POSITION_QC:long_name = "Quality on position (latitude and longitude)"; + POSITION_QC:conventions = "Argo reference table 2"; + POSITION_QC:_FillValue = " "; + char POSITIONING_SYSTEM(N_PROF, STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + +//Template: +// char PROFILE__QC(N_PROF); +// PROFILE__QC:long_name = "Global quality flag of profile"; +// PROFILE__QC:conventions = "Argo reference table 2a"; +// PROFILE__QC:_FillValue = " "; + + +//Template ( Indicates value specified in table 3): +// float (N_PROF, N_LEVELS); +// :long_name = ""; +// :_FillValue = ; +// :units = ""; +// :valid_min = ; +// :valid_max = ; +// :comment = ""; +// :C_format = ""; +// :FORTRAN_format = ""; +// :resolution = ; +// char _QC(N_PROF, N_LEVELS); +// _QC:long_name = "quality flag"; +// _QC:conventions = "Argo reference table 2"; +// _QC:_FillValue = " "; +// float _ADJUSTED(N_PROF, N_LEVELS); +// _ADJUSTED:long_name = ""; +// _ADJUSTED:_FillValue = ; +// _ADJUSTED:units = ""; +// _ADJUSTED:valid_min = ; +// _ADJUSTED:valid_max = ; +// _ADJUSTED:comment = ""; +// _ADJUSTED:C_format = ""; +// _ADJUSTED:FORTRAN_format = ""; +// _ADJUSTED:resolution = ; +// char _ADJUSTED_QC(N_PROF, N_LEVELS); +// _ADJUSTED_QC:long_name = "quality flag"; +// _ADJUSTED_QC:conventions = "Argo reference table 2"; +// _ADJUSTED_QC:_FillValue = " "; +// float _ADJUSTED_ERROR(N_PROF, N_LEVELS); +// _ADJUSTED_ERROR:long_name = ""; +// _ADJUSTED_ERROR:_FillValue = ; +// _ADJUSTED_ERROR:units = ""; +// _ADJUSTED_ERROR:comment = "Contains the error on the adjusted values as determined by the delayed mode QC process."; +// _ADJUSTED_ERROR:C_format = ""; +// _ADJUSTED_ERROR:FORTRAN_format = ""; +// _ADJUSTED_ERROR:resolution = ; + + char PARAMETER(N_PROF, N_CALIB, N_PARAM, STRING16); + PARAMETER:long_name = "List of parameters with calibration information"; + PARAMETER:conventions = "Argo reference table 3"; + PARAMETER:_FillValue = " "; + char SCIENTIFIC_CALIB_EQUATION(N_PROF, N_CALIB, N_PARAM, STRING256); + SCIENTIFIC_CALIB_EQUATION:long_name = "Calibration equation for this parameter"; + SCIENTIFIC_CALIB_EQUATION:_FillValue = " "; + char SCIENTIFIC_CALIB_COEFFICIENT(N_PROF, N_CALIB, N_PARAM, STRING256); + SCIENTIFIC_CALIB_COEFFICIENT:long_name = "Calibration coefficients for this equation"; + SCIENTIFIC_CALIB_COEFFICIENT:_FillValue = " "; + char SCIENTIFIC_CALIB_COMMENT(N_PROF, N_CALIB, N_PARAM, STRING256); + SCIENTIFIC_CALIB_COMMENT:long_name = "Comment applying to this parameter calibration"; + SCIENTIFIC_CALIB_COMMENT:_FillValue = " "; + char CALIBRATION_DATE(N_PROF, N_CALIB, N_PARAM, DATE_TIME); + CALIBRATION_DATE:_FillValue = " "; + + char HISTORY_INSTITUTION(N_HISTORY, N_PROF, STRING4); + HISTORY_INSTITUTION:long_name = "Institution which performed action"; + HISTORY_INSTITUTION:conventions = "Argo reference table 4"; + HISTORY_INSTITUTION:_FillValue = " "; + char HISTORY_STEP(N_HISTORY, N_PROF, STRING4); + HISTORY_STEP:long_name = "Step in data processing"; + HISTORY_STEP:conventions = "Argo reference table 12"; + HISTORY_STEP:_FillValue = " "; + char HISTORY_SOFTWARE(N_HISTORY, N_PROF, STRING4); + HISTORY_SOFTWARE:long_name = "Name of software which performed action"; + HISTORY_SOFTWARE:conventions = "Institution dependent"; + HISTORY_SOFTWARE:_FillValue = " "; + char HISTORY_SOFTWARE_RELEASE(N_HISTORY, N_PROF, STRING4); + HISTORY_SOFTWARE_RELEASE:long_name = "Version/release of software which performed action"; + HISTORY_SOFTWARE_RELEASE:conventions = "Institution dependent"; + HISTORY_SOFTWARE_RELEASE:_FillValue = " "; + char HISTORY_REFERENCE(N_HISTORY, N_PROF, STRING64); + HISTORY_REFERENCE:long_name = "Reference of database"; + HISTORY_REFERENCE:conventions = "Institution dependent"; + HISTORY_REFERENCE:_FillValue = " "; + char HISTORY_DATE(N_HISTORY, N_PROF, DATE_TIME); + HISTORY_DATE:long_name = "Date the history record was created"; + HISTORY_DATE:conventions = "YYYYMMDDHHMISS"; + HISTORY_DATE:_FillValue = " "; + char HISTORY_ACTION(N_HISTORY, N_PROF, STRING4); + HISTORY_ACTION:long_name = "Action performed on data"; + HISTORY_ACTION:conventions = "Argo reference table 7"; + HISTORY_ACTION:_FillValue = " "; + char HISTORY_PARAMETER(N_HISTORY, N_PROF, STRING16); + HISTORY_PARAMETER:long_name = "Station parameter action is performed on"; + HISTORY_PARAMETER:conventions = "Argo reference table 3"; + HISTORY_PARAMETER:_FillValue = " "; + float HISTORY_START_PRES(N_HISTORY, N_PROF); + HISTORY_START_PRES:long_name = "Start pressure action applied on"; + HISTORY_START_PRES:_FillValue = 99999.f; + HISTORY_START_PRES:units = "decibar"; + float HISTORY_STOP_PRES(N_HISTORY, N_PROF); + HISTORY_STOP_PRES:long_name = "Stop pressure action applied on"; + HISTORY_STOP_PRES:_FillValue = 99999.f; + HISTORY_STOP_PRES:units = "decibar"; + float HISTORY_PREVIOUS_VALUE(N_HISTORY, N_PROF); + HISTORY_PREVIOUS_VALUE:long_name = "Parameter/Flag previous value before action"; + HISTORY_PREVIOUS_VALUE:_FillValue = 99999.f; + char HISTORY_QCTEST(N_HISTORY, N_PROF, STRING16); + HISTORY_QCTEST:long_name = "Documentation of tests performed, tests failed (in hex form)"; + HISTORY_QCTEST:conventions = "Write tests performed when ACTION=QCP$; tests failed when ACTION=QCF$"; + HISTORY_QCTEST:_FillValue = " "; +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.3.attr_regexp b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.3.attr_regexp new file mode 100644 index 0000000..b7ef85d --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.3.attr_regexp @@ -0,0 +1,41 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +// coriolis is missing these + +PRES:axis = <*>; +PRES_ADJUSTED:standard_name = <*>; +TEMP_ADJUSTED:standard_name = <*>; +PSAL_ADJUSTED:standard_name = <*>; + +PSAL:standard_name = sea_water_salinity|sea_water_practical_salinity; + +DOXY_ADJUSTED:standard_name = <*>; +MOLAR_DOXY:standard_name = <*>; +MOLAR_DOXY_ADJUSTED:standard_name = <*>; + +// Changes in BPHASE_DOXY between v2.2 and v2.31 that have not been dealt with + +BPHASE_DOXY:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +BPHASE_DOXY_ADJUSTED:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY_ADJUSTED:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +BPHASE_DOXY_ADJUSTED_ERROR:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); + +BPHASE_DOXY2:long_name = (BPHASE_DOXY2)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY2:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +BPHASE_DOXY2_ADJUSTED:long_name = (BPHASE_DOXY2)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY2_ADJUSTED:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +FREQUENCY_DOXY:valid_max = 25000.f|100.f; +FREQUENCY_DOXY:C_format = (%7.1f)|(%5.2f); +FREQUENCY_DOXY:FORTRAN_format = (F7.1)|(F5.2); + +FREQUENCY_DOXY_ADJUSTED:valid_max = 25000.f|100.f; +FREQUENCY_DOXY_ADJUSTED:C_format = (%7.1f)|(%5.2f); +FREQUENCY_DOXY_ADJUSTED:FORTRAN_format = (F7.1)|(F5.2); + + diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.3.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.3.cdl new file mode 100644 index 0000000..0ae8b34 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v2.3.cdl @@ -0,0 +1,202 @@ +netcdf argo-profile-v2.1-spec { + +//@ DATA_TYPE = "Argo profile" +//@ FORMAT_VERSION = "2.3" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: 656 $ +//@ $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +dimensions: + DATE_TIME = 14; + STRING256 = 256; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_PROF = _unspecified_; + N_PARAM = _unspecified_; + N_LEVELS = _unspecified_; + N_CALIB = _unspecified_; + N_HISTORY = UNLIMITED; + +variables: + char DATA_TYPE(STRING16); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char REFERENCE_DATE_TIME(DATE_TIME); + REFERENCE_DATE_TIME:long_name = "Date of reference for Julian days"; + REFERENCE_DATE_TIME:conventions = "YYYYMMDDHHMISS"; + REFERENCE_DATE_TIME:_FillValue = " "; + char PLATFORM_NUMBER(N_PROF, STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PROJECT_NAME(N_PROF, STRING64); + PROJECT_NAME:long_name = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PI_NAME (N_PROF, STRING64); + PI_NAME:long_name = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char STATION_PARAMETERS(N_PROF, N_PARAM, STRING16); + STATION_PARAMETERS:long_name = "List of available parameters for the station"; + STATION_PARAMETERS:conventions = "Argo reference table 3"; + STATION_PARAMETERS:_FillValue = " "; + int CYCLE_NUMBER(N_PROF); + CYCLE_NUMBER:long_name = "Float cycle number"; + CYCLE_NUMBER:conventions = "0..N, 0 : launch cycle (if exists), 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + char DIRECTION(N_PROF); + DIRECTION:long_name = "Direction of the station profiles"; + DIRECTION:conventions = "A: ascending profiles, D: descending profiles"; + DIRECTION:_FillValue = " "; + char DATA_CENTRE(N_PROF, STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + char DC_REFERENCE(N_PROF, STRING32); + DC_REFERENCE:long_name = "Station unique identifier in data centre"; + DC_REFERENCE:conventions = "Data centre convention"; + DC_REFERENCE:_FillValue = " "; + char DATA_STATE_INDICATOR(N_PROF, STRING4); + DATA_STATE_INDICATOR:long_name = "Degree of processing the data have passed through"; + DATA_STATE_INDICATOR:conventions = "Argo reference table 6"; + DATA_STATE_INDICATOR:_FillValue = " "; + char DATA_MODE(N_PROF); + DATA_MODE:long_name = "Delayed mode or real time data"; + DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + DATA_MODE:_FillValue = " "; + char INST_REFERENCE(N_PROF, STRING64); + INST_REFERENCE:long_name = "Instrument type"; + INST_REFERENCE:conventions = "Brand, type, serial number"; + INST_REFERENCE:_FillValue = " "; + char WMO_INST_TYPE(N_PROF, STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + double JULD(N_PROF); + JULD:long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD:_FillValue = 999999.; + char JULD_QC(N_PROF); + JULD_QC:long_name = "Quality on Date and Time"; + JULD_QC:conventions = "Argo reference table 2"; + JULD_QC:_FillValue = " "; + double JULD_LOCATION(N_PROF); + JULD_LOCATION:long_name = "Julian day (UTC) of the location relative to REFERENCE_DATE_TIME"; + JULD_LOCATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_LOCATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_LOCATION:_FillValue = 999999.; + double LATITUDE(N_PROF); + LATITUDE:long_name = "Latitude of the station, best estimate"; + LATITUDE:units = "degree_north"; + LATITUDE:_FillValue = 99999.; + LATITUDE:valid_min = -90.; + LATITUDE:valid_max = 90.; + double LONGITUDE(N_PROF); + LONGITUDE:long_name = "Longitude of the station, best estimate"; + LONGITUDE:units = "degree_east"; + LONGITUDE:_FillValue = 99999.; + LONGITUDE:valid_min = -180.; + LONGITUDE:valid_max = 180.; + char POSITION_QC(N_PROF); + POSITION_QC:long_name = "Quality on position (latitude and longitude)"; + POSITION_QC:conventions = "Argo reference table 2"; + POSITION_QC:_FillValue = " "; + char POSITIONING_SYSTEM(N_PROF, STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + +// ; diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.0.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.0.cdl new file mode 100644 index 0000000..e83f993 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.0.cdl @@ -0,0 +1,256 @@ +netcdf argo-profile-v2.1-spec { + +//@ DATA_TYPE = "Argo profile" +//@ FORMAT_VERSION = "3.0" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: 656 $ +//@ $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +// global attributes: + :title = "Argo float vertical profile" ; + :institution = "<+>US GDAC" ; + :source = "Argo float" ; + :history = "<+>"; + :references = "http://www.argodatamgt.org/Documentation" ; + :user_manual_version = "3.1" ; /*REGEX = "3\..*" */ + :Conventions = "Argo-3.1 CF-1.6" ; /*REGEX = "Argo-3\..* +CF-.*" */ + :featureType = "trajectoryProfile" ; + +dimensions: + DATE_TIME = 14; + STRING256 = 256; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_PROF = _unspecified_; + N_PARAM = _unspecified_; + N_LEVELS = _unspecified_; + N_CALIB = _unspecified_; + N_HISTORY = UNLIMITED; + +variables: +// General information on the profile file. + char DATA_TYPE(STRING16); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char REFERENCE_DATE_TIME(DATE_TIME); + REFERENCE_DATE_TIME:long_name = "Date of reference for Julian days"; + REFERENCE_DATE_TIME:conventions = "YYYYMMDDHHMISS"; + REFERENCE_DATE_TIME:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; +// General information on each profile. + char PLATFORM_NUMBER(N_PROF, STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PROJECT_NAME(N_PROF, STRING64); + PROJECT_NAME:long_name = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PI_NAME (N_PROF, STRING64); + PI_NAME:long_name = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char STATION_PARAMETERS(N_PROF, N_PARAM,STRING16); + STATION_PARAMETERS:long_name = "List of available parameters for the station"; + STATION_PARAMETERS:conventions = "Argo reference table 3"; + STATION_PARAMETERS:_FillValue = " "; + int CYCLE_NUMBER(N_PROF); + CYCLE_NUMBER:long_name = "Float cycle number"; + CYCLE_NUMBER:conventions = "0..N, 0 : launch cycle (if exists), 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + char DIRECTION(N_PROF); + DIRECTION:long_name = "Direction of the station profiles"; + DIRECTION:conventions = "A: ascending profiles, D: descending profiles"; + DIRECTION:_FillValue = " "; + char DATA_CENTRE(N_PROF, STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DC_REFERENCE(N_PROF, STRING32); + DC_REFERENCE:long_name = "Station unique identifier in data centre"; + DC_REFERENCE:conventions = "Data centre convention"; + DC_REFERENCE:_FillValue = " "; + char DATA_STATE_INDICATOR(N_PROF, STRING4); + DATA_STATE_INDICATOR:long_name = "Degree of processing the data have passed through"; + DATA_STATE_INDICATOR:conventions = "Argo reference table 6"; + DATA_STATE_INDICATOR:_FillValue = " "; + char DATA_MODE(N_PROF); + DATA_MODE:long_name = "Delayed mode or real time data"; + DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + DATA_MODE:_FillValue = " "; + char PLATFORM_TYPE(N_PROF, STRING32); + PLATFORM_TYPE:long_name = "Type of float"; + PLATFORM_TYPE:_FillValue = " "; + char FLOAT_SERIAL_NO(N_PROF, STRING16); + FLOAT_SERIAL_NO:long_name = "Serial number of the float"; + FLOAT_SERIAL_NO:_FillValue = " "; + char FIRMWARE_VERSION(N_PROF, STRING16); + FIRMWARE_VERSION:long_name = "Instrument version"; + FIRMWARE_VERSION:_FillValue = " "; + char WMO_INST_TYPE(N_PROF, STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + double JULD(N_PROF); + JULD:long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + JULD:standard_name = "time"; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD:_FillValue = 999999.; + JULD:axis = "T"; + char JULD_QC(N_PROF); + JULD_QC:long_name = "Quality on Date and Time"; + JULD_QC:conventions = "Argo reference table 2"; + JULD_QC:_FillValue = " "; + double JULD_LOCATION(N_PROF); + JULD_LOCATION:long_name = "Julian day (UTC) of the location relative to REFERENCE_DATE_TIME"; + JULD_LOCATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_LOCATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_LOCATION:_FillValue = 999999.; + double LATITUDE(N_PROF); + LATITUDE:long_name = "Latitude of the station, best estimate"; + LATITUDE:standard_name = "latitude"; + LATITUDE:units = "degree_north"; + LATITUDE:_FillValue = 99999.; + LATITUDE:valid_min = -90.; + LATITUDE:valid_max = 90.; + LATITUDE:axis = "Y"; + double LONGITUDE(N_PROF); + LONGITUDE:long_name = "Longitude of the station, best estimate"; + LONGITUDE:standard_name = "longitude"; + LONGITUDE:units = "degree_east"; + LONGITUDE:_FillValue = 99999.; + LONGITUDE:valid_min = -180.; + LONGITUDE:valid_max = 180.; + LONGITUDE:axis = "X"; + char POSITION_QC(N_PROF); + POSITION_QC:long_name = "Quality on position (latitude and longitude)"; + POSITION_QC:conventions = "Argo reference table 2"; + POSITION_QC:_FillValue = " "; + char POSITIONING_SYSTEM(N_PROF, STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + char VERTICAL_SAMPLING_SCHEME (N_PROF, STRING256); + VERTICAL_SAMPLING_SCHEME:long_name = "Vertical sampling scheme"; + VERTICAL_SAMPLING_SCHEME:conventions = "Argo reference table 16"; + VERTICAL_SAMPLING_SCHEME:_FillValue = " "; + int CONFIG_MISSION_NUMBER (N_PROF); + CONFIG_MISSION_NUMBER:long_name = "Float's mission number for each profile"; + CONFIG_MISSION_NUMBER:conventions = "0..N, 0 : launch mission (if exists), 1 : first complete mission"; + CONFIG_MISSION_NUMBER:_FillValue = 99999; + +// Measurements for each profile: +// The "physical parameter" variables (including PROFILE_*_QC) are +// built dynamically based on the entries in argo-physical_params-spec-v* +// +// The basic template is: +// char PROFILE__QC(N_PROF); +// PROFILE__QC:long_name = "Global quality flag of PRES profile"; +// PROFILE__QC:conventions = "Argo reference table 2a"; +// PROFILE__QC:_FillValue = " "; +// +// float

      (N_PROF, N_LEVELS); +//

      :long_name = ""; +//

      :standard_name = ""; +//

      :_FillValue = fillValuePARAM +//

      :units = ""; +//

      :valid_min = ""; +//

      :valid_max = ""; +//

      :comment = ""; (version-specific) +//

      :C_format = ATTR_IGNORE_VALUE; //..means ignore setting +//

      :FORTRAN_format = ATTR_IGNORE_VALUE; //..means ignore setting +//

      :resolution = ATTR_IGNORE_VALUE; +//

      :comment_on_resolution = ATTR_IGNORE; ///..means ignore entirely +// only in v3.1 and beyond (but technically would +// be allowed in earlier versions if it showed up +// +// char

      _QC(N_PROF, N_LEVELS); +//

      _QC:long_name = "quality flag"; +//

      _QC:conventions = "Argo reference table 2"; +//

      _QC:_FillValue = " "; +// +// where

      = , _ADJUSTED +// +// Calibration information for each profile + char PARAMETER(N_PROF, N_CALIB, N_PARAM,STRING16); + PARAMETER:long_name = "List of parameters with calibration information"; + PARAMETER:conventions = "Argo reference table 3"; + PARAMETER:_FillValue = " "; + char SCIENTIFIC_CALIB_EQUATION(N_PROF, N_CALIB, N_PARAM,STRING256); + SCIENTIFIC_CALIB_EQUATION:long_name = "Calibration equation for this parameter"; + SCIENTIFIC_CALIB_EQUATION:_FillValue = " "; + char SCIENTIFIC_CALIB_COEFFICIENT(N_PROF, N_CALIB, N_PARAM,STRING256); + SCIENTIFIC_CALIB_COEFFICIENT:long_name = "Calibration coefficients for this equation"; + SCIENTIFIC_CALIB_COEFFICIENT:_FillValue = " "; + char SCIENTIFIC_CALIB_COMMENT(N_PROF, N_CALIB, N_PARAM,STRING256); + SCIENTIFIC_CALIB_COMMENT:long_name = "Comment applying to this parameter calibration"; + SCIENTIFIC_CALIB_COMMENT:_FillValue = " "; + char SCIENTIFIC_CALIB_DATE(N_PROF, N_CALIB, N_PARAM, DATE_TIME); + SCIENTIFIC_CALIB_DATE:_FillValue = " "; + SCIENTIFIC_CALIB_DATE:long_name = "Date of calibration"; +// History information for each profile + char HISTORY_INSTITUTION ( N_HISTORY, N_PROF, STRING4); + HISTORY_INSTITUTION:long_name = "Institution which performed action"; + HISTORY_INSTITUTION:conventions = "Argo reference table 4"; + HISTORY_INSTITUTION:_FillValue = " "; + char HISTORY_STEP ( N_HISTORY, N_PROF, STRING4); + HISTORY_STEP:long_name = "Step in data processing"; + HISTORY_STEP:conventions = "Argo reference table 12"; + HISTORY_STEP:_FillValue = " "; + char HISTORY_SOFTWARE ( N_HISTORY, N_PROF, STRING4); + HISTORY_SOFTWARE:long_name = "Name of software which performed action"; + HISTORY_SOFTWARE:conventions = "Institution dependent"; + HISTORY_SOFTWARE:_FillValue = " "; + char HISTORY_SOFTWARE_RELEASE ( N_HISTORY, N_PROF, STRING4); + HISTORY_SOFTWARE_RELEASE:long_name = "Version/release of software which performed action"; + HISTORY_SOFTWARE_RELEASE:conventions = "Institution dependent"; + HISTORY_SOFTWARE_RELEASE:_FillValue = " "; + char HISTORY_REFERENCE ( N_HISTORY, N_PROF, STRING64); + HISTORY_REFERENCE:long_name = "Reference of database"; + HISTORY_REFERENCE:conventions = "Institution dependent"; + HISTORY_REFERENCE:_FillValue = " "; + char HISTORY_DATE( N_HISTORY, N_PROF, DATE_TIME); + HISTORY_DATE:long_name = "Date the history record was created"; + HISTORY_DATE:conventions = "YYYYMMDDHHMISS"; + HISTORY_DATE:_FillValue = " "; + char HISTORY_ACTION( N_HISTORY, N_PROF, STRING4); + HISTORY_ACTION:long_name = "Action performed on data"; + HISTORY_ACTION:conventions = "Argo reference table 7"; + HISTORY_ACTION:_FillValue = " "; + char HISTORY_PARAMETER( N_HISTORY, N_PROF, STRING16); + HISTORY_PARAMETER:long_name = "Station parameter action is performed on"; + HISTORY_PARAMETER:conventions = "Argo reference table 3"; + HISTORY_PARAMETER:_FillValue = " "; + float HISTORY_START_PRES( N_HISTORY, N_PROF); + HISTORY_START_PRES:long_name = "Start pressure action applied on"; + HISTORY_START_PRES:_FillValue = 99999.f; + HISTORY_START_PRES:units = "decibar"; + float HISTORY_STOP_PRES( N_HISTORY, N_PROF); + HISTORY_STOP_PRES:long_name = "Stop pressure action applied on"; + HISTORY_STOP_PRES:_FillValue = 99999.f; + HISTORY_STOP_PRES:units = "decibar"; + float HISTORY_PREVIOUS_VALUE( N_HISTORY, N_PROF); + HISTORY_PREVIOUS_VALUE:long_name = "Parameter/Flag previous value before action"; + HISTORY_PREVIOUS_VALUE:_FillValue = 99999.f; + char HISTORY_QCTEST( N_HISTORY, N_PROF, STRING16); + HISTORY_QCTEST:long_name = "Documentation of tests performed, tests failed (in hex form)"; + HISTORY_QCTEST:conventions = "Write tests performed when ACTION=QCP$; tests failed when ACTION=QCF$"; + HISTORY_QCTEST:_FillValue = " "; + +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.1.attr_regexp b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.1.attr_regexp new file mode 100644 index 0000000..70a0f4f --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.1.attr_regexp @@ -0,0 +1,4 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +POSITION_ERROR_ESTIMATED:long_name = "Position error (estimated|determined) by the real-time or delayed-mode process"; NOWARN diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.1.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.1.cdl new file mode 100644 index 0000000..96097fa --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.1.cdl @@ -0,0 +1,242 @@ +netcdf argo-profile-v3.1-spec { + +//@ DATA_TYPE = "Argo profile" +//@ FORMAT_VERSION = "3.1" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: 1225 $ +//@ $Date: 2021-03-02 20:50:37 +0000 (Tue, 02 Mar 2021) $ + +// global attributes: + :title = "Argo float vertical profile" ; + :institution = "<+>US GDAC" ; + :source = "Argo float" ; + :history = "<+>"; + :references = "http://www.argodatamgt.org/Documentation" ; + :user_manual_version = "3.1" ; /*REGEX = "3\..*" */ + :Conventions = "Argo-3.1 CF-1.6" ; /*REGEX = "Argo-3\..* +CF-.*" */ + :featureType = "trajectoryProfile" ; + +dimensions: + DATE_TIME = 14; + STRING1024 = 1024; + STRING256 = 256; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_PROF = _unspecified_; + N_PARAM = _unspecified_; + N_LEVELS = _unspecified_; + N_CALIB = _unspecified_; + N_HISTORY = UNLIMITED; + +variables: +// General information on the profile file. + char DATA_TYPE(STRING16); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:conventions = "Argo reference table 1"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char REFERENCE_DATE_TIME(DATE_TIME); + REFERENCE_DATE_TIME:long_name = "Date of reference for Julian days"; + REFERENCE_DATE_TIME:conventions = "YYYYMMDDHHMISS"; + REFERENCE_DATE_TIME:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; +// General information on each profile. + char PLATFORM_NUMBER(N_PROF, STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PROJECT_NAME(N_PROF, STRING64); + PROJECT_NAME:long_name = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PI_NAME (N_PROF, STRING64); + PI_NAME:long_name = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char STATION_PARAMETERS(N_PROF, N_PARAM,STRING16); + STATION_PARAMETERS:long_name = "List of available parameters for the station"; + STATION_PARAMETERS:conventions = "Argo reference table 3"; + STATION_PARAMETERS:_FillValue = " "; + int CYCLE_NUMBER(N_PROF); + CYCLE_NUMBER:long_name = "Float cycle number"; + CYCLE_NUMBER:conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + char DIRECTION(N_PROF); + DIRECTION:long_name = "Direction of the station profiles"; + DIRECTION:conventions = "A: ascending profiles, D: descending profiles"; + DIRECTION:_FillValue = " "; + char DATA_CENTRE(N_PROF, STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DC_REFERENCE(N_PROF, STRING32); + DC_REFERENCE:long_name = "Station unique identifier in data centre"; + DC_REFERENCE:conventions = "Data centre convention"; + DC_REFERENCE:_FillValue = " "; + char DATA_STATE_INDICATOR(N_PROF, STRING4); + DATA_STATE_INDICATOR:long_name = "Degree of processing the data have passed through"; + DATA_STATE_INDICATOR:conventions = "Argo reference table 6"; + DATA_STATE_INDICATOR:_FillValue = " "; + char DATA_MODE(N_PROF); + DATA_MODE:long_name = "Delayed mode or real time data"; + DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + DATA_MODE:_FillValue = " "; + char PLATFORM_TYPE(N_PROF, STRING32); + PLATFORM_TYPE:long_name = "Type of float"; + PLATFORM_TYPE:conventions = "Argo reference table 23"; + PLATFORM_TYPE:_FillValue = " "; + char FLOAT_SERIAL_NO(N_PROF, STRING32); + FLOAT_SERIAL_NO:long_name = "Serial number of the float"; + FLOAT_SERIAL_NO:_FillValue = " "; + char FIRMWARE_VERSION(N_PROF, STRING64|STRING32); + FIRMWARE_VERSION:long_name = "Instrument firmware version"; + FIRMWARE_VERSION:_FillValue = " "; + char WMO_INST_TYPE(N_PROF, STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + double JULD(N_PROF); + JULD:long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + JULD:standard_name = "time"; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD:resolution = "<+>DOUBLE:999999."; + JULD:_FillValue = 999999.; + JULD:axis = "T"; + char JULD_QC(N_PROF); + JULD_QC:long_name = "Quality on date and time"; + JULD_QC:conventions = "Argo reference table 2"; + JULD_QC:_FillValue = " "; + double JULD_LOCATION(N_PROF); + JULD_LOCATION:long_name = "Julian day (UTC) of the location relative to REFERENCE_DATE_TIME"; + JULD_LOCATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_LOCATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_LOCATION:resolution = "<+>DOUBLE:999999."; + JULD_LOCATION:_FillValue = 999999.; + double LATITUDE(N_PROF); + LATITUDE:long_name = "Latitude of the station, best estimate"; + LATITUDE:standard_name = "latitude"; + LATITUDE:units = "degree_north"; + LATITUDE:_FillValue = 99999.; + LATITUDE:valid_min = -90.; + LATITUDE:valid_max = 90.; + LATITUDE:axis = "Y"; + double LONGITUDE(N_PROF); + LONGITUDE:long_name = "Longitude of the station, best estimate"; + LONGITUDE:standard_name = "longitude"; + LONGITUDE:units = "degree_east"; + LONGITUDE:_FillValue = 99999.; + LONGITUDE:valid_min = -180.; + LONGITUDE:valid_max = 180.; + LONGITUDE:axis = "X"; + char POSITION_QC(N_PROF); + POSITION_QC:long_name = "Quality on position (latitude and longitude)"; + POSITION_QC:conventions = "Argo reference table 2"; + POSITION_QC:_FillValue = " "; + char POSITIONING_SYSTEM(N_PROF, STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + float POSITION_ERROR_REPORTED(N_PROF); + POSITION_ERROR_REPORTED:long_name = "Position error reported by the positioning system"; + POSITION_ERROR_REPORTED:units = "meters"; + POSITION_ERROR_REPORTED:_FillValue = 99999.f; + float POSITION_ERROR_ESTIMATED(N_PROF); + POSITION_ERROR_ESTIMATED:long_name = "Position error estimated by real-time or delayed-mode process"; + POSITION_ERROR_ESTIMATED:units = "meters"; + POSITION_ERROR_ESTIMATED:_FillValue = 99999.f; + char POSITION_ERROR_ESTIMATED_COMMENT(N_PROF, STRING1024); + POSITION_ERROR_ESTIMATED_COMMENT:long_name = "Comment on the method used to determine POSITION_ERROR_ESTIMATED"; + POSITION_ERROR_ESTIMATED_COMMENT:_FillValue = " "; + char VERTICAL_SAMPLING_SCHEME (N_PROF, STRING256); + VERTICAL_SAMPLING_SCHEME:long_name = "Vertical sampling scheme"; + VERTICAL_SAMPLING_SCHEME:conventions = "Argo reference table 16"; + VERTICAL_SAMPLING_SCHEME:_FillValue = " "; + int CONFIG_MISSION_NUMBER (N_PROF); +// CONFIG_MISSION_NUMBER:long_name = "Float\'s mission number for each profile"; + CONFIG_MISSION_NUMBER:long_name = "Unique number denoting the missions performed by the float"; + CONFIG_MISSION_NUMBER:conventions = "1...N, 1 : first complete mission"; + CONFIG_MISSION_NUMBER:_FillValue = 99999; +// Measurements for each profile +// ..added based on the argo-params-spec.v3.1 entries +// Calibration information for each profile + char PARAMETER(N_PROF, N_CALIB, N_PARAM,STRING16); + PARAMETER:long_name = "List of parameters with calibration information"; + PARAMETER:conventions = "Argo reference table 3"; + PARAMETER:_FillValue = " "; + char SCIENTIFIC_CALIB_EQUATION(N_PROF, N_CALIB, N_PARAM,STRING256); + SCIENTIFIC_CALIB_EQUATION:long_name = "Calibration equation for this parameter"; + SCIENTIFIC_CALIB_EQUATION:_FillValue = " "; + char SCIENTIFIC_CALIB_COEFFICIENT(N_PROF, N_CALIB, N_PARAM,STRING256); + SCIENTIFIC_CALIB_COEFFICIENT:long_name = "Calibration coefficients for this equation"; + SCIENTIFIC_CALIB_COEFFICIENT:_FillValue = " "; + char SCIENTIFIC_CALIB_COMMENT(N_PROF, N_CALIB, N_PARAM,STRING256); + SCIENTIFIC_CALIB_COMMENT:long_name = "Comment applying to this parameter calibration"; + SCIENTIFIC_CALIB_COMMENT:_FillValue = " "; + char SCIENTIFIC_CALIB_DATE(N_PROF, N_CALIB, N_PARAM, DATE_TIME); + SCIENTIFIC_CALIB_DATE:long_name = "Date of calibration"; + SCIENTIFIC_CALIB_DATE:conventions = "YYYYMMDDHHMISS"; + SCIENTIFIC_CALIB_DATE:_FillValue = " "; +// History information for each profile + char HISTORY_INSTITUTION ( N_HISTORY, N_PROF, STRING4); + HISTORY_INSTITUTION:long_name = "Institution which performed action"; + HISTORY_INSTITUTION:conventions = "Argo reference table 4"; + HISTORY_INSTITUTION:_FillValue = " "; + char HISTORY_STEP ( N_HISTORY, N_PROF, STRING4); + HISTORY_STEP:long_name = "Step in data processing"; + HISTORY_STEP:conventions = "Argo reference table 12"; + HISTORY_STEP:_FillValue = " "; + char HISTORY_SOFTWARE ( N_HISTORY, N_PROF, STRING4); + HISTORY_SOFTWARE:long_name = "Name of software which performed action"; + HISTORY_SOFTWARE:conventions = "Institution dependent"; + HISTORY_SOFTWARE:_FillValue = " "; + char HISTORY_SOFTWARE_RELEASE ( N_HISTORY, N_PROF, STRING4); + HISTORY_SOFTWARE_RELEASE:long_name = "Version/release of software which performed action"; + HISTORY_SOFTWARE_RELEASE:conventions = "Institution dependent"; + HISTORY_SOFTWARE_RELEASE:_FillValue = " "; + char HISTORY_REFERENCE ( N_HISTORY, N_PROF, STRING64); + HISTORY_REFERENCE:long_name = "Reference of database"; + HISTORY_REFERENCE:conventions = "Institution dependent"; + HISTORY_REFERENCE:_FillValue = " "; + char HISTORY_DATE( N_HISTORY, N_PROF, DATE_TIME); + HISTORY_DATE:long_name = "Date the history record was created"; + HISTORY_DATE:conventions = "YYYYMMDDHHMISS"; + HISTORY_DATE:_FillValue = " "; + char HISTORY_ACTION( N_HISTORY, N_PROF, STRING4); + HISTORY_ACTION:long_name = "Action performed on data"; + HISTORY_ACTION:conventions = "Argo reference table 7"; + HISTORY_ACTION:_FillValue = " "; + char HISTORY_PARAMETER( N_HISTORY, N_PROF, STRING16); + HISTORY_PARAMETER:long_name = "Station parameter action is performed on"; + HISTORY_PARAMETER:conventions = "Argo reference table 3"; + HISTORY_PARAMETER:_FillValue = " "; + float HISTORY_START_PRES( N_HISTORY, N_PROF); + HISTORY_START_PRES:long_name = "Start pressure action applied on"; + HISTORY_START_PRES:_FillValue = 99999.f; + HISTORY_START_PRES:units = "decibar"; + float HISTORY_STOP_PRES( N_HISTORY, N_PROF); + HISTORY_STOP_PRES:long_name = "Stop pressure action applied on"; + HISTORY_STOP_PRES:_FillValue = 99999.f; + HISTORY_STOP_PRES:units = "decibar"; + float HISTORY_PREVIOUS_VALUE( N_HISTORY, N_PROF); + HISTORY_PREVIOUS_VALUE:long_name = "Parameter/Flag previous value before action"; + HISTORY_PREVIOUS_VALUE:_FillValue = 99999.f; + char HISTORY_QCTEST( N_HISTORY, N_PROF, STRING16); + HISTORY_QCTEST:long_name = "Documentation of tests performed, tests failed (in hex form)"; + HISTORY_QCTEST:conventions = "Write tests performed when ACTION=QCP$; tests failed when ACTION=QCF$"; + HISTORY_QCTEST:_FillValue = " "; +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.1.opt b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.1.opt new file mode 100644 index 0000000..296d4a6 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-profile-spec-v3.1.opt @@ -0,0 +1,8 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +STRING1024 + +POSITION_ERROR_REPORTED +POSITION_ERROR_ESTIMATED +POSITION_ERROR_ESTIMATED_COMMENT diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.3 b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.3 new file mode 100644 index 0000000..716f4a7 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.3 @@ -0,0 +1,78 @@ +// Table of Units for Technical and Configuration files - updated 11 May 2016 | | | +// SI version of approved units - these are the NEW approved units in ALL cases | data format | definition | Notes: + +COUNT | integer | no SI equivalent | a number of times something happened +NUMBER | integer | no equivalent and already in use | +LOGICAL | logical | "true/yes/1, false/no/0 (already used in upper case)" | "true/false, 0/1, yes/ no" +hex | hex | no SI or UD equivalent but this is conventional usage | hexadecimal +bit | integer | UD unit | +byte | integer | no SI or UD equivalent but this is conventional usage | +kbyte | integer | kilobyte | kilobyte + +days | integer | elapsed period or duration in days or possibly day of year number | a number of days +hours | float | elapsed period or duration in hours - can be decimal | a number of hours +minutes | integer | elapsed period or duration in minutes | number of minutes +seconds | integer | elapsed period or duration in seconds | number of seconds +dsec | integer | deci-seconds | decisecond +csec | integer | centi seconds - no SI nor UD unit equivalent | centisecond +msec | integer | milliseconds | milliseconds +usec | integer | microseconds | +FloatDay | integer | the number of days since the day of the first dive (FloatDAY = 0) | "relative to reference day - for eg., day of year " +dsec/day | float | no SI or UD equivalent | + +DDMMYYYY | date/time | "no SI or UD equivalent but this is conventional usage - padded to 8 characters, no non-numeric characters " | calendar - day/month/year +YYYYMMDD | date/time | "no SI or UD equivalent but this is conventional usage - padded to 8 characters, no non-numeric characters " | +HHMMSS | date/time | "no SI or UD equivalent but this is conventional usage - padded to 6 characters, no non-numeric characters " | clock - hours/minutes/seconds +YYYYMMDDHHMMSS | date/time | conventional usage - note - no non-numeric characters are allowed - example: 20150504123000 = 12:30 4 April 2015 | clock/calendar - year/month/day/year/minutes/seconds +DD | date/time | "integer day padded to two characters, no non-numeric characters" | calendar - day +HH | date/time | "integer hours padded to two characters, no non-numeric characters" | clock - hour +MM | date/time | "integer month padded to two characters, no non-numeric characters" | calendar - month +YYYY | date/time | "integer year - require 4 characters, no non-numeric characters" | calendar - year +MMSS | date/time | "integer minutes:seconds - padded to 4 characters only, no non-numeric characters" | clock - minutes/seconds +HHMM | date/time | "integer hours:minutes - padded to 4 characters only, no non-numeric characters" | clock - hours/minutes + +bar | float | SI unit | +cbar | float | centibar | +dbar | float | decibar | +mbar | float | millibar | milliBar +mbarRange | string | | +inHg | float | no SI equivalent but this is the UDunit | inches of mercury - a measure of pressure +PercentAtm | float | percent atmosphere | +percent | float | percent saturation (for example) | + +degC | float | SI unit doesn't work but this is the UDunit | +mdegC | float | millidegrees | millidegrees +psu | float | convention seems to be lower case but no SI or UD equivalent | Practical Salinity Units +mpsu | float | milli-PSU units | milli-PSU units + +ppb | float | not in any unit list. | parts per billion + +hertz | float | frequency | frequency +amps | float | ampere - SI unit | +mA | float | milliamps | +volts | float | SI unit | +mV | float | millivolts | +voltseconds | float | volt seconds - no equivalent | integrated measure volts*seconds + +mmol/L | float | spell it out for clarity - Udunit | milli moles per liter +umol/L | float | micromoles/litre | micromoles per liter +umol/kg | float | micromoles/kilogram | micromoles per kilogram +ug/L | float | micrograms/litre | micrograms per liter +kg/m^3 | float | kilograms per metre cubed | kilograms per meter cubed +mg/m^3 | float | milligrams per meter cubed | milligrams per meter cubed +mm/s | float | millimeters per second | millimeters per second +ml/L | float | millilitre per litre | + +angularDeg | float | no SI or UD equivalent - use D to make it more readable and 'angular' to distinguish it from other types of degrees | angular degree + +m^-1 | float | per meter - note - this is the only time this will not use '/' to denote denominator | per meter +cm/s | float | SI unit | centimeters per second +cm^3 | float | centimeters cubed - conforms to neither SI nor U units | centimeters cubed + +mho/m | float | milli ohms per metre - do we require the use of siemens? | conductance - reciprocal ohm +siemens | float | siemens - equivalent to mho | practical unit of conductance = Mho +siemens/cm | float | siemens per centimeter | +NTU | integer | Nephelometric Turbidity Units | Nephelometric Turbidity Units +m^-1/sr | float | per meter per steradian | +uW/cm^2/nm | float | micro watts/cm squared/nannometer | +nm | float | nanometer | diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.3.deprecated b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.3.deprecated new file mode 100644 index 0000000..230dfab --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.3.deprecated @@ -0,0 +1,75 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +//These are the old units and will no longer be accepted after DACs are given time to convert : +COUNT +NUMBER +LOGICAL +HEX +BIT +BYTE +KBYTE + +DAYS +HOURS +MINUTES +SECONDS +cSECONDS +mSEC +FloatDAY +DeciSecondsperDay + +DDMMYYYY + +HHMMSS +YYYYMMDDHHMMSS +DD +HH +MM +YY +MMSS +HHMM + +BAR +dBAR +mBAR +inHG +PercentATMOS + + +DegC +mDegC +PSU +mPSU + +PPB + +HERTZ +AMPS +mAMPS +VOLTS +VOLTSECONDS + +mMOL/L +uMOL/L +uMOL/KG +uG/L +KG/M^3 +MG/M^3 +mm/S + +Degree + +perM +CM/S +CM^3 + +Mho/M +mSIEMENS +mSIEMENS/CM +NTU + +probably never officially accepted but added for Coriolis' sanity +DDMMYYYYHHMMSS +YYYYMMDD +STRING diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.4 b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.4 new file mode 100644 index 0000000..716f4a7 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.4 @@ -0,0 +1,78 @@ +// Table of Units for Technical and Configuration files - updated 11 May 2016 | | | +// SI version of approved units - these are the NEW approved units in ALL cases | data format | definition | Notes: + +COUNT | integer | no SI equivalent | a number of times something happened +NUMBER | integer | no equivalent and already in use | +LOGICAL | logical | "true/yes/1, false/no/0 (already used in upper case)" | "true/false, 0/1, yes/ no" +hex | hex | no SI or UD equivalent but this is conventional usage | hexadecimal +bit | integer | UD unit | +byte | integer | no SI or UD equivalent but this is conventional usage | +kbyte | integer | kilobyte | kilobyte + +days | integer | elapsed period or duration in days or possibly day of year number | a number of days +hours | float | elapsed period or duration in hours - can be decimal | a number of hours +minutes | integer | elapsed period or duration in minutes | number of minutes +seconds | integer | elapsed period or duration in seconds | number of seconds +dsec | integer | deci-seconds | decisecond +csec | integer | centi seconds - no SI nor UD unit equivalent | centisecond +msec | integer | milliseconds | milliseconds +usec | integer | microseconds | +FloatDay | integer | the number of days since the day of the first dive (FloatDAY = 0) | "relative to reference day - for eg., day of year " +dsec/day | float | no SI or UD equivalent | + +DDMMYYYY | date/time | "no SI or UD equivalent but this is conventional usage - padded to 8 characters, no non-numeric characters " | calendar - day/month/year +YYYYMMDD | date/time | "no SI or UD equivalent but this is conventional usage - padded to 8 characters, no non-numeric characters " | +HHMMSS | date/time | "no SI or UD equivalent but this is conventional usage - padded to 6 characters, no non-numeric characters " | clock - hours/minutes/seconds +YYYYMMDDHHMMSS | date/time | conventional usage - note - no non-numeric characters are allowed - example: 20150504123000 = 12:30 4 April 2015 | clock/calendar - year/month/day/year/minutes/seconds +DD | date/time | "integer day padded to two characters, no non-numeric characters" | calendar - day +HH | date/time | "integer hours padded to two characters, no non-numeric characters" | clock - hour +MM | date/time | "integer month padded to two characters, no non-numeric characters" | calendar - month +YYYY | date/time | "integer year - require 4 characters, no non-numeric characters" | calendar - year +MMSS | date/time | "integer minutes:seconds - padded to 4 characters only, no non-numeric characters" | clock - minutes/seconds +HHMM | date/time | "integer hours:minutes - padded to 4 characters only, no non-numeric characters" | clock - hours/minutes + +bar | float | SI unit | +cbar | float | centibar | +dbar | float | decibar | +mbar | float | millibar | milliBar +mbarRange | string | | +inHg | float | no SI equivalent but this is the UDunit | inches of mercury - a measure of pressure +PercentAtm | float | percent atmosphere | +percent | float | percent saturation (for example) | + +degC | float | SI unit doesn't work but this is the UDunit | +mdegC | float | millidegrees | millidegrees +psu | float | convention seems to be lower case but no SI or UD equivalent | Practical Salinity Units +mpsu | float | milli-PSU units | milli-PSU units + +ppb | float | not in any unit list. | parts per billion + +hertz | float | frequency | frequency +amps | float | ampere - SI unit | +mA | float | milliamps | +volts | float | SI unit | +mV | float | millivolts | +voltseconds | float | volt seconds - no equivalent | integrated measure volts*seconds + +mmol/L | float | spell it out for clarity - Udunit | milli moles per liter +umol/L | float | micromoles/litre | micromoles per liter +umol/kg | float | micromoles/kilogram | micromoles per kilogram +ug/L | float | micrograms/litre | micrograms per liter +kg/m^3 | float | kilograms per metre cubed | kilograms per meter cubed +mg/m^3 | float | milligrams per meter cubed | milligrams per meter cubed +mm/s | float | millimeters per second | millimeters per second +ml/L | float | millilitre per litre | + +angularDeg | float | no SI or UD equivalent - use D to make it more readable and 'angular' to distinguish it from other types of degrees | angular degree + +m^-1 | float | per meter - note - this is the only time this will not use '/' to denote denominator | per meter +cm/s | float | SI unit | centimeters per second +cm^3 | float | centimeters cubed - conforms to neither SI nor U units | centimeters cubed + +mho/m | float | milli ohms per metre - do we require the use of siemens? | conductance - reciprocal ohm +siemens | float | siemens - equivalent to mho | practical unit of conductance = Mho +siemens/cm | float | siemens per centimeter | +NTU | integer | Nephelometric Turbidity Units | Nephelometric Turbidity Units +m^-1/sr | float | per meter per steradian | +uW/cm^2/nm | float | micro watts/cm squared/nannometer | +nm | float | nanometer | diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.4.deprecated b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.4.deprecated new file mode 100644 index 0000000..230dfab --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v2.4.deprecated @@ -0,0 +1,75 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +//These are the old units and will no longer be accepted after DACs are given time to convert : +COUNT +NUMBER +LOGICAL +HEX +BIT +BYTE +KBYTE + +DAYS +HOURS +MINUTES +SECONDS +cSECONDS +mSEC +FloatDAY +DeciSecondsperDay + +DDMMYYYY + +HHMMSS +YYYYMMDDHHMMSS +DD +HH +MM +YY +MMSS +HHMM + +BAR +dBAR +mBAR +inHG +PercentATMOS + + +DegC +mDegC +PSU +mPSU + +PPB + +HERTZ +AMPS +mAMPS +VOLTS +VOLTSECONDS + +mMOL/L +uMOL/L +uMOL/KG +uG/L +KG/M^3 +MG/M^3 +mm/S + +Degree + +perM +CM/S +CM^3 + +Mho/M +mSIEMENS +mSIEMENS/CM +NTU + +probably never officially accepted but added for Coriolis' sanity +DDMMYYYYHHMMSS +YYYYMMDD +STRING diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v3.0 b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v3.0 new file mode 100644 index 0000000..716f4a7 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v3.0 @@ -0,0 +1,78 @@ +// Table of Units for Technical and Configuration files - updated 11 May 2016 | | | +// SI version of approved units - these are the NEW approved units in ALL cases | data format | definition | Notes: + +COUNT | integer | no SI equivalent | a number of times something happened +NUMBER | integer | no equivalent and already in use | +LOGICAL | logical | "true/yes/1, false/no/0 (already used in upper case)" | "true/false, 0/1, yes/ no" +hex | hex | no SI or UD equivalent but this is conventional usage | hexadecimal +bit | integer | UD unit | +byte | integer | no SI or UD equivalent but this is conventional usage | +kbyte | integer | kilobyte | kilobyte + +days | integer | elapsed period or duration in days or possibly day of year number | a number of days +hours | float | elapsed period or duration in hours - can be decimal | a number of hours +minutes | integer | elapsed period or duration in minutes | number of minutes +seconds | integer | elapsed period or duration in seconds | number of seconds +dsec | integer | deci-seconds | decisecond +csec | integer | centi seconds - no SI nor UD unit equivalent | centisecond +msec | integer | milliseconds | milliseconds +usec | integer | microseconds | +FloatDay | integer | the number of days since the day of the first dive (FloatDAY = 0) | "relative to reference day - for eg., day of year " +dsec/day | float | no SI or UD equivalent | + +DDMMYYYY | date/time | "no SI or UD equivalent but this is conventional usage - padded to 8 characters, no non-numeric characters " | calendar - day/month/year +YYYYMMDD | date/time | "no SI or UD equivalent but this is conventional usage - padded to 8 characters, no non-numeric characters " | +HHMMSS | date/time | "no SI or UD equivalent but this is conventional usage - padded to 6 characters, no non-numeric characters " | clock - hours/minutes/seconds +YYYYMMDDHHMMSS | date/time | conventional usage - note - no non-numeric characters are allowed - example: 20150504123000 = 12:30 4 April 2015 | clock/calendar - year/month/day/year/minutes/seconds +DD | date/time | "integer day padded to two characters, no non-numeric characters" | calendar - day +HH | date/time | "integer hours padded to two characters, no non-numeric characters" | clock - hour +MM | date/time | "integer month padded to two characters, no non-numeric characters" | calendar - month +YYYY | date/time | "integer year - require 4 characters, no non-numeric characters" | calendar - year +MMSS | date/time | "integer minutes:seconds - padded to 4 characters only, no non-numeric characters" | clock - minutes/seconds +HHMM | date/time | "integer hours:minutes - padded to 4 characters only, no non-numeric characters" | clock - hours/minutes + +bar | float | SI unit | +cbar | float | centibar | +dbar | float | decibar | +mbar | float | millibar | milliBar +mbarRange | string | | +inHg | float | no SI equivalent but this is the UDunit | inches of mercury - a measure of pressure +PercentAtm | float | percent atmosphere | +percent | float | percent saturation (for example) | + +degC | float | SI unit doesn't work but this is the UDunit | +mdegC | float | millidegrees | millidegrees +psu | float | convention seems to be lower case but no SI or UD equivalent | Practical Salinity Units +mpsu | float | milli-PSU units | milli-PSU units + +ppb | float | not in any unit list. | parts per billion + +hertz | float | frequency | frequency +amps | float | ampere - SI unit | +mA | float | milliamps | +volts | float | SI unit | +mV | float | millivolts | +voltseconds | float | volt seconds - no equivalent | integrated measure volts*seconds + +mmol/L | float | spell it out for clarity - Udunit | milli moles per liter +umol/L | float | micromoles/litre | micromoles per liter +umol/kg | float | micromoles/kilogram | micromoles per kilogram +ug/L | float | micrograms/litre | micrograms per liter +kg/m^3 | float | kilograms per metre cubed | kilograms per meter cubed +mg/m^3 | float | milligrams per meter cubed | milligrams per meter cubed +mm/s | float | millimeters per second | millimeters per second +ml/L | float | millilitre per litre | + +angularDeg | float | no SI or UD equivalent - use D to make it more readable and 'angular' to distinguish it from other types of degrees | angular degree + +m^-1 | float | per meter - note - this is the only time this will not use '/' to denote denominator | per meter +cm/s | float | SI unit | centimeters per second +cm^3 | float | centimeters cubed - conforms to neither SI nor U units | centimeters cubed + +mho/m | float | milli ohms per metre - do we require the use of siemens? | conductance - reciprocal ohm +siemens | float | siemens - equivalent to mho | practical unit of conductance = Mho +siemens/cm | float | siemens per centimeter | +NTU | integer | Nephelometric Turbidity Units | Nephelometric Turbidity Units +m^-1/sr | float | per meter per steradian | +uW/cm^2/nm | float | micro watts/cm squared/nannometer | +nm | float | nanometer | diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v3.0.deprecated b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v3.0.deprecated new file mode 100644 index 0000000..230dfab --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v3.0.deprecated @@ -0,0 +1,75 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +//These are the old units and will no longer be accepted after DACs are given time to convert : +COUNT +NUMBER +LOGICAL +HEX +BIT +BYTE +KBYTE + +DAYS +HOURS +MINUTES +SECONDS +cSECONDS +mSEC +FloatDAY +DeciSecondsperDay + +DDMMYYYY + +HHMMSS +YYYYMMDDHHMMSS +DD +HH +MM +YY +MMSS +HHMM + +BAR +dBAR +mBAR +inHG +PercentATMOS + + +DegC +mDegC +PSU +mPSU + +PPB + +HERTZ +AMPS +mAMPS +VOLTS +VOLTSECONDS + +mMOL/L +uMOL/L +uMOL/KG +uG/L +KG/M^3 +MG/M^3 +mm/S + +Degree + +perM +CM/S +CM^3 + +Mho/M +mSIEMENS +mSIEMENS/CM +NTU + +probably never officially accepted but added for Coriolis' sanity +DDMMYYYYHHMMSS +YYYYMMDD +STRING diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v3.1 b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v3.1 new file mode 100644 index 0000000..716f4a7 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-tech_units-spec-v3.1 @@ -0,0 +1,78 @@ +// Table of Units for Technical and Configuration files - updated 11 May 2016 | | | +// SI version of approved units - these are the NEW approved units in ALL cases | data format | definition | Notes: + +COUNT | integer | no SI equivalent | a number of times something happened +NUMBER | integer | no equivalent and already in use | +LOGICAL | logical | "true/yes/1, false/no/0 (already used in upper case)" | "true/false, 0/1, yes/ no" +hex | hex | no SI or UD equivalent but this is conventional usage | hexadecimal +bit | integer | UD unit | +byte | integer | no SI or UD equivalent but this is conventional usage | +kbyte | integer | kilobyte | kilobyte + +days | integer | elapsed period or duration in days or possibly day of year number | a number of days +hours | float | elapsed period or duration in hours - can be decimal | a number of hours +minutes | integer | elapsed period or duration in minutes | number of minutes +seconds | integer | elapsed period or duration in seconds | number of seconds +dsec | integer | deci-seconds | decisecond +csec | integer | centi seconds - no SI nor UD unit equivalent | centisecond +msec | integer | milliseconds | milliseconds +usec | integer | microseconds | +FloatDay | integer | the number of days since the day of the first dive (FloatDAY = 0) | "relative to reference day - for eg., day of year " +dsec/day | float | no SI or UD equivalent | + +DDMMYYYY | date/time | "no SI or UD equivalent but this is conventional usage - padded to 8 characters, no non-numeric characters " | calendar - day/month/year +YYYYMMDD | date/time | "no SI or UD equivalent but this is conventional usage - padded to 8 characters, no non-numeric characters " | +HHMMSS | date/time | "no SI or UD equivalent but this is conventional usage - padded to 6 characters, no non-numeric characters " | clock - hours/minutes/seconds +YYYYMMDDHHMMSS | date/time | conventional usage - note - no non-numeric characters are allowed - example: 20150504123000 = 12:30 4 April 2015 | clock/calendar - year/month/day/year/minutes/seconds +DD | date/time | "integer day padded to two characters, no non-numeric characters" | calendar - day +HH | date/time | "integer hours padded to two characters, no non-numeric characters" | clock - hour +MM | date/time | "integer month padded to two characters, no non-numeric characters" | calendar - month +YYYY | date/time | "integer year - require 4 characters, no non-numeric characters" | calendar - year +MMSS | date/time | "integer minutes:seconds - padded to 4 characters only, no non-numeric characters" | clock - minutes/seconds +HHMM | date/time | "integer hours:minutes - padded to 4 characters only, no non-numeric characters" | clock - hours/minutes + +bar | float | SI unit | +cbar | float | centibar | +dbar | float | decibar | +mbar | float | millibar | milliBar +mbarRange | string | | +inHg | float | no SI equivalent but this is the UDunit | inches of mercury - a measure of pressure +PercentAtm | float | percent atmosphere | +percent | float | percent saturation (for example) | + +degC | float | SI unit doesn't work but this is the UDunit | +mdegC | float | millidegrees | millidegrees +psu | float | convention seems to be lower case but no SI or UD equivalent | Practical Salinity Units +mpsu | float | milli-PSU units | milli-PSU units + +ppb | float | not in any unit list. | parts per billion + +hertz | float | frequency | frequency +amps | float | ampere - SI unit | +mA | float | milliamps | +volts | float | SI unit | +mV | float | millivolts | +voltseconds | float | volt seconds - no equivalent | integrated measure volts*seconds + +mmol/L | float | spell it out for clarity - Udunit | milli moles per liter +umol/L | float | micromoles/litre | micromoles per liter +umol/kg | float | micromoles/kilogram | micromoles per kilogram +ug/L | float | micrograms/litre | micrograms per liter +kg/m^3 | float | kilograms per metre cubed | kilograms per meter cubed +mg/m^3 | float | milligrams per meter cubed | milligrams per meter cubed +mm/s | float | millimeters per second | millimeters per second +ml/L | float | millilitre per litre | + +angularDeg | float | no SI or UD equivalent - use D to make it more readable and 'angular' to distinguish it from other types of degrees | angular degree + +m^-1 | float | per meter - note - this is the only time this will not use '/' to denote denominator | per meter +cm/s | float | SI unit | centimeters per second +cm^3 | float | centimeters cubed - conforms to neither SI nor U units | centimeters cubed + +mho/m | float | milli ohms per metre - do we require the use of siemens? | conductance - reciprocal ohm +siemens | float | siemens - equivalent to mho | practical unit of conductance = Mho +siemens/cm | float | siemens per centimeter | +NTU | integer | Nephelometric Turbidity Units | Nephelometric Turbidity Units +m^-1/sr | float | per meter per steradian | +uW/cm^2/nm | float | micro watts/cm squared/nannometer | +nm | float | nanometer | diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.2.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.2.cdl new file mode 100644 index 0000000..f3bc928 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.2.cdl @@ -0,0 +1,53 @@ +netcdf argo-technical-v2.1-spec { + +//@ DATA_TYPE = "Argo technical" +//@ FORMAT_VERSION = "2.1" +//@ HANDBOOK_VERSION = "1.2" +//@ $Revision: 656 $ +//@ $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +dimensions: + + DATE_TIME = 14; + STRING256 = 256; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_TECH_PARAM = _unspecified_; + N_CYCLE = UNLIMITED; + +variables: + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char DATA_TYPE(STRING32); + DATA_TYPE:comment = "Data type"; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:comment = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:comment = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:comment = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + char TECHNICAL_PARAMETER_NAME(N_CYCLE, N_TECH_PARAM, STRING32); + TECHNICAL_PARAMETER_NAME:long_name = "Name of technical parameters for this cycle"; + TECHNICAL_PARAMETER_NAME:_FillValue = " "; + char TECHNICAL_PARAMETER_VALUE(N_CYCLE, N_TECH_PARAM, STRING32); + TECHNICAL_PARAMETER_VALUE:long_name = "Value of technical parameters for this cycle"; + TECHNICAL_PARAMETER_VALUE:_FillValue = " "; +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.2.opt b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.2.opt new file mode 100644 index 0000000..1eca0b2 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.2.opt @@ -0,0 +1,5 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +TECHNICAL_PARAMETER_NAME +TECHNICAL_PARAMETER_VALUE diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.3.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.3.cdl new file mode 100644 index 0000000..e39eb65 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.3.cdl @@ -0,0 +1,58 @@ +netcdf argo-technical-v2.1-spec { + +//@ DATA_TYPE = "Argo technical" +//@ FORMAT_VERSION = "2.3" +//@ HANDBOOK_VERSION = "1.2" +//@ $Revision: 656 $ +//@ $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +dimensions: + + DATE_TIME = 14; + STRING128 = 128; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_TECH_PARAM = UNLIMITED; + +variables: + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char DATA_TYPE(STRING32); + DATA_TYPE:comment = "Data type"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:comment = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:comment = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:comment = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + char TECHNICAL_PARAMETER_NAME(N_TECH_PARAM, STRING128); + TECHNICAL_PARAMETER_NAME:long_name = "Name of technical parameters for this cycle"; + TECHNICAL_PARAMETER_NAME:_FillValue = " "; + char TECHNICAL_PARAMETER_VALUE(N_TECH_PARAM, STRING128); + TECHNICAL_PARAMETER_VALUE:long_name = "Value of technical parameters for this cycle"; + TECHNICAL_PARAMETER_VALUE:_FillValue = " "; + int CYCLE_NUMBER(N_TECH_PARAM); + CYCLE_NUMBER:long_name = "Float cycle number"; + CYCLE_NUMBER:conventions = "0..N, 0 : launch cycle (if exists), 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.3.opt b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.3.opt new file mode 100644 index 0000000..10dfe38 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.3.opt @@ -0,0 +1,5 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +STRING64 +STRING16 diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.4.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.4.cdl new file mode 100644 index 0000000..58446b9 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v2.4.cdl @@ -0,0 +1,62 @@ +netcdf argo-technical-v2.1-spec { + +//@ DATA_TYPE = "Argo technical" +//@ FORMAT_VERSION = "2.3" +//@ HANDBOOK_VERSION = "1.2" +//@ $Revision: 656 $ +//@ $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +dimensions: + + DATE_TIME = 14; + STRING128 = 128; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_TECH_PARAM = UNLIMITED; + +variables: + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char DATA_TYPE(STRING32); +// AB 20120820 +// DATA_TYPE:comment = "Data type"; + DATA_TYPE:_FillValue = " " + char FORMAT_VERSION(STRING4); +// AB 20120820 +// FORMAT_VERSION:comment = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); +// AB 20120820 +// HANDBOOK_VERSION:comment = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATE_CREATION(DATE_TIME); +// AB 20120820 +// DATE_CREATION:comment = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + char TECHNICAL_PARAMETER_NAME(N_TECH_PARAM, STRING128); + TECHNICAL_PARAMETER_NAME:long_name = "Name of technical parameter"; + TECHNICAL_PARAMETER_NAME:_FillValue = " "; + char TECHNICAL_PARAMETER_VALUE(N_TECH_PARAM, STRING128); + TECHNICAL_PARAMETER_VALUE:long_name = "Value of technical parameter"; + TECHNICAL_PARAMETER_VALUE:_FillValue = " "; + int CYCLE_NUMBER(N_TECH_PARAM); + CYCLE_NUMBER:long_name = "Float cycle number"; + CYCLE_NUMBER:conventions = "0..N, 0 : launch cycle (if exists), 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v3.0.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v3.0.cdl new file mode 100644 index 0000000..7da9360 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v3.0.cdl @@ -0,0 +1,59 @@ +netcdf argo-technical-v3.0-spec { + +//@ DATA_TYPE = "Argo technical" +//@ FORMAT_VERSION = "3.0" +//@ HANDBOOK_VERSION = "3.0" +//@ $Revision: 656 $ +//@ $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +dimensions: + + DATE_TIME = 14; + STRING128 = 128; + STRING32 = 32; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_TECH_PARAM = UNLIMITED; + +variables: + + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char DATA_TYPE(STRING32); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + char TECHNICAL_PARAMETER_NAME(N_TECH_PARAM, STRING128); + TECHNICAL_PARAMETER_NAME:long_name = "Name of technical parameter"; + TECHNICAL_PARAMETER_NAME:_FillValue = " "; + char TECHNICAL_PARAMETER_VALUE(N_TECH_PARAM, STRING128); + TECHNICAL_PARAMETER_VALUE:long_name = "Value of technical parameter"; + TECHNICAL_PARAMETER_VALUE:_FillValue = " "; + int CYCLE_NUMBER(N_TECH_PARAM); + CYCLE_NUMBER:long_name = "Float cycle number"; + CYCLE_NUMBER:conventions = "0..N, 0 : launch cycle (if exists), 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + + + +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v3.1.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v3.1.cdl new file mode 100644 index 0000000..a82107d --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v3.1.cdl @@ -0,0 +1,86 @@ +netcdf argo-technical-v3.0-spec { + +//@ DATA_TYPE = "Argo technical" +//@ FORMAT_VERSION = "3.1" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: 1228 $ +//@ $Date: 2021-03-03 16:22:15 +0000 (Wed, 03 Mar 2021) $ + + +// global attributes: + :title = "Argo float technical data file" ; + :institution = "<+>US GDAC" ; + :source = "Argo float" ; + :history = "<+>"; + :references = "http://www.argodatamgt.org/Documentation" ; + :user_manual_version = "3.1" ; /*REGEX = "3\..*" */ + :Conventions = "Argo-3.1 CF-1.6" ; /*REGEX = "Argo-3\..* +CF-.*" */ + +dimensions: + + DATE_TIME = 14; + STRING128 = 128; + STRING32 = 32; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + N_TECH_PARAM = UNLIMITED; + N_TECH_MEASUREMENT = UNLIMITED; + +variables: + +// General information on the technical data file + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char DATA_TYPE(STRING32); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:conventions = "Argo reference table 1"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + +// Technical data + char TECHNICAL_PARAMETER_NAME(N_TECH_PARAM, STRING128); + TECHNICAL_PARAMETER_NAME:long_name = "Name of technical parameter"; + TECHNICAL_PARAMETER_NAME:_FillValue = " "; + char TECHNICAL_PARAMETER_VALUE(N_TECH_PARAM, STRING128); + TECHNICAL_PARAMETER_VALUE:long_name = "Value of technical parameter"; + TECHNICAL_PARAMETER_VALUE:_FillValue = " "; + int CYCLE_NUMBER(N_TECH_PARAM); + CYCLE_NUMBER:long_name = "Float cycle number"; + CYCLE_NUMBER:conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + +// Timeseries of technical data (optional) + double JULD(N_TECH_MEASUREMENT); + JULD:long_name = "Julian day (UTC) of each measurement"; + JULD:standard_name = "time"; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD:_FillValue = 999999; + JULD:axis = "T"; + int CYCLE_NUMBER_MEAS (N_TECH_MEASUREMENT); + int MEASUREMENT_CODE(N_TECH_MEASUREMENT); + MEASUREMENT_CODE:long_name = "Flag referring to a measurement event in the cycle"; + MEASUREMENT_CODE:conventions = "Argo reference table 15"; + MEASUREMENT_CODE:_FillValue = 99999; + diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v3.1.opt b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v3.1.opt new file mode 100644 index 0000000..1f2afcb --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-technical-spec-v3.1.opt @@ -0,0 +1,10 @@ +// $Revision: 657 $ +// $Date: 2025-02-07 17:36:02 $ + + +TECH_TIMESERIES:N_TECH_MEASUREMENT + +TECH_TIMESERIES:JULD +TECH_TIMESERIES:CYCLE_NUMBER_MEAS +TECH_TIMESERIES:MEASUREMENT_CODE + diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.2.attr_regexp b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.2.attr_regexp new file mode 100644 index 0000000..5a0c511 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.2.attr_regexp @@ -0,0 +1,22 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +// Changes in BPHASE_DOXY between v2.2 and v2.31 that have not been dealt with + +BPHASE_DOXY:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +BPHASE_DOXY_ADJUSTED:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY_ADJUSTED:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +BPHASE_DOXY_ADJUSTED_ERROR:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); + +BPHASE_DOXY2:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY2:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +BPHASE_DOXY2_ADJUSTED:long_name = (BPHASE_DOXY)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY2_ADJUSTED:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +MOLAR_DOXY_ADJUSTED:comment = (Technical value reported by sensors such as Aandera Optode)|(Adjusted technical value reported by sensors such as Aandera Optode); +MOLAR_DOXY_ADJUSTED:long_name = (MOLAR_DOXY)|(DISSOLVED OXYGEN); + diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.2.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.2.cdl new file mode 100644 index 0000000..6046b9c --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.2.cdl @@ -0,0 +1,253 @@ +netcdf argo-trajectory-v2.1-spec { + +//@ DATA_TYPE = "Argo trajectory" +//@ FORMAT_VERSION = "2.2" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: 656 $ +//@ $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +dimensions: + DATE_TIME = 14; + STRING256 = 256; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + + N_PARAM = _unspecified_; + N_CYCLE = _unspecified_; + N_HISTORY = _unspecified_; + N_HISTORY2 = _unspecified_; + N_MEASUREMENT = UNLIMITED; + +variables: + char DATA_TYPE(STRING16); + DATA_TYPE:comment = "Data type"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:comment = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:comment = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char REFERENCE_DATE_TIME(DATE_TIME); + REFERENCE_DATE_TIME:comment = "Date of reference for Julian days"; + REFERENCE_DATE_TIME:conventions = "YYYYMMDDHHMISS"; + REFERENCE_DATE_TIME:_FillValue = " "; + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PROJECT_NAME(STRING64); + PROJECT_NAME:comment = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PI_NAME (STRING64); + PI_NAME:comment = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char TRAJECTORY_PARAMETERS(N_PARAM, STRING16); + TRAJECTORY_PARAMETERS:long_name = "List of available parameters for the station"; + TRAJECTORY_PARAMETERS:conventions = "Argo reference table 3"; + TRAJECTORY_PARAMETERS:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:comment = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + char DATA_STATE_INDICATOR(STRING4); + DATA_STATE_INDICATOR:long_name = "Degree of processing the data have passed through"; + DATA_STATE_INDICATOR:conventions = "Argo reference table 6"; + DATA_STATE_INDICATOR:_FillValue = " "; + char INST_REFERENCE(STRING64); + INST_REFERENCE:long_name = "Instrument type"; + INST_REFERENCE:conventions = "Brand, type, serial number"; + INST_REFERENCE:_FillValue = " "; + char WMO_INST_TYPE(STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + char POSITIONING_SYSTEM(STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + char DATA_MODE(N_MEASUREMENT); + DATA_MODE:long_name = "Delayed mode or real time data"; + DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + DATA_MODE:_FillValue = " "; + char DC_REFERENCE(N_MEASUREMENT, STRING32); + DC_REFERENCE:long_name = "Location unique identifier in data centre"; + DC_REFERENCE:conventions = "Data centre convention"; + DC_REFERENCE:_FillValue = " "; + double JULD(N_MEASUREMENT); + JULD:long_name = "Julian day (UTC) of each measurement relative to REFERENCE_DATE_TIME"; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of the day)"; + JULD:_FillValue = 999999.; + char JULD_QC(N_MEASUREMENT); + JULD_QC:long_name = "Quality on date and time"; + JULD_QC:conventions = "Argo reference table 2"; + JULD_QC:_FillValue = " "; + double LATITUDE(N_MEASUREMENT); + LATITUDE:long_name = "Latitude of each location"; + LATITUDE:units = "degree_north"; + LATITUDE:_FillValue = 99999.; + LATITUDE:valid_min = -90.; + LATITUDE:valid_max = 90.; + double LONGITUDE(N_MEASUREMENT); + LONGITUDE:long_name = "Longitude of each location"; + LONGITUDE:units = "degree_east"; + LONGITUDE:_FillValue = 99999.; + LONGITUDE:valid_min = -180.; + LONGITUDE:valid_max = 180.; + char POSITION_ACCURACY(N_MEASUREMENT); + POSITION_ACCURACY:long_name = "Estimated accuracy in latitude and longitude"; + POSITION_ACCURACY:conventions = "Argo reference table 5"; + POSITION_ACCURACY:_FillValue = " "; + char POSITION_QC(N_MEASUREMENT); + POSITION_QC:long_name = "Quality on position"; + POSITION_QC:conventions = "Argo reference table 2"; + POSITION_QC:_FillValue = " "; + int CYCLE_NUMBER(N_MEASUREMENT); + CYCLE_NUMBER:long_name = "Float cycle number of the measurement"; + CYCLE_NUMBER:conventions = "0..N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + +// Template ( indicates values from Table 3): +// Inserted based on argo-params-spec-v2.2 +// float (N_MEASUREMENT); +// :long_name = ""; +// :_FillValue = ; +// :units = ""; +// :valid_min = ; +// :valid_max = ; +// :comment = ""; +// :C_format = ""; +// :FORTRAN_format = ""; +// :resolution = ; +// char _QC(N_MEASUREMENT); +// _QC:long_name = "quality flag"; +// _QC:conventions = "Argo reference table 2"; +// _QC:_FillValue = " "; +// float _ADJUSTED(N_MEASUREMENT); +// _ADJUSTED:long_name = ""; +// _ADJUSTED:_FillValue = ; +// _ADJUSTED:units = ""; +// _ADJUSTED:valid_min = ; +// _ADJUSTED:valid_max = ; +// _ADJUSTED:comment = ""; +// _ADJUSTED:C_format = ""; +// _ADJUSTED:FORTRAN_format = ""; +// _ADJUSTED:resolution= ; +// char _ADJUSTED_QC(N_MEASUREMENT); +// _ADJUSTED_QC:long_name = "quality flag"; +// _ADJUSTED_QC:conventions = "Argo reference table 2"; +// _ADJUSTED_QC:_FillValue = " "; +// float _ADJUSTED_ERROR(N_MEASUREMENT); +// _ADJUSTED_ERROR:long_name = ""; +// _ADJUSTED_ERROR:_FillValue = ; +// _ADJUSTED_ERROR:units = ""; +// _ADJUSTED_ERROR:comment = "Contains the error on the adjusted values as determined by the delayed mode QC process."; +// _ADJUSTED_ERROR:C_format = ""; +// _ADJUSTED_ERROR:FORTRAN_format = ""; +// _ADJUSTED_ERROR:resolution = ; + + double JULD_ASCENT_START(N_CYCLE); + JULD_ASCENT_START:long_name = "Start date of the ascending profile"; + JULD_ASCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_ASCENT_START:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_ASCENT_START:_FillValue = 999999.; + char JULD_ASCENT_START_STATUS(N_CYCLE); + JULD_ASCENT_START_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_ASCENT_START_STATUS:_FillValue = " "; + double JULD_ASCENT_END(N_CYCLE); + JULD_ASCENT_END:long_name = "End date of the ascending profile"; + JULD_ASCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_ASCENT_END:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_ASCENT_END:_FillValue = 999999.; + char JULD_ASCENT_END_STATUS(N_CYCLE); + JULD_ASCENT_END_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_ASCENT_END_STATUS:_FillValue = " "; + double JULD_DESCENT_START(N_CYCLE); + JULD_DESCENT_START:long_name = "Descent start date of the cycle"; + JULD_DESCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DESCENT_START:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_DESCENT_START:_FillValue = 999999.; + char JULD_DESCENT_START_STATUS(N_CYCLE); + JULD_DESCENT_START_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_DESCENT_START_STATUS:_FillValue = " "; + double JULD_DESCENT_END(N_CYCLE); + JULD_DESCENT_END:long_name = "Descent end date of the cycle"; + JULD_DESCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DESCENT_END:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_DESCENT_END:_FillValue = 999999.; + char JULD_DESCENT_END_STATUS(N_CYCLE); + JULD_DESCENT_END_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_DESCENT_END_STATUS:_FillValue = " "; + double JULD_START_TRANSMISSION(N_CYCLE); + JULD_START_TRANSMISSION:long_name = "Start date of transmission"; + JULD_START_TRANSMISSION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_START_TRANSMISSION:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_START_TRANSMISSION:_FillValue = 999999.; + char JULD_START_TRANSMISSION_STATUS(N_CYCLE); + JULD_START_TRANSMISSION_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_START_TRANSMISSION_STATUS:_FillValue = " "; + char GROUNDED(N_CYCLE); + GROUNDED:long_name = "Did the profiler touch the ground for that cycle"; + GROUNDED:conventions = "Y,N,U"; + GROUNDED:_FillValue = " "; + + char HISTORY_INSTITUTION (N_HISTORY, STRING4); + HISTORY_INSTITUTION:long_name = "Institution which performed action"; + HISTORY_INSTITUTION:conventions = "Argo reference table 4"; + HISTORY_INSTITUTION:_FillValue = " "; + char HISTORY_STEP(N_HISTORY, STRING4); + HISTORY_STEP:long_name = "Step in data processing"; + HISTORY_STEP:conventions = "Argo reference table 12"; + HISTORY_STEP:_FillValue = " "; + char HISTORY_SOFTWARE(N_HISTORY, STRING4); + HISTORY_SOFTWARE:long_name = "Name of software which performed action"; + HISTORY_SOFTWARE:conventions = "Institution dependent"; + HISTORY_SOFTWARE:_FillValue = " "; + char HISTORY_SOFTWARE_RELEASE(N_HISTORY, STRING4); + HISTORY_SOFTWARE_RELEASE:long_name = "Version/release of software which performed action"; + HISTORY_SOFTWARE_RELEASE:conventions = "Institution dependent"; + HISTORY_SOFTWARE_RELEASE:_FillValue = " "; + char HISTORY_REFERENCE(N_HISTORY, STRING64); + HISTORY_REFERENCE:long_name = "Reference of database"; + HISTORY_REFERENCE:conventions = "Institution dependent"; + HISTORY_REFERENCE:_FillValue = " "; + char HISTORY_DATE(N_HISTORY, DATE_TIME); + HISTORY_DATE:long_name = "Date the history record was created"; + HISTORY_DATE:conventions = "YYYYMMDDHHMISS"; + HISTORY_DATE:_FillValue = " "; + char HISTORY_ACTION(N_HISTORY, STRING4); + HISTORY_ACTION:long_name = "Action performed on data"; + HISTORY_ACTION:conventions = "Argo reference table 7"; + HISTORY_ACTION:_FillValue = " "; + char HISTORY_PARAMETER(N_HISTORY, STRING16); + HISTORY_PARAMETER:long_name = "Station parameter action is performed on"; + HISTORY_PARAMETER:conventions = "Argo reference table 3"; + HISTORY_PARAMETER:_FillValue = " "; + float HISTORY_PREVIOUS_VALUE(N_HISTORY, N_HISTORY2); + HISTORY_PREVIOUS_VALUE:long_name = "Parameter/Flag previous value before action"; + HISTORY_PREVIOUS_VALUE:_FillValue = 99999.f; + char HISTORY_INDEX_DIMENSION(N_HISTORY); + int HISTORY_START_INDEX(N_HISTORY); + HISTORY_START_INDEX:long_name = "Start index action applied on"; + HISTORY_START_INDEX:_FillValue = 99999; + int HISTORY_STOP_INDEX(N_HISTORY); + HISTORY_STOP_INDEX:long_name = "Stop index action applied on"; + HISTORY_STOP_INDEX:_FillValue = 99999; + char HISTORY_QCTEST(N_HISTORY, N_HISTORY2, STRING16); + HISTORY_QCTEST:long_name = "Documentation of tests performed, tests failed (in hex form)"; + HISTORY_QCTEST:conventions = "Write tests performed when ACTION=QCP$; tests failed when ACTION=QCF$"; + HISTORY_QCTEST:_FillValue = " "; +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.2.opt b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.2.opt new file mode 100644 index 0000000..6f67c58 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.2.opt @@ -0,0 +1,41 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +TRAJECTORY_PARAMETERS +N_PARAM + +DOXY +DOXY_QC +PRES +PRES_QC +PRES2 : PRES2_QC +PSAL : PSAL_QC +TEMP +TEMP_QC + +DOXY_ADJUSTED : DOXY_ADJUSTED +DOXY_ADJUSTED : DOXY_ADJUSTED_QC +DOXY_ADJUSTED : DOXY_ADJUSTED_ERROR + +PRES_ADJUSTED : PRES_ADJUSTED +PRES_ADJUSTED : PRES_ADJUSTED_QC +PRES_ADJUSTED : PRES_ADJUSTED_ERROR + +PRES2_ADJUSTED : PRES2_ADJUSTED +PRES2_ADJUSTED : PRES2_ADJUSTED_QC +PRES2_ADJUSTED : PRES2_ADJUSTED_ERROR + +PSAL_ADJUSTED : PSAL_ADJUSTED +PSAL_ADJUSTED : PSAL_ADJUSTED_QC +PSAL_ADJUSTED : PSAL_ADJUSTED_ERROR + +TEMP_ADJUSTED : TEMP_ADJUSTED +TEMP_ADJUSTED : TEMP_ADJUSTED_QC +TEMP_ADJUSTED : TEMP_ADJUSTED_ERROR + +TEMP_DOXY : TEMP_DOXY +TEMP_DOXY : TEMP_DOXY_QC + +TEMP_DOXY_ADJUSTED : TEMP_DOXY_ADJUSTED +TEMP_DOXY_ADJUSTED : TEMP_DOXY_ADJUSTED_QC +TEMP_DOXY_ADJUSTED : TEMP_DOXY_ADJUSTED_ERROR diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.3.attr_regexp b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.3.attr_regexp new file mode 100644 index 0000000..9a7fca1 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.3.attr_regexp @@ -0,0 +1,29 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +// coriolis is missing this +JULD:standard_name = <*>; + +// csio is missing these +GROUNDED:conventions = Y,P,N,U|Y,N,U; +DATA_TYPE:long_name = <*>; +FORMAT_VERSION:long_name = <*>; +HANDBOOK_VERSION:long_name = <*>; +REFERENCE_DATE_TIME:long_name = <*>; +DATE_CREATION:long_name = <*>; +PROJECT_NAME:long_name = <*>; +PI_NAME:long_name = <*>; + +// Changes in BPHASE_DOXY between v2.2 and v2.31 that have not been dealt with + +BPHASE_DOXY:long_name = BPHASE_DOXY|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); +BPHASE_DOXY_ADJUSTED:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +BPHASE_DOXY2:long_name = (BPHASE_DOXY2)|(OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR); +BPHASE_DOXY2:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); +BPHASE_DOXY2_ADJUSTED:comment = (Uncalibrated phase shift reported by sensors such as Aandera Optode)|(In situ measurement); + +MOLAR_DOXY:units = micromole/litre|millimole/m3; +MOLAR_DOXY_ADJUSTED:units = micromole/litre|millimole/m3; +MOLAR_DOXY_ADJUSTED_ERROR:units = micromole/litre|millimole/m3; diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.3.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.3.cdl new file mode 100644 index 0000000..8172968 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.3.cdl @@ -0,0 +1,261 @@ +netcdf argo-trajectory-v2.1-spec { + +//@ DATA_TYPE = "Argo trajectory" +//@ FORMAT_VERSION = "2.2" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: 656 $ +//@ $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +dimensions: + DATE_TIME = 14; + STRING256 = 256; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + + N_PARAM = _unspecified_; + N_CYCLE = _unspecified_; + N_HISTORY = _unspecified_; + N_MEASUREMENT = UNLIMITED; + +variables: + char DATA_TYPE(STRING16); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char REFERENCE_DATE_TIME(DATE_TIME); + REFERENCE_DATE_TIME:long_name = "Date of reference for Julian days"; + REFERENCE_DATE_TIME:conventions = "YYYYMMDDHHMISS"; + REFERENCE_DATE_TIME:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PROJECT_NAME(STRING64); + PROJECT_NAME:long_name = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PI_NAME (STRING64); + PI_NAME:long_name = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char TRAJECTORY_PARAMETERS(N_PARAM, STRING16); + TRAJECTORY_PARAMETERS:long_name = "List of available parameters for the station"; + TRAJECTORY_PARAMETERS:conventions = "Argo reference table 3"; + TRAJECTORY_PARAMETERS:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATA_STATE_INDICATOR(STRING4); + DATA_STATE_INDICATOR:long_name = "Degree of processing the data have passed through"; + DATA_STATE_INDICATOR:conventions = "Argo reference table 6"; + DATA_STATE_INDICATOR:_FillValue = " "; + char INST_REFERENCE(STRING64); + INST_REFERENCE:long_name = "Instrument type"; + INST_REFERENCE:conventions = "Brand, type, serial number"; + INST_REFERENCE:_FillValue = " "; + char WMO_INST_TYPE(STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + char POSITIONING_SYSTEM(STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + double JULD(N_MEASUREMENT); + JULD:long_name = "Julian day (UTC) of each measurement relative to REFERENCE_DATE_TIME"; + JULD:standard_name = "time" ; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of the day)"; + JULD:_FillValue = 999999.; + JULD:axis = "T" ; + char JULD_QC(N_MEASUREMENT); + JULD_QC:long_name = "Quality on date and time"; + JULD_QC:conventions = "Argo reference table 2"; + JULD_QC:_FillValue = " "; + double LATITUDE(N_MEASUREMENT); + LATITUDE:long_name = "Latitude of each location"; + LATITUDE:standard_name = "latitude"; + LATITUDE:units = "degree_north"; + LATITUDE:_FillValue = 99999.; + LATITUDE:valid_min = -90.; + LATITUDE:valid_max = 90.; + LATITUDE:axis = "Y" ; + double LONGITUDE(N_MEASUREMENT); + LONGITUDE:long_name = "Longitude of each location"; + LONGITUDE:standard_name = "longitude" ; + LONGITUDE:units = "degree_east"; + LONGITUDE:_FillValue = 99999.; + LONGITUDE:valid_min = -180.; + LONGITUDE:valid_max = 180.; + LONGITUDE:axis = "X" ; + char POSITION_ACCURACY(N_MEASUREMENT); + POSITION_ACCURACY:long_name = "Estimated accuracy in latitude and longitude"; + POSITION_ACCURACY:conventions = "Argo reference table 5"; + POSITION_ACCURACY:_FillValue = " "; + char POSITION_QC(N_MEASUREMENT); + POSITION_QC:long_name = "Quality on position"; + POSITION_QC:conventions = "Argo reference table 2"; + POSITION_QC:_FillValue = " "; + int CYCLE_NUMBER(N_MEASUREMENT); + CYCLE_NUMBER:long_name = "Float cycle number of the measurement"; + CYCLE_NUMBER:conventions = "0..N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + int MEASUREMENT_CODE (N_MEASUREMENT); + MEASUREMENT_CODE:long_name = "Code referring to a measurement event in the cycle"; + MEASUREMENT_CODE:conventions = "Argo reference table 15"; + MEASUREMENT_CODE:_FillValue = 99999; + +// Physical parameters added via argo-physical_params* + + double JULD_ASCENT_START(N_CYCLE); + JULD_ASCENT_START:long_name = "Start date of the ascending profile"; + JULD_ASCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_ASCENT_START:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_ASCENT_START:_FillValue = 999999.; + char JULD_ASCENT_START_STATUS(N_CYCLE); + JULD_ASCENT_START_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_ASCENT_START_STATUS:_FillValue = " "; + double JULD_ASCENT_END(N_CYCLE); + JULD_ASCENT_END:long_name = "End date of the ascending profile"; + JULD_ASCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_ASCENT_END:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_ASCENT_END:_FillValue = 999999.; + char JULD_ASCENT_END_STATUS(N_CYCLE); + JULD_ASCENT_END_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_ASCENT_END_STATUS:_FillValue = " "; + double JULD_DESCENT_START(N_CYCLE); + JULD_DESCENT_START:long_name = "Descent start date of the cycle"; + JULD_DESCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DESCENT_START:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_DESCENT_START:_FillValue = 999999.; + char JULD_DESCENT_START_STATUS(N_CYCLE); + JULD_DESCENT_START_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_DESCENT_START_STATUS:_FillValue = " "; + double JULD_DESCENT_END(N_CYCLE); + JULD_DESCENT_END:long_name = "Descent end date of the cycle"; + JULD_DESCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DESCENT_END:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_DESCENT_END:_FillValue = 999999.; + char JULD_DESCENT_END_STATUS(N_CYCLE); + JULD_DESCENT_END_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_DESCENT_END_STATUS:_FillValue = " "; + + double JULD_TRANSMISSION_START(N_CYCLE); + JULD_TRANSMISSION_START:long_name = "Start date of transmission"; + JULD_TRANSMISSION_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_TRANSMISSION_START:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_TRANSMISSION_START:_FillValue=999999.; + char JULD_TRANSMISSION_START_STATUS(N_CYCLE); + JULD_TRANSMISSION_START_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_TRANSMISSION_START_STATUS:_FillValue = " "; + double JULD_FIRST_STABILIZATION(N_CYCLE); + JULD_FIRST_STABILIZATION:long_name = "Time of float's first stabilization after leaving the surface"; + JULD_FIRST_STABILIZATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_FIRST_STABILIZATION:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_FIRST_STABILIZATION:_FillValue=999999.; + char JULD_FIRST_STABILIZATION_STATUS(N_CYCLE); + JULD_FIRST_STABILIZATION_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_FIRST_STABILIZATION_STATUS:_FillValue = " "; + double JULD_DEEP_DESCENT_START(N_CYCLE); + JULD_DEEP_DESCENT_START:long_name = "Deep Descent start date of the cycle"; + JULD_DEEP_DESCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DEEP_DESCENT_START:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_DEEP_DESCENT_START:_FillValue=999999.; + char JULD_DEEP_DESCENT_START_STATUS(N_CYCLE); + JULD_DEEP_DESCENT_START_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_DEEP_DESCENT_START_STATUS:_FillValue = " "; + double JULD_DEEP_DESCENT_END(N_CYCLE); + JULD_DEEP_DESCENT_END:long_name = "Deep Descent end date of the cycle"; + JULD_DEEP_DESCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DEEP_DESCENT_END:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_DEEP_DESCENT_END:_FillValue=999999.; + char JULD_DEEP_DESCENT_END_STATUS(N_CYCLE); + JULD_DEEP_DESCENT_END_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_DEEP_DESCENT_END_STATUS:_FillValue = " "; + double JULD_TRANSMISSION_END(N_CYCLE); + JULD_TRANSMISSION_END:long_name = "Transmission end date"; + JULD_TRANSMISSION_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_TRANSMISSION_END:conventions = "Relative julian days with decimal part (as part of day)"; + JULD_TRANSMISSION_END:_FillValue=999999.; + char JULD_TRANSMISSION_END_STATUS(N_CYCLE); + JULD_TRANSMISSION_END_STATUS:conventions = "0 : Nominal, 1 : Estimated, 2 : Transmitted"; + JULD_TRANSMISSION_END_STATUS:_FillValue = " "; + char GROUNDED(N_CYCLE); + GROUNDED:long_name = "Did the profiler touch the ground for that cycle"; + GROUNDED:conventions = "Y,P,N,U"; + GROUNDED:_FillValue = " "; + int CONFIG_MISSION_NUMBER (N_CYCLE); + CONFIG_MISSION_NUMBER:long_name = "mission number of unique cycles performed by the float"; + CONFIG_MISSION_NUMBER:_FillValue = 99999; + int CYCLE_NUMBER_ACTUAL(N_CYCLE); + CYCLE_NUMBER_ACTUAL:long_name = "Float cycle number of the measurement"; + CYCLE_NUMBER_ACTUAL:conventions = "0...N, 0 : lauch cycle, 1 : first complete cycle"; + CYCLE_NUMBER_ACTUAL:_FillValue = 99999; + char DATA_MODE(N_CYCLE); + DATA_MODE:long_name = "Delayed mode or real time data"; + DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + DATA_MODE:_FillValue = " "; + + char HISTORY_INSTITUTION (N_HISTORY, STRING4); + HISTORY_INSTITUTION:long_name = "Institution which performed action"; + HISTORY_INSTITUTION:conventions = "Argo reference table 4"; + HISTORY_INSTITUTION:_FillValue = " "; + char HISTORY_STEP(N_HISTORY, STRING4); + HISTORY_STEP:long_name = "Step in data processing"; + HISTORY_STEP:conventions = "Argo reference table 12"; + HISTORY_STEP:_FillValue = " "; + char HISTORY_SOFTWARE(N_HISTORY, STRING4); + HISTORY_SOFTWARE:long_name = "Name of software which performed action"; + HISTORY_SOFTWARE:conventions = "Institution dependent"; + HISTORY_SOFTWARE:_FillValue = " "; + char HISTORY_SOFTWARE_RELEASE(N_HISTORY, STRING4); + HISTORY_SOFTWARE_RELEASE:long_name = "Version/release of software which performed action"; + HISTORY_SOFTWARE_RELEASE:conventions = "Institution dependent"; + HISTORY_SOFTWARE_RELEASE:_FillValue = " "; + char HISTORY_REFERENCE(N_HISTORY, STRING64); + HISTORY_REFERENCE:long_name = "Reference of database"; + HISTORY_REFERENCE:conventions = "Institution dependent"; + HISTORY_REFERENCE:_FillValue = " "; + char HISTORY_DATE(N_HISTORY, DATE_TIME); + HISTORY_DATE:long_name = "Date the history record was created"; + HISTORY_DATE:conventions = "YYYYMMDDHHMISS"; + HISTORY_DATE:_FillValue = " "; + char HISTORY_ACTION(N_HISTORY, STRING4); + HISTORY_ACTION:long_name = "Action performed on data"; + HISTORY_ACTION:conventions = "Argo reference table 7"; + HISTORY_ACTION:_FillValue = " "; + char HISTORY_PARAMETER(N_HISTORY, STRING16); + HISTORY_PARAMETER:long_name = "Station parameter action is performed on"; + HISTORY_PARAMETER:conventions = "Argo reference table 3"; + HISTORY_PARAMETER:_FillValue = " "; + float HISTORY_PREVIOUS_VALUE(N_HISTORY); + HISTORY_PREVIOUS_VALUE:long_name = "Parameter/Flag previous value before action"; + HISTORY_PREVIOUS_VALUE:_FillValue = 99999.f; + char HISTORY_INDEX_DIMENSION(N_HISTORY); + int HISTORY_START_INDEX(N_HISTORY); + HISTORY_START_INDEX:long_name = "Start index action applied on"; + HISTORY_START_INDEX:_FillValue = 99999; + int HISTORY_STOP_INDEX(N_HISTORY); + HISTORY_STOP_INDEX:long_name = "Stop index action applied on"; + HISTORY_STOP_INDEX:_FillValue = 99999; + char HISTORY_QCTEST(N_HISTORY, STRING16); + HISTORY_QCTEST:long_name = "Documentation of tests performed, tests failed (in hex form)"; + HISTORY_QCTEST:conventions = "Write tests performed when ACTION=QCP$; tests failed when ACTION=QCF$"; + HISTORY_QCTEST:_FillValue = " "; +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.3.opt b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.3.opt new file mode 100644 index 0000000..0910004 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v2.3.opt @@ -0,0 +1,35 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ + +TRAJECTORY_PARAMETERS +N_PARAM + +DOXY +DOXY_QC +PRES +PRES_QC +PRES2 : PRES2_QC +PSAL : PSAL_QC +TEMP +TEMP_QC +TEMP_DOXY_QC + +DOXY_ADJUSTED : DOXY_ADJUSTED +DOXY_ADJUSTED : DOXY_ADJUSTED_QC +DOXY_ADJUSTED : DOXY_ADJUSTED_ERROR + +PRES_ADJUSTED : PRES_ADJUSTED +PRES_ADJUSTED : PRES_ADJUSTED_QC +PRES_ADJUSTED : PRES_ADJUSTED_ERROR + +PRES2_ADJUSTED : PRES2_ADJUSTED +PRES2_ADJUSTED : PRES2_ADJUSTED_QC +PRES2_ADJUSTED : PRES2_ADJUSTED_ERROR + +PSAL_ADJUSTED : PSAL_ADJUSTED +PSAL_ADJUSTED : PSAL_ADJUSTED_QC +PSAL_ADJUSTED : PSAL_ADJUSTED_ERROR + +TEMP_ADJUSTED : TEMP_ADJUSTED +TEMP_ADJUSTED : TEMP_ADJUSTED_QC +TEMP_ADJUSTED : TEMP_ADJUSTED_ERROR diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v3.1.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v3.1.cdl new file mode 100644 index 0000000..1dcd377 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v3.1.cdl @@ -0,0 +1,451 @@ +netcdf argo-trajectory-v3.0-spec { + +//@ DATA_TYPE = "Argo trajectory" +//@ FORMAT_VERSION = "3.1" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: 1250 $ +//@ $Date: 2021-04-20 23:55:30 +0000 (Tue, 20 Apr 2021) $ + +// global attributes: + :title = "Argo float trajectory file" ; + :institution = "<+>US GDAC" ; + :source = "Argo float" ; + :history = "<+>"; + :references = "http://www.argodatamgt.org/Documentation" ; + :user_manual_version = "3.1" ; /*REGEX = "3\..*" */ + :Conventions = "Argo-3.1 CF-1.6" ; /*REGEX = "Argo-3\..* +CF-.*" */ + :featureType = "trajectory" ; + +dimensions: + DATE_TIME = 14; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + + N_PARAM = _unspecified_; + N_MEASUREMENT = UNLIMITED; + N_CYCLE = _unspecified_; + N_HISTORY = _unspecified_; + +variables: + +// General information on the trajectory file + char DATA_TYPE(STRING16); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:conventions = "Argo reference table 1"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char REFERENCE_DATE_TIME(DATE_TIME); + REFERENCE_DATE_TIME:long_name = "Date of reference for Julian days"; + REFERENCE_DATE_TIME:conventions = "YYYYMMDDHHMISS"; + REFERENCE_DATE_TIME:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + +// General information on the float + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PROJECT_NAME(STRING64); + PROJECT_NAME:long_name = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PI_NAME(STRING64); + PI_NAME:long_name = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char TRAJECTORY_PARAMETERS(N_PARAM,STRING16); + TRAJECTORY_PARAMETERS:long_name = "List of available parameters for the station"; + TRAJECTORY_PARAMETERS:conventions = "Argo reference table 3"; + TRAJECTORY_PARAMETERS:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATA_STATE_INDICATOR(STRING4); + DATA_STATE_INDICATOR:long_name = "Degree of processing the data have passed through"; + DATA_STATE_INDICATOR:conventions = "Argo reference table 6"; + DATA_STATE_INDICATOR:_FillValue = " "; + char PLATFORM_TYPE(STRING32); + PLATFORM_TYPE:long_name = "Type of float"; + PLATFORM_TYPE:conventions = "Argo reference table 23"; + PLATFORM_TYPE:_FillValue = " "; + char FLOAT_SERIAL_NO(STRING32); + FLOAT_SERIAL_NO:long_name = "Serial number of the float"; + FLOAT_SERIAL_NO:_FillValue = " "; + char FIRMWARE_VERSION(STRING64|STRING32); + FIRMWARE_VERSION:long_name = "Instrument firmware version"; + FIRMWARE_VERSION:_FillValue = " "; + char WMO_INST_TYPE(STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + char POSITIONING_SYSTEM(STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + +// N_MEASUREMENT dimension variable group + double JULD(N_MEASUREMENT); + JULD:long_name = "Julian day (UTC) of each measurement relative to REFERENCE_DATE_TIME"; + JULD:standard_name = "time"; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD:resolution = "<+>DOUBLE:"; + JULD:_FillValue = 999999.; + JULD:axis = "T"; + char JULD_STATUS(N_MEASUREMENT); + JULD_STATUS:long_name = "Status of the date and time"; + JULD_STATUS:conventions = "Argo reference table 19"; + JULD_STATUS:_FillValue = " "; + char JULD_QC(N_MEASUREMENT); + JULD_QC:long_name = "Quality on date and time"; + JULD_QC:conventions = "Argo reference table 2"; + JULD_QC:_FillValue = " "; + double JULD_ADJUSTED(N_MEASUREMENT); + JULD_ADJUSTED:long_name = "Adjusted julian day (UTC) of each measurement relative to REFERENCE_DATE_TIME"; + JULD_ADJUSTED:standard_name = "time"; + JULD_ADJUSTED:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_ADJUSTED:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_ADJUSTED:resolution = "<+>DOUBLE:"; + JULD_ADJUSTED:_FillValue = 999999.; + JULD_ADJUSTED:axis = "T"; + char JULD_ADJUSTED_STATUS(N_MEASUREMENT); + JULD_ADJUSTED_STATUS:long_name = "Status of the JULD_ADJUSTED date"; + JULD_ADJUSTED_STATUS:conventions = "Argo reference table 19"; + JULD_ADJUSTED_STATUS:_FillValue = " "; + char JULD_ADJUSTED_QC(N_MEASUREMENT); + JULD_ADJUSTED_QC:long_name = "Quality on adjusted date and time"; + JULD_ADJUSTED_QC:conventions = "Argo reference table 2"; + JULD_ADJUSTED_QC:_FillValue = " "; + double LATITUDE(N_MEASUREMENT); + LATITUDE:long_name = "Latitude of each location"; + LATITUDE:standard_name = "latitude"; + LATITUDE:units = "degree_north"; + LATITUDE:_FillValue = 99999.; + LATITUDE:valid_min = -90.; + LATITUDE:valid_max = 90.; + LATITUDE:axis = "Y"; + double LONGITUDE(N_MEASUREMENT); + LONGITUDE:long_name = "Longitude of each location"; + LONGITUDE:standard_name = "longitude"; + LONGITUDE:units = "degree_east"; + LONGITUDE:_FillValue = 99999.; + LONGITUDE:valid_min = -180.; + LONGITUDE:valid_max = 180.; + LONGITUDE:axis = "X"; + char POSITION_ACCURACY(N_MEASUREMENT); + POSITION_ACCURACY:long_name = "Estimated accuracy in latitude and longitude"; + POSITION_ACCURACY:conventions = "Argo reference table 5"; + POSITION_ACCURACY:_FillValue = " "; + char POSITION_QC(N_MEASUREMENT); + POSITION_QC:long_name = "Quality on position"; + POSITION_QC:conventions = "Argo reference table 2"; + POSITION_QC:_FillValue = " "; + int CYCLE_NUMBER(N_MEASUREMENT); + CYCLE_NUMBER:long_name = "Float cycle number of the measurement"; + CYCLE_NUMBER:conventions = "0...N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + int CYCLE_NUMBER_ADJUSTED(N_MEASUREMENT); + CYCLE_NUMBER_ADJUSTED:long_name = "Adjusted float cycle number of the measurement"; + CYCLE_NUMBER_ADJUSTED:conventions = "0...N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER_ADJUSTED:_FillValue = 99999; + int MEASUREMENT_CODE(N_MEASUREMENT); + MEASUREMENT_CODE:long_name = "Flag referring to a measurement event in the cycle"; + MEASUREMENT_CODE:conventions = "Argo reference table 15"; + MEASUREMENT_CODE:_FillValue = 99999; + +// structures are added via argo-params-spec-v3.1 + + float AXES_ERROR_ELLIPSE_MAJOR(N_MEASUREMENT); + AXES_ERROR_ELLIPSE_MAJOR:long_name = "Major axis of error ellipse from positioning system"; + AXES_ERROR_ELLIPSE_MAJOR:units = "meters"; + AXES_ERROR_ELLIPSE_MAJOR:_FillValue = 99999.f; + float AXES_ERROR_ELLIPSE_MINOR(N_MEASUREMENT); + AXES_ERROR_ELLIPSE_MINOR:long_name = "Minor axis of error ellipse from positioning system"; + AXES_ERROR_ELLIPSE_MINOR:units = "meters"; + AXES_ERROR_ELLIPSE_MINOR:_FillValue = 99999.f; + float AXES_ERROR_ELLIPSE_ANGLE(N_MEASUREMENT); + AXES_ERROR_ELLIPSE_ANGLE:long_name = "Angle of error ellipse from positioning system"; + AXES_ERROR_ELLIPSE_ANGLE:units = "Degrees (from North when heading East)"; + AXES_ERROR_ELLIPSE_ANGLE:_FillValue = 99999.f; + char SATELLITE_NAME(N_MEASUREMENT); + SATELLITE_NAME:long_name = "Satellite name from positioning system"; + SATELLITE_NAME:_FillValue = " "; + +// N_CYCLE dimension variable group + double JULD_DESCENT_START(N_CYCLE); + JULD_DESCENT_START:long_name = "Descent start date of the cycle"; + JULD_DESCENT_START:standard_name = "time"; + JULD_DESCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DESCENT_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_DESCENT_START:resolution = "<+>DOUBLE:"; + JULD_DESCENT_START:_FillValue = 999999.; + char JULD_DESCENT_START_STATUS(N_CYCLE); + JULD_DESCENT_START_STATUS:long_name = "Status of descent start date of the cycle"; + JULD_DESCENT_START_STATUS:conventions = "Argo reference table 19"; + JULD_DESCENT_START_STATUS:_FillValue = " "; + double JULD_FIRST_STABILIZATION(N_CYCLE); + JULD_FIRST_STABILIZATION:long_name = "Time when a float first becomes water-neutral"; + JULD_FIRST_STABILIZATION:standard_name = "time"; + JULD_FIRST_STABILIZATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_FIRST_STABILIZATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_FIRST_STABILIZATION:resolution = "<+>DOUBLE:"; + JULD_FIRST_STABILIZATION:_FillValue = 999999.; + char JULD_FIRST_STABILIZATION_STATUS(N_CYCLE); + JULD_FIRST_STABILIZATION_STATUS:long_name = "Status of time when a float first becomes water-neutral"; + JULD_FIRST_STABILIZATION_STATUS:conventions = "Argo reference table 19"; + JULD_FIRST_STABILIZATION_STATUS:_FillValue = " "; + double JULD_DESCENT_END(N_CYCLE); + JULD_DESCENT_END:long_name = "Descent end date of the cycle"; + JULD_DESCENT_END:standard_name = "time"; + JULD_DESCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DESCENT_END:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_DESCENT_END:resolution = "<+>DOUBLE:"; + JULD_DESCENT_END:_FillValue = 999999.; + char JULD_DESCENT_END_STATUS(N_CYCLE); + JULD_DESCENT_END_STATUS:long_name = "Status of descent end date of the cycle"; + JULD_DESCENT_END_STATUS:conventions = "Argo reference table 19"; + JULD_DESCENT_END_STATUS:_FillValue = " "; + double JULD_PARK_START(N_CYCLE); + JULD_PARK_START:long_name = "Drift start date of the cycle"; + JULD_PARK_START:standard_name = "time"; + JULD_PARK_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_PARK_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_PARK_START:resolution = "<+>DOUBLE:"; + JULD_PARK_START:_FillValue = 999999.; + char JULD_PARK_START_STATUS(N_CYCLE); + JULD_PARK_START_STATUS:long_name = "Status of drift start date of the cycle"; + JULD_PARK_START_STATUS:conventions = "Argo reference table 19"; + JULD_PARK_START_STATUS:_FillValue = " "; + double JULD_PARK_END(N_CYCLE); + JULD_PARK_END:long_name = "Drift end date of the cycle"; + JULD_PARK_END:standard_name = "time"; + JULD_PARK_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_PARK_END:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_PARK_END:resolution = "<+>DOUBLE:"; + JULD_PARK_END:_FillValue = 999999.; + char JULD_PARK_END_STATUS(N_CYCLE); + JULD_PARK_END_STATUS:long_name = "Status of drift end date of the cycle"; + JULD_PARK_END_STATUS:conventions = "Argo reference table 19"; + JULD_PARK_END_STATUS:_FillValue = " "; + double JULD_DEEP_DESCENT_END(N_CYCLE); + JULD_DEEP_DESCENT_END:long_name = "Deep descent end date of the cycle"; + JULD_DEEP_DESCENT_END:standard_name = "time"; + JULD_DEEP_DESCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DEEP_DESCENT_END:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_DEEP_DESCENT_END:resolution = "<+>DOUBLE:"; + JULD_DEEP_DESCENT_END:_FillValue = 999999.; + char JULD_DEEP_DESCENT_END_STATUS(N_CYCLE); + JULD_DEEP_DESCENT_END_STATUS:long_name = "Status of deep descent end date of the cycle"; + JULD_DEEP_DESCENT_END_STATUS:conventions = "Argo reference table 19"; + JULD_DEEP_DESCENT_END_STATUS:_FillValue = " "; + double JULD_DEEP_PARK_START(N_CYCLE); + JULD_DEEP_PARK_START:long_name = "Deep park start date of the cycle"; + JULD_DEEP_PARK_START:standard_name = "time"; + JULD_DEEP_PARK_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DEEP_PARK_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_DEEP_PARK_START:resolution = "<+>DOUBLE:"; + JULD_DEEP_PARK_START:_FillValue = 999999.; + char JULD_DEEP_PARK_START_STATUS(N_CYCLE); + JULD_DEEP_PARK_START_STATUS:long_name = "Status of deep park start date of the cycle"; + JULD_DEEP_PARK_START_STATUS:conventions = "Argo reference table 19"; + JULD_DEEP_PARK_START_STATUS:_FillValue = " "; + double JULD_ASCENT_START(N_CYCLE); + JULD_ASCENT_START:long_name = "Start date of the ascent to the surface"; + JULD_ASCENT_START:standard_name = "time"; + JULD_ASCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_ASCENT_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_ASCENT_START:resolution = "<+>DOUBLE:"; + JULD_ASCENT_START:_FillValue = 999999.; + char JULD_ASCENT_START_STATUS(N_CYCLE); + JULD_ASCENT_START_STATUS:long_name = "Status of start date of the ascent to the surface"; + JULD_ASCENT_START_STATUS:conventions = "Argo reference table 19"; + JULD_ASCENT_START_STATUS:_FillValue = " "; + double JULD_DEEP_ASCENT_START(N_CYCLE); + JULD_DEEP_ASCENT_START:long_name = "Deep ascent start date of the cycle"; + JULD_DEEP_ASCENT_START:standard_name = "time"; + JULD_DEEP_ASCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DEEP_ASCENT_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_DEEP_ASCENT_START:resolution = "<+>DOUBLE:"; + JULD_DEEP_ASCENT_START:_FillValue = 999999.; + char JULD_DEEP_ASCENT_START_STATUS(N_CYCLE); + JULD_DEEP_ASCENT_START_STATUS:long_name = "Status of deep ascent start date of the cycle"; + JULD_DEEP_ASCENT_START_STATUS:conventions = "Argo reference table 19"; + JULD_DEEP_ASCENT_START_STATUS:_FillValue = " "; + double JULD_ASCENT_END(N_CYCLE); + JULD_ASCENT_END:long_name = "End date of ascent to the surface"; + JULD_ASCENT_END:standard_name = "time"; + JULD_ASCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_ASCENT_END:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_ASCENT_END:resolution = "<+>DOUBLE:"; + JULD_ASCENT_END:_FillValue = 999999.; + char JULD_ASCENT_END_STATUS(N_CYCLE); + JULD_ASCENT_END_STATUS:long_name = "Status of end date of ascent to the surface"; + JULD_ASCENT_END_STATUS:conventions = "Argo reference table 19"; + JULD_ASCENT_END_STATUS:_FillValue = " "; + double JULD_TRANSMISSION_START(N_CYCLE); + JULD_TRANSMISSION_START:long_name = "Start date of transmission"; + JULD_TRANSMISSION_START:standard_name = "time"; + JULD_TRANSMISSION_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_TRANSMISSION_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_TRANSMISSION_START:resolution = "<+>DOUBLE:"; + JULD_TRANSMISSION_START:_FillValue = 999999.; + char JULD_TRANSMISSION_START_STATUS(N_CYCLE); + JULD_TRANSMISSION_START_STATUS:long_name = "Status of start date of transmission"; + JULD_TRANSMISSION_START_STATUS:conventions = "Argo reference table 19"; + JULD_TRANSMISSION_START_STATUS:_FillValue = " "; + double JULD_FIRST_MESSAGE(N_CYCLE); + JULD_FIRST_MESSAGE:long_name = "Date of earliest float message received"; + JULD_FIRST_MESSAGE:standard_name = "time"; + JULD_FIRST_MESSAGE:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_FIRST_MESSAGE:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_FIRST_MESSAGE:resolution = "<+>DOUBLE:"; + JULD_FIRST_MESSAGE:_FillValue = 999999.; + char JULD_FIRST_MESSAGE_STATUS(N_CYCLE); + JULD_FIRST_MESSAGE_STATUS:long_name = "Status of date of earliest float message received"; + JULD_FIRST_MESSAGE_STATUS:conventions = "Argo reference table 19"; + JULD_FIRST_MESSAGE_STATUS:_FillValue = " "; + double JULD_FIRST_LOCATION(N_CYCLE); + JULD_FIRST_LOCATION:long_name = "Date of earliest location"; + JULD_FIRST_LOCATION:standard_name = "time"; + JULD_FIRST_LOCATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_FIRST_LOCATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_FIRST_LOCATION:resolution = "<+>DOUBLE:"; + JULD_FIRST_LOCATION:_FillValue = 999999.; + char JULD_FIRST_LOCATION_STATUS(N_CYCLE); + JULD_FIRST_LOCATION_STATUS:long_name = "Status of date of earliest location"; + JULD_FIRST_LOCATION_STATUS:conventions = "Argo reference table 19"; + JULD_FIRST_LOCATION_STATUS:_FillValue = " "; + double JULD_LAST_LOCATION(N_CYCLE); + JULD_LAST_LOCATION:long_name = "Date of latest location"; + JULD_LAST_LOCATION:standard_name = "time"; + JULD_LAST_LOCATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_LAST_LOCATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_LAST_LOCATION:resolution = "<+>DOUBLE:"; + JULD_LAST_LOCATION:_FillValue = 999999.; + char JULD_LAST_LOCATION_STATUS(N_CYCLE); + JULD_LAST_LOCATION_STATUS:long_name = "Status of date of latest location"; + JULD_LAST_LOCATION_STATUS:conventions = "Argo reference table 19"; + JULD_LAST_LOCATION_STATUS:_FillValue = " "; + double JULD_LAST_MESSAGE(N_CYCLE); + JULD_LAST_MESSAGE:long_name = "Date of latest float message received"; + JULD_LAST_MESSAGE:standard_name = "time"; + JULD_LAST_MESSAGE:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_LAST_MESSAGE:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_LAST_MESSAGE:resolution = "<+>DOUBLE:"; + JULD_LAST_MESSAGE:_FillValue = 999999.; + char JULD_LAST_MESSAGE_STATUS(N_CYCLE); + JULD_LAST_MESSAGE_STATUS:long_name = "Status of date of latest float message received"; + JULD_LAST_MESSAGE_STATUS:conventions = "Argo reference table 19"; + JULD_LAST_MESSAGE_STATUS:_FillValue = " "; + double JULD_TRANSMISSION_END(N_CYCLE); + JULD_TRANSMISSION_END:long_name = "Transmission end date"; + JULD_TRANSMISSION_END:standard_name = "time"; + JULD_TRANSMISSION_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_TRANSMISSION_END:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_TRANSMISSION_END:resolution = "<+>DOUBLE:"; + JULD_TRANSMISSION_END:_FillValue = 999999.; + char JULD_TRANSMISSION_END_STATUS(N_CYCLE); + JULD_TRANSMISSION_END_STATUS:long_name = "Status of transmission end date"; + JULD_TRANSMISSION_END_STATUS:conventions = "Argo reference table 19"; + JULD_TRANSMISSION_END_STATUS:_FillValue = " "; + double CLOCK_OFFSET(N_CYCLE); + CLOCK_OFFSET:long_name = "Time of float clock drift"; + CLOCK_OFFSET:units = "days"; + CLOCK_OFFSET:conventions = "Days with decimal part (as parts of day)"; + CLOCK_OFFSET:_FillValue = 999999.; + char GROUNDED(N_CYCLE); + GROUNDED:long_name = "Did the profiler touch the ground for that cycle?"; + GROUNDED:conventions = "Argo reference table 20"; + GROUNDED:_FillValue = " "; + float REPRESENTATIVE_PARK_PRESSURE(N_CYCLE); + REPRESENTATIVE_PARK_PRESSURE:long_name = "Best pressure value during park phase"; + REPRESENTATIVE_PARK_PRESSURE:units = "decibar"; + REPRESENTATIVE_PARK_PRESSURE:_FillValue = 99999.f; + char REPRESENTATIVE_PARK_PRESSURE_STATUS(N_CYCLE); + REPRESENTATIVE_PARK_PRESSURE_STATUS:long_name = "Status of best pressure value during park phase"; + REPRESENTATIVE_PARK_PRESSURE_STATUS:conventions = "Argo reference table 21"; + REPRESENTATIVE_PARK_PRESSURE_STATUS:_FillValue = " "; + int CONFIG_MISSION_NUMBER(N_CYCLE); + CONFIG_MISSION_NUMBER:long_name = "Unique number denoting the missions performed by the float"; + CONFIG_MISSION_NUMBER:conventions = "1...N, 1 : first complete mission"; + CONFIG_MISSION_NUMBER:_FillValue = 99999; + int CYCLE_NUMBER_INDEX(N_CYCLE); + CYCLE_NUMBER_INDEX:long_name = "Cycle number that corresponds to the current index"; + CYCLE_NUMBER_INDEX:conventions = "0...N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER_INDEX:_FillValue = 99999; + int CYCLE_NUMBER_INDEX_ADJUSTED(N_CYCLE); + CYCLE_NUMBER_INDEX_ADJUSTED:long_name = "Adjusted cycle number that corresponds to the current index"; + CYCLE_NUMBER_INDEX_ADJUSTED:conventions = "0...N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER_INDEX_ADJUSTED:_FillValue = 99999; + char DATA_MODE(N_CYCLE); + DATA_MODE:long_name = "Delayed mode or real time data"; + DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + DATA_MODE:_FillValue = " "; + +// History information + char HISTORY_INSTITUTION(N_HISTORY, STRING4); + HISTORY_INSTITUTION:long_name = "Institution which performed action"; + HISTORY_INSTITUTION:conventions = "Argo reference table 4"; + HISTORY_INSTITUTION:_FillValue = " "; + char HISTORY_STEP(N_HISTORY, STRING4); + HISTORY_STEP:long_name = "Step in data processing"; + HISTORY_STEP:conventions = "Argo reference table 12"; + HISTORY_STEP:_FillValue = " "; + char HISTORY_SOFTWARE(N_HISTORY, STRING4); + HISTORY_SOFTWARE:long_name = "Name of software which performed action"; + HISTORY_SOFTWARE:conventions = "Institution dependent"; + HISTORY_SOFTWARE:_FillValue = " "; + char HISTORY_SOFTWARE_RELEASE(N_HISTORY, STRING4); + HISTORY_SOFTWARE_RELEASE:long_name = "Version/release of software which performed action"; + HISTORY_SOFTWARE_RELEASE:conventions = "Institution dependent"; + HISTORY_SOFTWARE_RELEASE:_FillValue = " "; + char HISTORY_REFERENCE(N_HISTORY, STRING64); + HISTORY_REFERENCE:long_name = "Reference of database"; + HISTORY_REFERENCE:conventions = "Institution dependent"; + HISTORY_REFERENCE:_FillValue = " "; + char HISTORY_DATE(N_HISTORY, DATE_TIME); + HISTORY_DATE:long_name = "Date the history record was created"; + HISTORY_DATE:conventions = "YYYYMMDDHHMISS"; + HISTORY_DATE:_FillValue = " "; + char HISTORY_ACTION(N_HISTORY, STRING4); + HISTORY_ACTION:long_name = "Action performed on data"; + HISTORY_ACTION:conventions = "Argo reference table 7"; + HISTORY_ACTION:_FillValue = " "; + char HISTORY_PARAMETER(N_HISTORY, STRING16); + HISTORY_PARAMETER:long_name = "Station parameter action is performed on"; + HISTORY_PARAMETER:conventions = "Argo reference table 3"; + HISTORY_PARAMETER:_FillValue = " "; + float HISTORY_PREVIOUS_VALUE(N_HISTORY); + HISTORY_PREVIOUS_VALUE:long_name = "Parameter/Flag previous value before action"; + HISTORY_PREVIOUS_VALUE:_FillValue = 99999.f; + char HISTORY_INDEX_DIMENSION(N_HISTORY); + HISTORY_INDEX_DIMENSION:long_name = "Name of dimension to which HISTORY_START_INDEX and HISTORY_STOP_INDEX correspond"; + HISTORY_INDEX_DIMENSION:conventions = "C: N_CYCLE, M: N_MEASUREMENT"; + HISTORY_INDEX_DIMENSION:_FillValue = " "; + int HISTORY_START_INDEX(N_HISTORY); + HISTORY_START_INDEX:long_name = "Start index action applied on"; + HISTORY_START_INDEX:_FillValue = 99999; + int HISTORY_STOP_INDEX(N_HISTORY); + HISTORY_STOP_INDEX:long_name = "Stop index action applied on"; + HISTORY_STOP_INDEX:_FillValue = 99999; + char HISTORY_QCTEST(N_HISTORY, STRING16); + HISTORY_QCTEST:long_name = "Documentation of tests performed, tests failed (in hex form)"; + HISTORY_QCTEST:conventions = "Write tests performed when ACTION=QCP$; tests failed when ACTION=QCF$"; + HISTORY_QCTEST:_FillValue = " "; + +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v3.2.cdl b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v3.2.cdl new file mode 100644 index 0000000..6715219 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/argo-trajectory-spec-v3.2.cdl @@ -0,0 +1,501 @@ +netcdf argo-trajectory-v3.2-spec { + +//@ DATA_TYPE = "Argo trajectory" +//@ FORMAT_VERSION = "3.2" +//@ HANDBOOK_VERSION = "1.2" +//@ REFERENCE_DATE_TIME = "19500101000000" +//@ $Revision: $ +//@ $Date: $ + +// global attributes: + :title = "Argo float trajectory file" ; + :institution = "<+>US GDAC" ; + :source = "Argo float" ; + :history = "<+>"; + :references = "http://www.argodatamgt.org/Documentation" ; + :user_manual_version = "3.4" ; /*REGEX = "3\.[4-9][0-9]*\.[0-9][0-9]*" */ + :Conventions = "Argo-3.2 CF-1.6" ; /*REGEX = "Argo-3\.[2-9]* +CF-.*" */ + :featureType = "trajectory" ; + +dimensions: + DATE_TIME = 14; + STRING256 = 256; + STRING64 = 64; + STRING32 = 32; + STRING16 = 16; + STRING8 = 8; + STRING4 = 4; + STRING2 = 2; + + N_PARAM = _unspecified_; + N_MEASUREMENT = UNLIMITED; + N_CYCLE = _unspecified_; + N_HISTORY = _unspecified_; + N_VALUES\d+ = _extra_; + N_CALIB_PARAM = _unspecified_; + N_CALIB_JULD = _unspecified_; + +variables: + +// General information on the trajectory file + char DATA_TYPE(STRING16); + DATA_TYPE:long_name = "Data type"; + DATA_TYPE:conventions = "Argo reference table 1"; + DATA_TYPE:_FillValue = " "; + char FORMAT_VERSION(STRING4); + FORMAT_VERSION:long_name = "File format version"; + FORMAT_VERSION:_FillValue = " "; + char HANDBOOK_VERSION(STRING4); + HANDBOOK_VERSION:long_name = "Data handbook version"; + HANDBOOK_VERSION:_FillValue = " "; + char REFERENCE_DATE_TIME(DATE_TIME); + REFERENCE_DATE_TIME:long_name = "Date of reference for Julian days"; + REFERENCE_DATE_TIME:conventions = "YYYYMMDDHHMISS"; + REFERENCE_DATE_TIME:_FillValue = " "; + char DATE_CREATION(DATE_TIME); + DATE_CREATION:long_name = "Date of file creation"; + DATE_CREATION:conventions = "YYYYMMDDHHMISS"; + DATE_CREATION:_FillValue = " "; + char DATE_UPDATE(DATE_TIME); + DATE_UPDATE:long_name = "Date of update of this file"; + DATE_UPDATE:conventions = "YYYYMMDDHHMISS"; + DATE_UPDATE:_FillValue = " "; + +// General information on the float + char PLATFORM_NUMBER(STRING8); + PLATFORM_NUMBER:long_name = "Float unique identifier"; + PLATFORM_NUMBER:conventions = "WMO float identifier : A9IIIII"; + PLATFORM_NUMBER:_FillValue = " "; + char PROJECT_NAME(STRING64); + PROJECT_NAME:long_name = "Name of the project"; + PROJECT_NAME:_FillValue = " "; + char PI_NAME(STRING64); + PI_NAME:long_name = "Name of the principal investigator"; + PI_NAME:_FillValue = " "; + char TRAJECTORY_PARAMETERS(N_PARAM,STRING64); + TRAJECTORY_PARAMETERS:long_name = "List of available parameters"; + TRAJECTORY_PARAMETERS:conventions = "Argo reference table 3"; + TRAJECTORY_PARAMETERS:_FillValue = " "; + char DATA_CENTRE(STRING2); + DATA_CENTRE:long_name = "Data centre in charge of float data processing"; + DATA_CENTRE:conventions = "Argo reference table 4"; + DATA_CENTRE:_FillValue = " "; + char DATA_STATE_INDICATOR(STRING4); + DATA_STATE_INDICATOR:long_name = "Degree of processing the data have passed through"; + DATA_STATE_INDICATOR:conventions = "Argo reference table 6"; + DATA_STATE_INDICATOR:_FillValue = " "; + char PLATFORM_TYPE(STRING32); + PLATFORM_TYPE:long_name = "Type of float"; + PLATFORM_TYPE:conventions = "Argo reference table 23"; + PLATFORM_TYPE:_FillValue = " "; + char FLOAT_SERIAL_NO(STRING32); + FLOAT_SERIAL_NO:long_name = "Serial number of the float"; + FLOAT_SERIAL_NO:_FillValue = " "; + char FIRMWARE_VERSION(STRING64); + FIRMWARE_VERSION:long_name = "Instrument firmware version"; + FIRMWARE_VERSION:_FillValue = " "; + char WMO_INST_TYPE(STRING4); + WMO_INST_TYPE:long_name = "Coded instrument type"; + WMO_INST_TYPE:conventions = "Argo reference table 8"; + WMO_INST_TYPE:_FillValue = " "; + char POSITIONING_SYSTEM(STRING8); + POSITIONING_SYSTEM:long_name = "Positioning system"; + POSITIONING_SYSTEM:_FillValue = " "; + +// N_MEASUREMENT dimension variable group + double JULD(N_MEASUREMENT); + JULD:long_name = "Julian day (UTC) of each measurement relative to REFERENCE_DATE_TIME"; + JULD:standard_name = "time"; + JULD:units = "days since 1950-01-01 00:00:00 UTC"; + JULD:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD:resolution = "<+>DOUBLE:"; + JULD:_FillValue = 999999.; + JULD:axis = "T"; + char JULD_STATUS(N_MEASUREMENT); + JULD_STATUS:long_name = "Status of the date and time"; + JULD_STATUS:conventions = "Argo reference table 19"; + JULD_STATUS:_FillValue = " "; + char JULD_QC(N_MEASUREMENT); + JULD_QC:long_name = "Quality on date and time"; + JULD_QC:conventions = "Argo reference table 2"; + JULD_QC:_FillValue = " "; + double JULD_ADJUSTED(N_MEASUREMENT); + JULD_ADJUSTED:long_name = "Adjusted julian day (UTC) of each measurement relative to REFERENCE_DATE_TIME"; + JULD_ADJUSTED:standard_name = "time"; + JULD_ADJUSTED:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_ADJUSTED:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_ADJUSTED:resolution = "<+>DOUBLE:"; + JULD_ADJUSTED:_FillValue = 999999.; + JULD_ADJUSTED:axis = "T"; + char JULD_ADJUSTED_STATUS(N_MEASUREMENT); + JULD_ADJUSTED_STATUS:long_name = "Status of the JULD_ADJUSTED date"; + JULD_ADJUSTED_STATUS:conventions = "Argo reference table 19"; + JULD_ADJUSTED_STATUS:_FillValue = " "; + char JULD_ADJUSTED_QC(N_MEASUREMENT); + JULD_ADJUSTED_QC:long_name = "Quality on adjusted date and time"; + JULD_ADJUSTED_QC:conventions = "Argo reference table 2"; + JULD_ADJUSTED_QC:_FillValue = " "; + double LATITUDE(N_MEASUREMENT); + LATITUDE:long_name = "Latitude of each location"; + LATITUDE:standard_name = "latitude"; + LATITUDE:units = "degree_north"; + LATITUDE:_FillValue = 99999.; + LATITUDE:valid_min = -90.; + LATITUDE:valid_max = 90.; + LATITUDE:axis = "Y"; + double LONGITUDE(N_MEASUREMENT); + LONGITUDE:long_name = "Longitude of each location"; + LONGITUDE:standard_name = "longitude"; + LONGITUDE:units = "degree_east"; + LONGITUDE:_FillValue = 99999.; + LONGITUDE:valid_min = -180.; + LONGITUDE:valid_max = 180.; + LONGITUDE:axis = "X"; + char POSITION_ACCURACY(N_MEASUREMENT); + POSITION_ACCURACY:long_name = "Estimated accuracy in latitude and longitude"; + POSITION_ACCURACY:conventions = "Argo reference table 5"; + POSITION_ACCURACY:_FillValue = " "; + char POSITION_QC(N_MEASUREMENT); + POSITION_QC:long_name = "Quality on position"; + POSITION_QC:conventions = "Argo reference table 2"; + POSITION_QC:_FillValue = " "; + int CYCLE_NUMBER(N_MEASUREMENT); + CYCLE_NUMBER:long_name = "Float cycle number of the measurement"; + CYCLE_NUMBER:conventions = "0...N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER:_FillValue = 99999; + int CYCLE_NUMBER_ADJUSTED(N_MEASUREMENT); + CYCLE_NUMBER_ADJUSTED:long_name = "Adjusted float cycle number of the measurement"; + CYCLE_NUMBER_ADJUSTED:conventions = "0...N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER_ADJUSTED:_FillValue = 99999; + int MEASUREMENT_CODE(N_MEASUREMENT); + MEASUREMENT_CODE:long_name = "Flag referring to a measurement event in the cycle"; + MEASUREMENT_CODE:conventions = "Argo reference table 15"; + MEASUREMENT_CODE:_FillValue = 99999; + +// structures are added via argo-params-spec-v3.1 + + float AXES_ERROR_ELLIPSE_MAJOR(N_MEASUREMENT); + AXES_ERROR_ELLIPSE_MAJOR:long_name = "Semi-major axis of error ellipse from positioning system"; + AXES_ERROR_ELLIPSE_MAJOR:units = "meters"; + AXES_ERROR_ELLIPSE_MAJOR:_FillValue = 99999.f; + float AXES_ERROR_ELLIPSE_MINOR(N_MEASUREMENT); + AXES_ERROR_ELLIPSE_MINOR:long_name = "Semi-minor axis of error ellipse from positioning system"; + AXES_ERROR_ELLIPSE_MINOR:units = "meters"; + AXES_ERROR_ELLIPSE_MINOR:_FillValue = 99999.f; + float AXES_ERROR_ELLIPSE_ANGLE(N_MEASUREMENT); + AXES_ERROR_ELLIPSE_ANGLE:long_name = "Angle of error ellipse from positioning system"; + AXES_ERROR_ELLIPSE_ANGLE:units = "Degrees (from North when heading East)"; + AXES_ERROR_ELLIPSE_ANGLE:_FillValue = 99999.f; + char SATELLITE_NAME(N_MEASUREMENT); + SATELLITE_NAME:long_name = "Satellite name from positioning system"; + SATELLITE_NAME:_FillValue = " "; + + char TRAJECTORY_PARAMETER_DATA_MODE(N_MEASUREMENT, N_PARAM); + TRAJECTORY_PARAMETER_DATA_MODE:long_name = "Delayed mode or real time data"; + TRAJECTORY_PARAMETER_DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + TRAJECTORY_PARAMETER_DATA_MODE:_FillValue = " "; + char JULD_DATA_MODE(N_MEASUREMENT); + JULD_DATA_MODE:long_name = "Delayed mode or real time data"; + JULD_DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + JULD_DATA_MODE:_FillValue = " "; + + +// N_CYCLE dimension variable group + double JULD_DESCENT_START(N_CYCLE); + JULD_DESCENT_START:long_name = "Descent start date of the cycle"; + JULD_DESCENT_START:standard_name = "time"; + JULD_DESCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DESCENT_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_DESCENT_START:resolution = "<+>DOUBLE:"; + JULD_DESCENT_START:_FillValue = 999999.; + char JULD_DESCENT_START_STATUS(N_CYCLE); + JULD_DESCENT_START_STATUS:long_name = "Status of descent start date of the cycle"; + JULD_DESCENT_START_STATUS:conventions = "Argo reference table 19"; + JULD_DESCENT_START_STATUS:_FillValue = " "; + double JULD_FIRST_STABILIZATION(N_CYCLE); + JULD_FIRST_STABILIZATION:long_name = "Time when a float first becomes water-neutral"; + JULD_FIRST_STABILIZATION:standard_name = "time"; + JULD_FIRST_STABILIZATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_FIRST_STABILIZATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_FIRST_STABILIZATION:resolution = "<+>DOUBLE:"; + JULD_FIRST_STABILIZATION:_FillValue = 999999.; + char JULD_FIRST_STABILIZATION_STATUS(N_CYCLE); + JULD_FIRST_STABILIZATION_STATUS:long_name = "Status of time when a float first becomes water-neutral"; + JULD_FIRST_STABILIZATION_STATUS:conventions = "Argo reference table 19"; + JULD_FIRST_STABILIZATION_STATUS:_FillValue = " "; + double JULD_DESCENT_END(N_CYCLE); + JULD_DESCENT_END:long_name = "Descent end date of the cycle"; + JULD_DESCENT_END:standard_name = "time"; + JULD_DESCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DESCENT_END:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_DESCENT_END:resolution = "<+>DOUBLE:"; + JULD_DESCENT_END:_FillValue = 999999.; + char JULD_DESCENT_END_STATUS(N_CYCLE); + JULD_DESCENT_END_STATUS:long_name = "Status of descent end date of the cycle"; + JULD_DESCENT_END_STATUS:conventions = "Argo reference table 19"; + JULD_DESCENT_END_STATUS:_FillValue = " "; + double JULD_PARK_START(N_CYCLE); + JULD_PARK_START:long_name = "Drift start date of the cycle"; + JULD_PARK_START:standard_name = "time"; + JULD_PARK_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_PARK_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_PARK_START:resolution = "<+>DOUBLE:"; + JULD_PARK_START:_FillValue = 999999.; + char JULD_PARK_START_STATUS(N_CYCLE); + JULD_PARK_START_STATUS:long_name = "Status of drift start date of the cycle"; + JULD_PARK_START_STATUS:conventions = "Argo reference table 19"; + JULD_PARK_START_STATUS:_FillValue = " "; + double JULD_PARK_END(N_CYCLE); + JULD_PARK_END:long_name = "Drift end date of the cycle"; + JULD_PARK_END:standard_name = "time"; + JULD_PARK_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_PARK_END:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_PARK_END:resolution = "<+>DOUBLE:"; + JULD_PARK_END:_FillValue = 999999.; + char JULD_PARK_END_STATUS(N_CYCLE); + JULD_PARK_END_STATUS:long_name = "Status of drift end date of the cycle"; + JULD_PARK_END_STATUS:conventions = "Argo reference table 19"; + JULD_PARK_END_STATUS:_FillValue = " "; + double JULD_DEEP_DESCENT_END(N_CYCLE); + JULD_DEEP_DESCENT_END:long_name = "Deep descent end date of the cycle"; + JULD_DEEP_DESCENT_END:standard_name = "time"; + JULD_DEEP_DESCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DEEP_DESCENT_END:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_DEEP_DESCENT_END:resolution = "<+>DOUBLE:"; + JULD_DEEP_DESCENT_END:_FillValue = 999999.; + char JULD_DEEP_DESCENT_END_STATUS(N_CYCLE); + JULD_DEEP_DESCENT_END_STATUS:long_name = "Status of deep descent end date of the cycle"; + JULD_DEEP_DESCENT_END_STATUS:conventions = "Argo reference table 19"; + JULD_DEEP_DESCENT_END_STATUS:_FillValue = " "; + double JULD_DEEP_PARK_START(N_CYCLE); + JULD_DEEP_PARK_START:long_name = "Deep park start date of the cycle"; + JULD_DEEP_PARK_START:standard_name = "time"; + JULD_DEEP_PARK_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DEEP_PARK_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_DEEP_PARK_START:resolution = "<+>DOUBLE:"; + JULD_DEEP_PARK_START:_FillValue = 999999.; + char JULD_DEEP_PARK_START_STATUS(N_CYCLE); + JULD_DEEP_PARK_START_STATUS:long_name = "Status of deep park start date of the cycle"; + JULD_DEEP_PARK_START_STATUS:conventions = "Argo reference table 19"; + JULD_DEEP_PARK_START_STATUS:_FillValue = " "; + double JULD_ASCENT_START(N_CYCLE); + JULD_ASCENT_START:long_name = "Start date of the ascent to the surface"; + JULD_ASCENT_START:standard_name = "time"; + JULD_ASCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_ASCENT_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_ASCENT_START:resolution = "<+>DOUBLE:"; + JULD_ASCENT_START:_FillValue = 999999.; + char JULD_ASCENT_START_STATUS(N_CYCLE); + JULD_ASCENT_START_STATUS:long_name = "Status of start date of the ascent to the surface"; + JULD_ASCENT_START_STATUS:conventions = "Argo reference table 19"; + JULD_ASCENT_START_STATUS:_FillValue = " "; + double JULD_DEEP_ASCENT_START(N_CYCLE); + JULD_DEEP_ASCENT_START:long_name = "Deep ascent start date of the cycle"; + JULD_DEEP_ASCENT_START:standard_name = "time"; + JULD_DEEP_ASCENT_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_DEEP_ASCENT_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_DEEP_ASCENT_START:resolution = "<+>DOUBLE:"; + JULD_DEEP_ASCENT_START:_FillValue = 999999.; + char JULD_DEEP_ASCENT_START_STATUS(N_CYCLE); + JULD_DEEP_ASCENT_START_STATUS:long_name = "Status of deep ascent start date of the cycle"; + JULD_DEEP_ASCENT_START_STATUS:conventions = "Argo reference table 19"; + JULD_DEEP_ASCENT_START_STATUS:_FillValue = " "; + double JULD_ASCENT_END(N_CYCLE); + JULD_ASCENT_END:long_name = "End date of ascent to the surface"; + JULD_ASCENT_END:standard_name = "time"; + JULD_ASCENT_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_ASCENT_END:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_ASCENT_END:resolution = "<+>DOUBLE:"; + JULD_ASCENT_END:_FillValue = 999999.; + char JULD_ASCENT_END_STATUS(N_CYCLE); + JULD_ASCENT_END_STATUS:long_name = "Status of end date of ascent to the surface"; + JULD_ASCENT_END_STATUS:conventions = "Argo reference table 19"; + JULD_ASCENT_END_STATUS:_FillValue = " "; + double JULD_TRANSMISSION_START(N_CYCLE); + JULD_TRANSMISSION_START:long_name = "Start date of transmission"; + JULD_TRANSMISSION_START:standard_name = "time"; + JULD_TRANSMISSION_START:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_TRANSMISSION_START:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_TRANSMISSION_START:resolution = "<+>DOUBLE:"; + JULD_TRANSMISSION_START:_FillValue = 999999.; + char JULD_TRANSMISSION_START_STATUS(N_CYCLE); + JULD_TRANSMISSION_START_STATUS:long_name = "Status of start date of transmission"; + JULD_TRANSMISSION_START_STATUS:conventions = "Argo reference table 19"; + JULD_TRANSMISSION_START_STATUS:_FillValue = " "; + double JULD_FIRST_MESSAGE(N_CYCLE); + JULD_FIRST_MESSAGE:long_name = "Date of earliest float message received"; + JULD_FIRST_MESSAGE:standard_name = "time"; + JULD_FIRST_MESSAGE:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_FIRST_MESSAGE:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_FIRST_MESSAGE:resolution = "<+>DOUBLE:"; + JULD_FIRST_MESSAGE:_FillValue = 999999.; + char JULD_FIRST_MESSAGE_STATUS(N_CYCLE); + JULD_FIRST_MESSAGE_STATUS:long_name = "Status of date of earliest float message received"; + JULD_FIRST_MESSAGE_STATUS:conventions = "Argo reference table 19"; + JULD_FIRST_MESSAGE_STATUS:_FillValue = " "; + double JULD_FIRST_LOCATION(N_CYCLE); + JULD_FIRST_LOCATION:long_name = "Date of earliest location"; + JULD_FIRST_LOCATION:standard_name = "time"; + JULD_FIRST_LOCATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_FIRST_LOCATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_FIRST_LOCATION:resolution = "<+>DOUBLE:"; + JULD_FIRST_LOCATION:_FillValue = 999999.; + char JULD_FIRST_LOCATION_STATUS(N_CYCLE); + JULD_FIRST_LOCATION_STATUS:long_name = "Status of date of earliest location"; + JULD_FIRST_LOCATION_STATUS:conventions = "Argo reference table 19"; + JULD_FIRST_LOCATION_STATUS:_FillValue = " "; + double JULD_LAST_LOCATION(N_CYCLE); + JULD_LAST_LOCATION:long_name = "Date of latest location"; + JULD_LAST_LOCATION:standard_name = "time"; + JULD_LAST_LOCATION:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_LAST_LOCATION:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_LAST_LOCATION:resolution = "<+>DOUBLE:"; + JULD_LAST_LOCATION:_FillValue = 999999.; + char JULD_LAST_LOCATION_STATUS(N_CYCLE); + JULD_LAST_LOCATION_STATUS:long_name = "Status of date of latest location"; + JULD_LAST_LOCATION_STATUS:conventions = "Argo reference table 19"; + JULD_LAST_LOCATION_STATUS:_FillValue = " "; + double JULD_LAST_MESSAGE(N_CYCLE); + JULD_LAST_MESSAGE:long_name = "Date of latest float message received"; + JULD_LAST_MESSAGE:standard_name = "time"; + JULD_LAST_MESSAGE:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_LAST_MESSAGE:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_LAST_MESSAGE:resolution = "<+>DOUBLE:"; + JULD_LAST_MESSAGE:_FillValue = 999999.; + char JULD_LAST_MESSAGE_STATUS(N_CYCLE); + JULD_LAST_MESSAGE_STATUS:long_name = "Status of date of latest float message received"; + JULD_LAST_MESSAGE_STATUS:conventions = "Argo reference table 19"; + JULD_LAST_MESSAGE_STATUS:_FillValue = " "; + double JULD_TRANSMISSION_END(N_CYCLE); + JULD_TRANSMISSION_END:long_name = "Transmission end date"; + JULD_TRANSMISSION_END:standard_name = "time"; + JULD_TRANSMISSION_END:units = "days since 1950-01-01 00:00:00 UTC"; + JULD_TRANSMISSION_END:conventions = "Relative julian days with decimal part (as parts of day)"; + JULD_TRANSMISSION_END:resolution = "<+>DOUBLE:"; + JULD_TRANSMISSION_END:_FillValue = 999999.; + char JULD_TRANSMISSION_END_STATUS(N_CYCLE); + JULD_TRANSMISSION_END_STATUS:long_name = "Status of transmission end date"; + JULD_TRANSMISSION_END_STATUS:conventions = "Argo reference table 19"; + JULD_TRANSMISSION_END_STATUS:_FillValue = " "; + double CLOCK_OFFSET(N_CYCLE); + CLOCK_OFFSET:long_name = "Time of float clock drift"; + CLOCK_OFFSET:units = "days"; + CLOCK_OFFSET:conventions = "Days with decimal part (as parts of day)"; + CLOCK_OFFSET:_FillValue = 999999.; + char GROUNDED(N_CYCLE); + GROUNDED:long_name = "Did the profiler touch the ground for that cycle?"; + GROUNDED:conventions = "Argo reference table 20"; + GROUNDED:_FillValue = " "; + float REPRESENTATIVE_PARK_PRESSURE(N_CYCLE); + REPRESENTATIVE_PARK_PRESSURE:long_name = "Best pressure value during park phase"; + REPRESENTATIVE_PARK_PRESSURE:units = "decibar"; + REPRESENTATIVE_PARK_PRESSURE:_FillValue = 99999.f; + char REPRESENTATIVE_PARK_PRESSURE_STATUS(N_CYCLE); + REPRESENTATIVE_PARK_PRESSURE_STATUS:long_name = "Status of best pressure value during park phase"; + REPRESENTATIVE_PARK_PRESSURE_STATUS:conventions = "Argo reference table 21"; + REPRESENTATIVE_PARK_PRESSURE_STATUS:_FillValue = " "; + int CONFIG_MISSION_NUMBER(N_CYCLE); + CONFIG_MISSION_NUMBER:long_name = "Unique number denoting the missions performed by the float"; + CONFIG_MISSION_NUMBER:conventions = "1...N, 1 : first complete mission"; + CONFIG_MISSION_NUMBER:_FillValue = 99999; + int CYCLE_NUMBER_INDEX(N_CYCLE); + CYCLE_NUMBER_INDEX:long_name = "Cycle number that corresponds to the current index"; + CYCLE_NUMBER_INDEX:conventions = "0...N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER_INDEX:_FillValue = 99999; + int CYCLE_NUMBER_INDEX_ADJUSTED(N_CYCLE); + CYCLE_NUMBER_INDEX_ADJUSTED:long_name = "Adjusted cycle number that corresponds to the current index"; + CYCLE_NUMBER_INDEX_ADJUSTED:conventions = "0...N, 0 : launch cycle, 1 : first complete cycle"; + CYCLE_NUMBER_INDEX_ADJUSTED:_FillValue = 99999; + char DATA_MODE(N_CYCLE); + DATA_MODE:long_name = "Delayed mode or real time data"; + DATA_MODE:conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + DATA_MODE:_FillValue = " "; + +// Scientific calibration information + + char SCIENTIFIC_CALIB_PARAMETER(N_CALIB_PARAM, N_PARAM, STRING64); + SCIENTIFIC_CALIB_PARAMETER:long_name = "List of parameters with calibration information"; + SCIENTIFIC_CALIB_PARAMETER:conventions = "Argo reference table 3"; + SCIENTIFIC_CALIB_PARAMETER:_FillValue = " "; + char SCIENTIFIC_CALIB_EQUATION(N_CALIB_PARAM, N_PARAM, STRING256); + SCIENTIFIC_CALIB_EQUATION:long_name = "Calibration equation for this parameter"; + SCIENTIFIC_CALIB_EQUATION:_FillValue = " "; + char SCIENTIFIC_CALIB_COEFFICIENT(N_CALIB_PARAM, N_PARAM, STRING256); + SCIENTIFIC_CALIB_COEFFICIENT:long_name = "Calibration coefficients for this equation"; + SCIENTIFIC_CALIB_COEFFICIENT:_FillValue = " "; + char SCIENTIFIC_CALIB_COMMENT(N_CALIB_PARAM, N_PARAM, STRING256); + SCIENTIFIC_CALIB_COMMENT:long_name = "Comment applying to this parameter calibration"; + SCIENTIFIC_CALIB_COMMENT:_FillValue = " "; + char SCIENTIFIC_CALIB_DATE(N_CALIB_PARAM, N_PARAM, DATE_TIME); + SCIENTIFIC_CALIB_DATE:long_name = "Date of calibration"; + SCIENTIFIC_CALIB_DATE:conventions = "YYYYMMDDHHMISS"; + SCIENTIFIC_CALIB_DATE:_FillValue = " "; + +// JULD calibration + + char JULD_CALIB_EQUATION(N_CALIB_JULD, STRING256); + JULD_CALIB_EQUATION:long_name = "Calibration equation for JULD"; + JULD_CALIB_EQUATION:_FillValue = " "; + char JULD_CALIB_COEFFICIENT(N_CALIB_JULD, STRING256); + JULD_CALIB_COEFFICIENT:long_name = "Calibration coefficients for JULD equation"; + JULD_CALIB_COEFFICIENT:_FillValue = " "; + char JULD_CALIB_COMMENT(N_CALIB_JULD, STRING256); + JULD_CALIB_COMMENT:long_name = "Comment applying to JULD calibration"; + JULD_CALIB_COMMENT:_FillValue = " "; + char JULD_CALIB_DATE(N_CALIB_JULD, DATE_TIME); + JULD_CALIB_DATE:long_name = "Date of JULD calibration"; + JULD_CALIB_DATE:conventions = "YYYYMMDDHHMISS"; + JULD_CALIB_DATE:_FillValue = " "; + +// History information + char HISTORY_INSTITUTION(N_HISTORY, STRING4); + HISTORY_INSTITUTION:long_name = "Institution which performed action"; + HISTORY_INSTITUTION:conventions = "Argo reference table 4"; + HISTORY_INSTITUTION:_FillValue = " "; + char HISTORY_STEP(N_HISTORY, STRING4); + HISTORY_STEP:long_name = "Step in data processing"; + HISTORY_STEP:conventions = "Argo reference table 12"; + HISTORY_STEP:_FillValue = " "; + char HISTORY_SOFTWARE(N_HISTORY, STRING4); + HISTORY_SOFTWARE:long_name = "Name of software which performed action"; + HISTORY_SOFTWARE:conventions = "Institution dependent"; + HISTORY_SOFTWARE:_FillValue = " "; + char HISTORY_SOFTWARE_RELEASE(N_HISTORY, STRING4); + HISTORY_SOFTWARE_RELEASE:long_name = "Version/release of software which performed action"; + HISTORY_SOFTWARE_RELEASE:conventions = "Institution dependent"; + HISTORY_SOFTWARE_RELEASE:_FillValue = " "; + char HISTORY_REFERENCE(N_HISTORY, STRING64); + HISTORY_REFERENCE:long_name = "Reference of database"; + HISTORY_REFERENCE:conventions = "Institution dependent"; + HISTORY_REFERENCE:_FillValue = " "; + char HISTORY_DATE(N_HISTORY, DATE_TIME); + HISTORY_DATE:long_name = "Date the history record was created"; + HISTORY_DATE:conventions = "YYYYMMDDHHMISS"; + HISTORY_DATE:_FillValue = " "; + char HISTORY_ACTION(N_HISTORY, STRING4); + HISTORY_ACTION:long_name = "Action performed on data"; + HISTORY_ACTION:conventions = "Argo reference table 7"; + HISTORY_ACTION:_FillValue = " "; + char HISTORY_PARAMETER(N_HISTORY, STRING64); + HISTORY_PARAMETER:long_name = "Parameter action is performed on"; + HISTORY_PARAMETER:conventions = "Argo reference table 3"; + HISTORY_PARAMETER:_FillValue = " "; + float_or_double HISTORY_PREVIOUS_VALUE(N_HISTORY); + HISTORY_PREVIOUS_VALUE:long_name = "Parameter/Flag previous value before action"; + HISTORY_PREVIOUS_VALUE:_FillValue = 99999.f; + char HISTORY_INDEX_DIMENSION(N_HISTORY); + HISTORY_INDEX_DIMENSION:long_name = "Name of dimension to which HISTORY_START_INDEX and HISTORY_STOP_INDEX correspond"; + HISTORY_INDEX_DIMENSION:conventions = "C: N_CYCLE, M: N_MEASUREMENT"; + HISTORY_INDEX_DIMENSION:_FillValue = " "; + int HISTORY_START_INDEX(N_HISTORY); + HISTORY_START_INDEX:long_name = "Start index action applied on"; + HISTORY_START_INDEX:_FillValue = 99999; + int HISTORY_STOP_INDEX(N_HISTORY); + HISTORY_STOP_INDEX:long_name = "Stop index action applied on"; + HISTORY_STOP_INDEX:_FillValue = 99999; + char HISTORY_QCTEST(N_HISTORY, STRING16); + HISTORY_QCTEST:long_name = "Documentation of tests performed, tests failed (in hex form)"; + HISTORY_QCTEST:conventions = "Write tests performed when ACTION=QCP$; tests failed when ACTION=QCF$"; + HISTORY_QCTEST:_FillValue = " "; + +} diff --git a/file_checker_exec/src/main/resources/file_checker_spec/measurement_code-juld_variables b/file_checker_exec/src/main/resources/file_checker_spec/measurement_code-juld_variables new file mode 100644 index 0000000..3e420aa --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/measurement_code-juld_variables @@ -0,0 +1,29 @@ +// $Revision: 656 $ +// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ +// +// Because the code 703 is used for all surface values +// but the ones here are only the first/last occurrence +// within a cycle, we needed a flagging scheme for that +// +// Special flagging scheme: +// Numbers > 10,000 +// Ending in "01" --> first within cycle +// Ending in "02" --> last within cycle + +100 | JULD_DESCENT_START +150 | JULD_FIRST_STABILIZATION +200 | JULD_DESCENT_END +250 | JULD_PARK_START +300 | JULD_PARK_END +400 | JULD_DEEP_DESCENT_END +450 | JULD_DEEP_PARK_START +500 | JULD_ASCENT_START +550 | JULD_DEEP_ASCENT_START +600 | JULD_ASCENT_END +700 | JULD_TRANSMISSION_START +702 | JULD_FIRST_MESSAGE +70301 | JULD_FIRST_LOCATION +70302 | JULD_LAST_LOCATION +704 | JULD_LAST_MESSAGE +800 | JULD_TRANSMISSION_END + diff --git a/file_checker_exec/src/main/resources/file_checker_spec/readme.md b/file_checker_exec/src/main/resources/file_checker_spec/readme.md new file mode 100644 index 0000000..d0a28b5 --- /dev/null +++ b/file_checker_exec/src/main/resources/file_checker_spec/readme.md @@ -0,0 +1 @@ +This directory contains the specification files of the file format checker. diff --git a/file_checker_exec/src/main/resources/log4j2-prod.xml b/file_checker_exec/src/main/resources/log4j2-prod.xml index beaafe0..286eaf7 100644 --- a/file_checker_exec/src/main/resources/log4j2-prod.xml +++ b/file_checker_exec/src/main/resources/log4j2-prod.xml @@ -1,9 +1,9 @@ - + - ${sys:logfile.name:-all_LOG} - ${sys:log_suffix:-} + ${__sys__:logfile.name:-FileChecker_all_LOG} + ${__sys__:log_suffix:-} @@ -12,20 +12,30 @@ + immediateFlush="true" + append="true"> - + + - - - + + + + + + + + + + + diff --git a/file_checker_exec/src/test/java/fr/coriolis/checker/config/OptionsTest.java b/file_checker_exec/src/test/java/fr/coriolis/checker/config/OptionsTest.java index 73cee72..a40f20f 100644 --- a/file_checker_exec/src/test/java/fr/coriolis/checker/config/OptionsTest.java +++ b/file_checker_exec/src/test/java/fr/coriolis/checker/config/OptionsTest.java @@ -11,7 +11,6 @@ import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; -import fr.coriolis.checker.config.Options; import fr.coriolis.checker.specs.ArgoReferenceTable; @Tag("ExtractOptionsTests") @@ -37,23 +36,25 @@ void getInstance_shouldReturnANewInstanceOfOptions_whenValidArguments() { String file1 = "file1"; String file2 = "file2"; - String[] args = { "-help", "-version", "-battery-check", "-no-name-check", "-text-result", "-format-only", - "-null-warn", "-data-check-all", "-psal-stats", "-list-file", listOfFiles, dacName, specDir, outDir, + String[] args = { "-help", "-version", "-no-name-check", "-text-result", "-format-only", "-null-warn", + "-data-check-all", "-psal-stats", "-online-nvs", "-list-file", listOfFiles, dacName, specDir, outDir, inDir, file1, file2 }; // ACT - Options options = Options.getInstance(args); + Options.init(args); + Options options = Options.getInstance(); // ASSERT assertThat(options.isHelp()).isTrue(); assertThat(options.isVersion()).isTrue(); - assertThat(options.isDoBatteryChecks()).isTrue(); assertThat(options.isDoNameCheck()).isFalse(); assertThat(options.isDoXml()).isFalse(); assertThat(options.isDoFormatOnly()).isTrue(); assertThat(options.isDoNulls()).isTrue(); assertThat(options.isDoFormatOnlyPre31()).isFalse(); assertThat(options.isDoPsalStats()).isTrue(); + assertThat(options.isUseInternalSpecs()).isFalse(); + assertThat(options.isUseOnlineNVS()).isTrue(); assertThat(options.getListFile()).isEqualTo(listOfFiles); assertThat(options.getDacName()).isEqualTo(dacName); assertThat(options.getSpecDirName()).isEqualTo(specDir); @@ -64,12 +65,11 @@ void getInstance_shouldReturnANewInstanceOfOptions_whenValidArguments() { @Test public void getInstance_shouldThrowException_whenMissingArgumentAfterListFile() { - // ARRANGE - String[] args = { "-help", "-version", "-battery-check", "-no-name-check", "-text-result", "-format-only", - "-list-file" }; + // ARRANG + String[] args = { "-help", "-version", "-no-name-check", "-text-result", "-format-only", "-list-file" }; // ACT & ASSERT - assertThatThrownBy(() -> Options.getInstance(args)).isInstanceOf(IllegalArgumentException.class) + assertThatThrownBy(() -> Options.init(args)).isInstanceOf(IllegalArgumentException.class) .hasMessageContaining("Missing argument"); } @@ -80,7 +80,7 @@ public void getInstance_shouldThrowException_whenInvalidArgument() { String[] args = { "-InvalidArgument" }; // ACT & ASSERT - assertThatThrownBy(() -> Options.getInstance(args)).isInstanceOf(IllegalArgumentException.class) + assertThatThrownBy(() -> Options.init(args)).isInstanceOf(IllegalArgumentException.class) .hasMessageContaining("Invalid argument"); } @@ -88,11 +88,12 @@ public void getInstance_shouldThrowException_whenInvalidArgument() { public void getInstance_shouldThrowException_whenTooFewArguments() { // ARRANGE - String[] args = { "-help", "-version", "-battery-check", "-no-name-check", "-text-result", "-format-only", - "-list-file", "list_of_files.txt", "dacName", "specDir", "outDir" }; + String[] args = { "-help", "-version", "-no-name-check", "-text-result", "-format-only", "-list-file", + "list_of_files.txt", "dacName", "specDir", "outDir" }; // ACT & ASSERT - assertThatThrownBy(() -> Options.getInstance(args)).isInstanceOf(IllegalArgumentException.class) + + assertThatThrownBy(() -> Options.init(args)).isInstanceOf(IllegalArgumentException.class) .hasMessageContaining("Too few arguments"); } @@ -123,8 +124,8 @@ public void checkDirectory_shouldThrowAnException_whenDirIsInvalid() { String notValidDir = "unexistent dir"; // ACT & ASSERT - assertThatThrownBy(() -> Options.checkDirectory(notValidDir)).isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("is not a directory"); + assertThatThrownBy(() -> Options.checkDirectory(notValidDir, false)) + .isInstanceOf(IllegalArgumentException.class).hasMessageContaining("is not a directory"); } diff --git a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/TestsUtils.java b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/TestsUtils.java index 2719c8b..83ec44a 100644 --- a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/TestsUtils.java +++ b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/TestsUtils.java @@ -6,6 +6,9 @@ import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; import java.util.Properties; public final class TestsUtils { @@ -40,7 +43,6 @@ private static String executeJarAndGetResult(String fileName, String dac, String String inputDirPath = TestsUtils.TEST_FILES_DIR + "/" + testDirName; File inputDir = new File(inputDirPath); File testFile = new File(inputDirPath + "/" + fileName); - // pre-checks assertThat(TestsUtils.jarFile).exists().isFile().as("jar should be created in target folder"); assertThat(testFile).exists().isFile().as("netcdf test file should be in test/netcdf/TEST* resources folder"); @@ -49,15 +51,19 @@ private static String executeJarAndGetResult(String fileName, String dac, String assertThat(TestsUtils.outputDir).exists().isDirectory().as("output directory should exist"); // ACT - ProcessBuilder builder = new ProcessBuilder("java", "-jar", TestsUtils.jarPath, options, dac, - TestsUtils.SPEC_DIR_PATH, TestsUtils.OUTPUT_DIR_PATH, inputDirPath, fileName); + List command = new ArrayList<>(List.of("java", "-jar", TestsUtils.jarPath)); + if (options != null && !options.isBlank()) { + // split eventual multiple options + command.addAll(Arrays.asList(options.split("\\s+"))); + } + command.addAll(List.of(dac, TestsUtils.SPEC_DIR_PATH, TestsUtils.OUTPUT_DIR_PATH, inputDirPath, fileName)); + ProcessBuilder builder = new ProcessBuilder(command); builder.redirectErrorStream(true); Process process = builder.start(); // ASSERT - common checks int exitCode = process.waitFor(); assertThat(exitCode).isZero().as("execution should complete without errors"); - File xmlResultFile = new File(TestsUtils.OUTPUT_DIR_PATH + "/" + fileName + ".filecheck"); assertThat(xmlResultFile).exists().isFile().as("Result file should be created in %s", TestsUtils.OUTPUT_DIR_PATH); @@ -68,9 +74,7 @@ private static String executeJarAndGetResult(String fileName, String dac, String // ============== CHECK RESULT ================= public static void genericFileCheckerE2ETest(String fileName, String dac, String result, String phase, String testDirName, String options) throws IOException, InterruptedException { - String content = executeJarAndGetResult(fileName, dac, testDirName, options); - assertThat(content).isNotEmpty().contains("" + result).contains("" + phase); } diff --git a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateFileNameIT.java b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateFileNameIT.java index 78042ec..f63af40 100644 --- a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateFileNameIT.java +++ b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateFileNameIT.java @@ -16,6 +16,7 @@ public class ValidateFileNameIT { @BeforeAll public static void init() { TestsUtils.init(ValidateFileNameIT.class); + } @Tag(TEST_DIR_NAME) @@ -24,7 +25,6 @@ public static void init() { "6903283_badName.nc,coriolis,FILE-REJECTED,FILE-NAME-CHECK" }) public void fileChecker_shouldAcceptFile_whenValidFileName(String fileName, String dac, String result, String phase) throws IOException, InterruptedException { - TestsUtils.genericFileCheckerE2ETest(fileName, dac, result, phase, TEST_DIR_NAME, "-format-only"); } diff --git a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateMetaConfigParamIT.java b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateMetaConfigParamIT.java new file mode 100644 index 0000000..e5438f3 --- /dev/null +++ b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateMetaConfigParamIT.java @@ -0,0 +1,45 @@ +package fr.coriolis.checker.e2etests; + +import java.io.IOException; + +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.DisplayName; +import org.junit.jupiter.api.Tag; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvSource; + +@DisplayName("Check read of meta R18 reference table to check CONFIG PARAM name") +public class ValidateMetaConfigParamIT { + + private final String TEST_DIR_NAME = "TEST_META_0005"; + + @BeforeAll + public static void init() { + TestsUtils.init(ValidateMetaConfigParamIT.class); + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should not have warnings") + @CsvSource({ "1900848_meta_CDLexception_ShortSensorName.nc,coriolis", + "3901639_meta_multiples_template_ssn_cpn_n.nc,coriolis" }) + void fileChecker_shouldNotRaiseWarnings_WhenParamNameConformToR18TemplatesValues(String fileName, String dac) + throws IOException, InterruptedException { + + TestsUtils.e2eTestWarningAbsence(fileName, dac, TEST_DIR_NAME); + + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have warning {2}") + @CsvSource(delimiter = '|', value = { + "3901639_meta_Bad-short-sensor-name.nc|coriolis|LAUNCH_CONFIG_PARAMETER_NAME[49]: Invalid template/value 'shortsensorname'/'Bad' in 'CONFIG_BadAscentPhaseDepthZone3StartPres' *** WILL BECOME AN ERROR ***", + "3901639_meta_N-Not-integer.nc|coriolis|LAUNCH_CONFIG_PARAMETER_NAME[49]: Invalid name 'CONFIG_CtdAscentPhaseDepthZoneXStartPres' *** WILL BECOME AN ERROR ***", + "3901639_meta_Bad-cycle-phase-name.nc|coriolis|LAUNCH_CONFIG_PARAMETER_NAME[49]: Invalid template/value 'cyclephasename'/'BadPhase' in 'CONFIG_CtdBadPhaseDepthZone3StartPres' *** WILL BECOME AN ERROR ***", + "3901639_meta_N-OutOfRange.nc|coriolis|LAUNCH_CONFIG_PARAMETER_NAME[49]: Invalid template/value 'N'/'6' in 'CONFIG_CtdAscentPhaseDepthZone6StartPres' *** WILL BECOME AN ERROR ***" }) + void fileChecker_shouldRaiseWarnings_WhenParamNameNotConformToR18TemplatesValues(String fileName, String dac, + String warningMessage) throws IOException, InterruptedException { + + TestsUtils.e2eTestWarningPresence(fileName, dac, warningMessage, TEST_DIR_NAME); + } + +} diff --git a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateTechTimeseriesIT.java b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateTechTimeseriesIT.java index 2e9c6e0..40b9056 100644 --- a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateTechTimeseriesIT.java +++ b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/ValidateTechTimeseriesIT.java @@ -18,13 +18,11 @@ public static void init() { @Tag(TEST_DIR_NAME) @ParameterizedTest(name = "{0} from dac {1} should have status {2} at phase {3}") - @CsvSource({ "3901682_tech.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", - "3901682_tech_No-JULD.nc,coriolis,FILE-REJECTED,FORMAT-VERIFICATION", + @CsvSource({ "3901682_tech_No-JULD.nc,coriolis,FILE-REJECTED,FORMAT-VERIFICATION", + "3901682_tech_variable_name_with_bad_short_sensor_name.nc,coriolis,FILE-REJECTED,FORMAT-VERIFICATION", "6903283_tech_No-Timeseries.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", - "3901682_tech_bad_long_name.nc,coriolis,FILE-REJECTED,FORMAT-VERIFICATION", "6990728_tech_unitsNotInR14ButInUnitsList.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", - "6990728_tech_BadUnits.nc,coriolis,FILE-REJECTED,FORMAT-VERIFICATION" - }) + "6990728_tech_BadUnits.nc,coriolis,FILE-REJECTED,FORMAT-VERIFICATION" }) void fileChecker_shouldAcceptTechTimeseries_WhenConformToSpec(String fileName, String dac, String result, String phase) throws IOException, InterruptedException { @@ -32,4 +30,34 @@ void fileChecker_shouldAcceptTechTimeseries_WhenConformToSpec(String fileName, S } + // TO DO : WHEN UM 4.5 USE THIS TEST AS IT SHOULD REJECT FILE WITH BAD long_name +// @Tag(TEST_DIR_NAME) +// @ParameterizedTest(name = "{0} from dac {1} should have status {2} at phase {3}") +// @CsvSource({ "3901682_tech_good_long_name.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", +// "3901682_tech_good_long_name_with_short_sensor_name.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", +// "3901682_tech_long_name_with_bad_short_sensor_name.nc,coriolis,FILE-REJECTED,FORMAT-VERIFICATION", +// "3901682_tech_bad_long_name.nc,coriolis,FILE-REJECTED,FORMAT-VERIFICATION", +// "3901682_tech_inconsistent_unit_in_long_name.nc,coriolis,FILE-REJECTED,FORMAT-VERIFICATION", }) +// void fileChecker_shouldAcceptTechTimeseries_WhenLongNameWellFormated(String fileName, String dac, String result, +// String phase) throws IOException, InterruptedException { +// +// TestsUtils.genericFileCheckerE2ETest(fileName, dac, result, phase, TEST_DIR_NAME); +// +// } + // TO DO : WHEN UM 4.5 DELETE THIS TEST AS IT SHOULD REJECT FILE WITH BAD + // long_name + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have status {2} at phase {3}") + @CsvSource({ "3901682_tech_good_long_name.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "3901682_tech_good_long_name_with_short_sensor_name.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "3901682_tech_long_name_with_bad_short_sensor_name.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "3901682_tech_bad_long_name.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "3901682_tech_inconsistent_unit_in_long_name.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", }) + void fileChecker_shouldAcceptTechTimeseries_WhenLongNameWellFormated(String fileName, String dac, String result, + String phase) throws IOException, InterruptedException { + + TestsUtils.genericFileCheckerE2ETest(fileName, dac, result, phase, TEST_DIR_NAME); + + } + } diff --git a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validateBatteryParamsCheckInMetaFileIT.java b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validateBatteryParamsCheckInMetaFileIT.java new file mode 100644 index 0000000..040f2aa --- /dev/null +++ b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validateBatteryParamsCheckInMetaFileIT.java @@ -0,0 +1,78 @@ +package fr.coriolis.checker.e2etests; + +import java.io.IOException; + +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.DisplayName; +import org.junit.jupiter.api.Tag; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvSource; + +@DisplayName("Check BATTERY_* params against reference table") +class validateBatteryParamsCheckInMetaFileIT { + + private final String TEST_DIR_NAME = "TEST_META_0006"; + + @BeforeAll + public static void init() { + TestsUtils.init(validateBatteryParamsCheckInMetaFileIT.class); + + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have status {2} at phase {3}") + @CsvSource({ "5907141_meta_good_batteryType.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "5907141_meta_bad-type.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "5907141_meta_bad-Manufacturer.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "5907141_meta_batteryType_empty.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION" }) + void fileChecker_shouldAcceptMetaFile_WhenBatteryTypeBadOrGood(String fileName, String dac, String result, + String phase) throws IOException, InterruptedException { + + TestsUtils.genericFileCheckerE2ETest(fileName, dac, result, phase, TEST_DIR_NAME); + + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have status {2} at phase {3}") + @CsvSource({ "5907141_meta_BATTERY_PACKS_bad-size.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "5907141_meta_BATTERY_PACKS_bad-type.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "5907141_meta_BATTERY_PACKS_empty.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION" }) + void fileChecker_shouldAcceptMetaFile_WhenBatteryPacksBadOrEmpty(String fileName, String dac, String result, + String phase) throws IOException, InterruptedException { + + TestsUtils.genericFileCheckerE2ETest(fileName, dac, result, phase, TEST_DIR_NAME); + + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have warning {2}") + @CsvSource(delimiter = '|', value = { + "5907141_meta_bad-type.nc|coriolis|BATTERY_TYPE[1]: Invalid type: '{BAD}' *** WILL BECOME AN ERROR ***", + "5907141_meta_bad-Manufacturer.nc|coriolis|BATTERY_TYPE[1]: Invalid manufacturer: '{BAD}' *** WILL BECOME AN ERROR ***", + "5907141_meta_incoherent_type.nc|coriolis|Inconsistent battery's type in BATTERY_TYPE[1] and BATTERY_PACKS[1]. BATTERY_TYPE's type ={Lithium}, BATTERY_PACKS's type = {Hyb}", + "5907141_meta_incoherent_type_second_pack.nc|coriolis|Inconsistent battery's type in BATTERY_TYPE[2] and BATTERY_PACKS[2]. BATTERY_TYPE's type ={Lithium}, BATTERY_PACKS's type = {Alk}" }) + void fileChecker_ShouldRaiseWarning_WhenBadBatteryType(String fileName, String dac, String warningMessage) + throws IOException, InterruptedException { + TestsUtils.e2eTestWarningPresence(fileName, dac, warningMessage, TEST_DIR_NAME); + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should not have warning") + @CsvSource(delimiter = '|', value = { "5907141_meta_good_batteryType.nc|coriolis", }) + void fileChecker_ShouldNotRaiseWarning_WhenBatteryParamGood(String fileName, String dac) + throws IOException, InterruptedException { + TestsUtils.e2eTestWarningAbsence(fileName, dac, TEST_DIR_NAME); + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have warning {2}") + @CsvSource(delimiter = '|', value = { + "5907141_meta_BATTERY_PACKS_bad-size.nc|coriolis|BATTERY_PACKS[1]: Invalid style of battery: '{X}' *** WILL BECOME AN ERROR ***", + "5907141_meta_BATTERY_PACKS_bad-type.nc|coriolis|BATTERY_PACKS[1]: Invalid type: '{BAD}' *** WILL BECOME AN ERROR ***", + "5907141_meta_Wrong-number-Battery-Packs.nc|coriolis|Number of BATTERY_TYPES {1} != number of BATTERY_PACKS {2} *** WILL BECOME AN ERROR ***" }) + void fileChecker_ShouldRaiseWarning_WhenBadBatteryPacks(String fileName, String dac, String warningMessage) + throws IOException, InterruptedException { + TestsUtils.e2eTestWarningPresence(fileName, dac, warningMessage, TEST_DIR_NAME); + } + +} diff --git a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validatePINameChecksIT.java b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validatePINameChecksIT.java new file mode 100644 index 0000000..cc4213a --- /dev/null +++ b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validatePINameChecksIT.java @@ -0,0 +1,58 @@ +package fr.coriolis.checker.e2etests; + +import java.io.IOException; + +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.DisplayName; +import org.junit.jupiter.api.Tag; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvSource; + +@DisplayName("Check PROGRAM_NAME against reference table") +class validatePINameChecksIT { + + private final String TEST_DIR_NAME = "TEST_ALL_0006"; + + @BeforeAll + public static void init() { + TestsUtils.init(validatePINameChecksIT.class); + + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have status {2} at phase {3}") + @CsvSource({ "5907141_meta_apostrophe.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "5907141_meta_Bad_PIName.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "5907141_meta_BadSpaceCaractere.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "5907141_meta_multipleName.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION" }) + void fileChecker_shouldAcceptFile_WhenGoodOrBadPiNames(String fileName, String dac, String result, String phase) + throws IOException, InterruptedException { + + TestsUtils.genericFileCheckerE2ETest(fileName, dac, result, phase, TEST_DIR_NAME); + + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have status {2} at phase {3}") + @CsvSource({ "5907141_meta_multipleName.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION", + "5907141_meta_apostrophe.nc,coriolis,FILE-ACCEPTED,DATA-VALIDATION" }) + void fileChecker_shouldNotRaiseWarnings_WhenGoodPiNames(String fileName, String dac, String result, String phase) + throws IOException, InterruptedException { + + TestsUtils.e2eTestWarningAbsence(fileName, dac, TEST_DIR_NAME); + + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have warning {2}") + @CsvSource(delimiter = '|', value = { + "5907141_meta_Bad_PIName.nc|coriolis|PI_NAME : 'BAD' Status: Invalid (not in NVS R40 table)", + "5907141_meta_BadSpaceCaractere.nc|coriolis|PI_NAME : 'Fabrizio\u00A0D'ORTENZIO' Status: Invalid (not in NVS R40 table)" }) + + void fileChecker_ShouldRaiseWarning_WhenBadPiName(String fileName, String dac, String warningMessage) + throws IOException, InterruptedException { + TestsUtils.e2eTestWarningPresence(fileName, dac, warningMessage, TEST_DIR_NAME); + } +// + +} diff --git a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validatePhysParamDeprecatedAttributeOrPropertiesIT.java b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validatePhysParamDeprecatedAttributeOrPropertiesIT.java new file mode 100644 index 0000000..22d9f89 --- /dev/null +++ b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validatePhysParamDeprecatedAttributeOrPropertiesIT.java @@ -0,0 +1,42 @@ +package fr.coriolis.checker.e2etests; + +import java.io.IOException; + +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.DisplayName; +import org.junit.jupiter.api.Tag; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvSource; + +@DisplayName("Check deprecated attributes and properties table") +class validatePhysParamDeprecatedAttributeOrPropertiesIT { + + private final String TEST_DIR_NAME = "TEST_ALL_0005"; + + @BeforeAll + public static void init() { + TestsUtils.init(ValidateParamAdjustedIT.class); + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have status {2} at phase {3}") + @CsvSource({ "R6903724_001_v3.1_TEMP_Bad_validMin.nc,bodc,FILE-REJECTED,FORMAT-VERIFICATION", + "R6903724_001_v3.0_TEMP_Dep_validMin.nc,bodc,FILE-ACCEPTED,FORMAT-VERIFICATION", + "R6901125_202_v2.2_ADJUSTED_ERROR.nc,bodc,FILE-ACCEPTED,FORMAT-VERIFICATION" }) + void fileChecker_shouldRejectFile_WhenAttrValueNotDefinedInLocalAttributeNorInDepTable(String fileName, String dac, + String result, String phase) throws IOException, InterruptedException { + TestsUtils.genericFileCheckerE2ETest(fileName, dac, result, phase, TEST_DIR_NAME); + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have status {2} at phase {3}") + @CsvSource({ "D4900757_024_CNDC_without_ADJUSTED_version-3.0_DMode-A.nc,aoml,FILE-REJECTED,FORMAT-VERIFICATION", + "D4900757_024_CNDC_with_ADJUSTED_version-3.0_DMode-A.nc,aoml,FILE-ACCEPTED,FORMAT-VERIFICATION" }) + void fileChecker_shouldTakeIntoaccount_deprecatedProperties(String fileName, String dac, String result, + String phase) throws IOException, InterruptedException { + + TestsUtils.genericFileCheckerE2ETest(fileName, dac, result, phase, TEST_DIR_NAME); + + } + +} diff --git a/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validateProfileQCIT.java b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validateProfileQCIT.java new file mode 100644 index 0000000..992116b --- /dev/null +++ b/file_checker_exec/src/test/java/fr/coriolis/checker/e2etests/validateProfileQCIT.java @@ -0,0 +1,30 @@ +package fr.coriolis.checker.e2etests; + +import java.io.IOException; + +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Tag; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvSource; + +class validateProfileQCIT { + + private final String TEST_DIR_NAME = "TEST_PROFILE_0005"; + + @BeforeAll + public static void init() { + TestsUtils.init(validateProfileQCIT.class); + } + + @Tag(TEST_DIR_NAME) + @ParameterizedTest(name = "{0} from dac {1} should have status {2} at phase {3}") + @CsvSource({ "R6903724_001_PROFILE_QC_CORRECT.nc,bodc,FILE-ACCEPTED,DATA-VALIDATION", + "R6903724_001_PROFILE_QC_WRONG.nc,bodc,FILE-REJECTED,DATA-VALIDATION" }) + void fileChecker_shouldAcceptFile_WhenProfilParamQCisCorrect(String fileName, String dac, String result, + String phase) throws IOException, InterruptedException { + + TestsUtils.genericFileCheckerE2ETest(fileName, dac, result, phase, TEST_DIR_NAME); + + } + +} diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/D4900757_024_CNDC_with_ADJUSTED_version-3.0_DMode-A.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/D4900757_024_CNDC_with_ADJUSTED_version-3.0_DMode-A.nc new file mode 100644 index 0000000..fb53adc Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/D4900757_024_CNDC_with_ADJUSTED_version-3.0_DMode-A.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/D4900757_024_CNDC_without_ADJUSTED_version-3.0_DMode-A.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/D4900757_024_CNDC_without_ADJUSTED_version-3.0_DMode-A.nc new file mode 100644 index 0000000..0fa9bf7 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/D4900757_024_CNDC_without_ADJUSTED_version-3.0_DMode-A.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/R6901125_202_v2.2_ADJUSTED_ERROR.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/R6901125_202_v2.2_ADJUSTED_ERROR.nc new file mode 100644 index 0000000..f4c4c9e Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/R6901125_202_v2.2_ADJUSTED_ERROR.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/R6903724_001_v3.0_TEMP_Dep_validMin.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/R6903724_001_v3.0_TEMP_Dep_validMin.nc new file mode 100644 index 0000000..404569d Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/R6903724_001_v3.0_TEMP_Dep_validMin.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/R6903724_001_v3.1_TEMP_Bad_validMin.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/R6903724_001_v3.1_TEMP_Bad_validMin.nc new file mode 100644 index 0000000..b259979 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0005/R6903724_001_v3.1_TEMP_Bad_validMin.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_BadSpaceCaractere.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_BadSpaceCaractere.nc new file mode 100644 index 0000000..1076dd5 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_BadSpaceCaractere.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_Bad_PIName.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_Bad_PIName.nc new file mode 100644 index 0000000..c7c8c95 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_Bad_PIName.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_apostrophe.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_apostrophe.nc new file mode 100644 index 0000000..36f32d4 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_apostrophe.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_multipleName.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_multipleName.nc new file mode 100644 index 0000000..d5ba2b1 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_ALL_0006/5907141_meta_multipleName.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/1900848_meta_CDLexception_ShortSensorName.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/1900848_meta_CDLexception_ShortSensorName.nc new file mode 100644 index 0000000..2792817 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/1900848_meta_CDLexception_ShortSensorName.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_Bad-cycle-phase-name.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_Bad-cycle-phase-name.nc new file mode 100644 index 0000000..d3fd041 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_Bad-cycle-phase-name.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_Bad-short-sensor-name.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_Bad-short-sensor-name.nc new file mode 100644 index 0000000..f00bcb5 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_Bad-short-sensor-name.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_N-Not-integer.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_N-Not-integer.nc new file mode 100644 index 0000000..72eef72 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_N-Not-integer.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_N-OutOfRange.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_N-OutOfRange.nc new file mode 100644 index 0000000..0eb058b Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_N-OutOfRange.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_multiples_template_ssn_cpn_n.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_multiples_template_ssn_cpn_n.nc new file mode 100644 index 0000000..ba32690 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0005/3901639_meta_multiples_template_ssn_cpn_n.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_BATTERY_PACKS_bad-size.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_BATTERY_PACKS_bad-size.nc new file mode 100644 index 0000000..d49454e Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_BATTERY_PACKS_bad-size.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_BATTERY_PACKS_bad-type.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_BATTERY_PACKS_bad-type.nc new file mode 100644 index 0000000..6485311 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_BATTERY_PACKS_bad-type.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_BATTERY_PACKS_empty.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_BATTERY_PACKS_empty.nc new file mode 100644 index 0000000..988d4a9 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_BATTERY_PACKS_empty.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_Wrong-number-Battery-Packs.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_Wrong-number-Battery-Packs.nc new file mode 100644 index 0000000..ab105b1 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_Wrong-number-Battery-Packs.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_bad-Manufacturer.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_bad-Manufacturer.nc new file mode 100644 index 0000000..1ed55eb Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_bad-Manufacturer.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_bad-type.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_bad-type.nc new file mode 100644 index 0000000..db55c17 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_bad-type.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_batteryType_empty.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_batteryType_empty.nc new file mode 100644 index 0000000..edca06e Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_batteryType_empty.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_good_batteryType.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_good_batteryType.nc new file mode 100644 index 0000000..49938b4 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_good_batteryType.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_incoherent_type.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_incoherent_type.nc new file mode 100644 index 0000000..b6dbd41 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_incoherent_type.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_incoherent_type_second_pack.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_incoherent_type_second_pack.nc new file mode 100644 index 0000000..74b0cfc Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_META_0006/5907141_meta_incoherent_type_second_pack.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_PROFILE_0005/R6903724_001_PROFILE_QC_CORRECT.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_PROFILE_0005/R6903724_001_PROFILE_QC_CORRECT.nc new file mode 100644 index 0000000..3e440e7 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_PROFILE_0005/R6903724_001_PROFILE_QC_CORRECT.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_PROFILE_0005/R6903724_001_PROFILE_QC_WRONG.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_PROFILE_0005/R6903724_001_PROFILE_QC_WRONG.nc new file mode 100644 index 0000000..7d0dd9c Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_PROFILE_0005/R6903724_001_PROFILE_QC_WRONG.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_good_long_name.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_good_long_name.nc new file mode 100644 index 0000000..180f518 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_good_long_name.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_good_long_name_with_short_sensor_name.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_good_long_name_with_short_sensor_name.nc new file mode 100644 index 0000000..14c8aa6 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_good_long_name_with_short_sensor_name.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_inconsistent_unit_in_long_name.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_inconsistent_unit_in_long_name.nc new file mode 100644 index 0000000..4612097 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_inconsistent_unit_in_long_name.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_long_name_with_bad_short_sensor_name.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_long_name_with_bad_short_sensor_name.nc new file mode 100644 index 0000000..5c6d460 Binary files /dev/null and b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_long_name_with_bad_short_sensor_name.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_variable_name_with_bad_short_sensor_name.nc similarity index 99% rename from file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech.nc rename to file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_variable_name_with_bad_short_sensor_name.nc index 698dd75..58cce20 100644 Binary files a/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech.nc and b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/3901682_tech_variable_name_with_bad_short_sensor_name.nc differ diff --git a/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/6990728_tech_unitsNotInR14ButInUnitsList.nc b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/6990728_tech_unitsNotInR14ButInUnitsList.nc index 958285a..c9ded5e 100644 Binary files a/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/6990728_tech_unitsNotInR14ButInUnitsList.nc and b/file_checker_exec/src/test/netcdf-test-files/TEST_TECH_0001/6990728_tech_unitsNotInR14ButInUnitsList.nc differ diff --git a/file_checker_spec/NVS/R01.jsonld b/file_checker_spec/NVS/R01.jsonld new file mode 100644 index 0000000..d30227b --- /dev/null +++ b/file_checker_spec/NVS/R01.jsonld @@ -0,0 +1,400 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/2/" + }, + "dce:identifier": "SDN:R01::BTRAJ", + "pav:version": "2", + "skos:notation": "SDN:R01::BTRAJ", + "skos:altLabel": "BTRAJ", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "B-Argo trajectory" + }, + "dc:identifier": "SDN:R01::BTRAJ", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float trajectory file containing CTD pressure data and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TRAJ/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TRAJ/1/" + }, + "dce:identifier": "SDN:R01::TRAJ", + "pav:version": "1", + "skos:notation": "SDN:R01::TRAJ", + "skos:altLabel": "TRAJ", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo trajectory" + }, + "dc:identifier": "SDN:R01::TRAJ", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float trajectory file containing CTD sensors data (pressure, temperature, conductivity, salinity)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/1/" + }, + "pav:authoredOn": "2020-04-04 16:03:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/2/" + }, + "dce:identifier": "SDN:R01::MTRAJ", + "pav:version": "2", + "skos:notation": "SDN:R01::MTRAJ", + "skos:altLabel": "MTRAJ", + "dc:date": "2020-04-04 16:03:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo trajectory merged" + }, + "dc:identifier": "SDN:R01::MTRAJ", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float trajectory file containing CTD sensors data (pressure, temperature, conductivity, salinity) and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance), retaining all temporal sampling schemes." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/1/" + }, + "pav:authoredOn": "2023-10-06 12:38:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/2/" + }, + "dce:identifier": "SDN:R01::META", + "pav:version": "2", + "skos:notation": "SDN:R01::META", + "skos:altLabel": "META", + "dc:date": "2023-10-06 12:38:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo meta-data" + }, + "dc:identifier": "SDN:R01::META", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "File containing descriptive information about an Argo float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/1/" + }, + "pav:authoredOn": "2020-04-04 16:03:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/2/" + }, + "dce:identifier": "SDN:R01::MPROF", + "pav:version": "2", + "skos:notation": "SDN:R01::MPROF", + "skos:altLabel": "MPROF", + "dc:date": "2020-04-04 16:03:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo profile merged" + }, + "dc:identifier": "SDN:R01::MPROF", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD sensors data (pressure, temperature, conductivity, salinity) and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance), retaining all vertical sampling schemes." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/SPROF/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/SPROF/1/" + }, + "dce:identifier": "SDN:R01::SPROF", + "pav:version": "1", + "skos:notation": "SDN:R01::SPROF", + "skos:altLabel": "SPROF", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo synthetic profile" + }, + "dc:identifier": "SDN:R01::SPROF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD sensors data (pressure, temperature, conductivity, salinity) and one or more biogeochemical (BGC) parameters data (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance), interpolated onto common pressure levels." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BPROF/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BPROF/1/" + }, + "dce:identifier": "SDN:R01::BPROF", + "pav:version": "1", + "skos:notation": "SDN:R01::BPROF", + "skos:altLabel": "BPROF", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "B-Argo profile" + }, + "dc:identifier": "SDN:R01::BPROF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD pressure data and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TECH/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TECH/1/" + }, + "dce:identifier": "SDN:R01::TECH", + "pav:version": "1", + "skos:notation": "SDN:R01::TECH", + "skos:altLabel": "TECH", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo technical data" + }, + "dc:identifier": "SDN:R01::TECH", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "File containing technical information about an Argo float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/METAAUX/", + "pav:authoredOn": "2024-09-11 11:40:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/METAAUX/1/" + }, + "dce:identifier": "SDN:R01::METAAUX", + "pav:version": "1", + "skos:notation": "SDN:R01::METAAUX", + "skos:altLabel": "", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo auxiliary meta-data" + }, + "dc:identifier": "SDN:R01::METAAUX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "File containing descriptive information about an Argo float, for floats reporting non standard auxiliary features." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/PROF/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/PROF/1/" + }, + "dce:identifier": "SDN:R01::PROF", + "pav:version": "1", + "skos:notation": "SDN:R01::PROF", + "skos:altLabel": "PROF", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo profile" + }, + "dc:identifier": "SDN:R01::PROF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD sensors data (pressure, temperature, conductivity, salinity)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TRAJ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/SPROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BPROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TECH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/PROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/METAAUX/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing the type of data contained in an Argo netCDF file. Argo netCDF variable DATA_TYPE is populated by R01 prefLabel.", + "dc:title": "Argo data type", + "skos:prefLabel": "Argo data type", + "owl:versionInfo": "4", + "dc:date": "2024-09-13 03:00:00.0", + "skos:altLabel": "DATA_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "DATA_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R03.jsonld b/file_checker_spec/NVS/R03.jsonld new file mode 100644 index 0000000..f6aaaf0 --- /dev/null +++ b/file_checker_spec/NVS/R03.jsonld @@ -0,0 +1,4732 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_DURAFET", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of DURAFET samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_DURAFET", + "skos:notation": "SDN:R03::NB_SAMPLE_DURAFET", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_DURAFET", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_OCR", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of OCR samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_OCR", + "skos:notation": "SDN:R03::NB_SAMPLE_OCR", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_OCR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_ISUS", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of ISUS samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_ISUS", + "skos:notation": "SDN:R03::NB_SAMPLE_ISUS", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_ISUS", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_STM", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of STM samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_STM", + "skos:notation": "SDN:R03::NB_SAMPLE_STM", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_STM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_MCOMS", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of MCOMS samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_MCOMS", + "skos:notation": "SDN:R03::NB_SAMPLE_MCOMS", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_MCOMS", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SFET/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SFET/1/" + }, + "pav:authoredOn": "2025-11-25 10:14:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SFET/2/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_SFET", + "pav:version": "2", + "skos:notation": "SDN:R03::NB_SAMPLE_SFET", + "skos:altLabel": "NB_SAMPLE_SFET", + "dc:date": "2025-11-25 10:14:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of samples in each pressure bin for the SFET" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_SFET", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of SFET samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin for the SFET; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ib; data_type:short}" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_OPTODE", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of optode samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_OPTODE", + "skos:notation": "SDN:R03::NB_SAMPLE_OPTODE", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_OPTODE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of CTD samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin for the CTD; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_CTD", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of samples in each pressure bin for the CTD" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "NB_SAMPLE_CTD", + "skos:notation": "SDN:R03::NB_SAMPLE_CTD", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_CTD", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_SUNA", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of SUNA samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-15 16:32:25.0", + "skos:altLabel": "NB_SAMPLE_SUNA", + "skos:notation": "SDN:R03::NB_SAMPLE_SUNA", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_SUNA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/3/" + }, + "pav:authoredOn": "2026-01-15 16:32:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_ECO", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of ECO samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_ECO", + "skos:notation": "SDN:R03::NB_SAMPLE_ECO", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_ECO", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_CROVER", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of c-Rover samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_CROVER", + "skos:notation": "SDN:R03::NB_SAMPLE_CROVER", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_CROVER", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Chlorophyll fluorescence in relative unit with factory calibration Local_Attributes:{long_name:Chlorophyll fluorescence with factory calibration; standard_name:-; units:ru; valid_min:-0.2f; valid_max:100.f; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CHLA_FLUORESCENCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Chlorophyll fluorescence with factory calibration" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "CHLA_FLUORESCENCE", + "skos:notation": "SDN:R03::CHLA_FLUORESCENCE", + "pav:version": "3", + "dce:identifier": "SDN:R03::CHLA_FLUORESCENCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:02.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_CYC", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of CYCLOPS samples in each pressure bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:04.0", + "skos:altLabel": "NB_SAMPLE_CYC", + "skos:notation": "SDN:R03::NB_SAMPLE_CYC", + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE_CYC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/3/" + }, + "pav:authoredOn": "2025-11-26 10:16:04.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Internal temperature of the conductivity cell. Local_Attributes:{long_name:Internal temperature of the conductivity cell; standard_name:-; units:degree_Celsius; valid_min:-2.f; valid_max:40.f; fill_value:99999.f}. Properties:{category:ic; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_CNDC", + "skos:prefLabel": { + "@language": "en", + "@value": "Internal temperature of the conductivity cell" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TEMP_CNDC", + "skos:notation": "SDN:R03::TEMP_CNDC", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TMESCNDC/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_CNDC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUPH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH against the free scale (pH based on free proton concentration). Local_Attributes:{long_name:pH; standard_name:-; units:dimensionless; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PH_IN_SITU_FREE", + "skos:prefLabel": { + "@language": "en", + "@value": "pH (free scale)" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "PH_IN_SITU_FREE", + "skos:notation": "SDN:R03::PH_IN_SITU_FREE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PHFRWCAL/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PH_IN_SITU_FREE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUPH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH against the total scale (pH based on free proton concentration and proton associated with SO4 2- ion). Local_Attributes:{long_name:pH; standard_name:sea_water_ph_reported_on_total_scale; units:dimensionless; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PH_IN_SITU_TOTAL", + "skos:prefLabel": { + "@language": "en", + "@value": "pH (total scale)" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "PH_IN_SITU_TOTAL", + "skos:notation": "SDN:R03::PH_IN_SITU_TOTAL", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PHMASSXX/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PH_IN_SITU_TOTAL", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUPH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH against the seawater scale (pH based on free proton concentration and proton associated with SO4 2- and F- ions). Local_Attributes:{long_name:pH; standard_name:-; units:dimensionless; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PH_IN_SITU_SEAWATER", + "skos:prefLabel": { + "@language": "en", + "@value": "pH (seawater scale)" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "PH_IN_SITU_SEAWATER", + "skos:notation": "SDN:R03::PH_IN_SITU_SEAWATER", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PHSWWCAL/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PH_IN_SITU_SEAWATER", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UMES/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling Photosynthetically Available Radiation (PAR). Local_Attributes:{long_name:Downwelling photosynthetic available radiation; standard_name:downwelling_photosynthetic_photon_flux_in_sea_water; units:microMoleQuanta/m^2/sec; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWNWELLING_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling photosynthetic available radiation" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "DOWNWELLING_PAR", + "skos:notation": "SDN:R03::DOWNWELLING_PAR", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRRXUD/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWNWELLING_PAR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw temperature signal (voltage) from the thermistor of dissolved oxygen sensor, reported by the SBE63 sensor. Local_Attributes:{long_name:Thermistor voltage reported by oxygen sensor; standard_name:-; units:volt; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_VOLTAGE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Thermistor voltage reported by oxygen sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "TEMP_VOLTAGE_DOXY", + "skos:notation": "SDN:R03::TEMP_VOLTAGE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TCNTOPTT/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::TEMP_VOLTAGE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal from pH sensor, equating to the potential between the transistor source and the reference electrode. Local_Attributes:{long_name:Voltage difference between reference and source from pH sensor; standard_name:-; units:volt; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::VRS_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Voltage difference between reference and source from pH sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "VRS_PH", + "skos:notation": "SDN:R03::VRS_PH", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PVLTGC01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::VRS_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Counter electrode signal from pH sensor. Local_Attributes:{long_name:Counter electrode voltage of pH sensor; standard_name:-; units:volt; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::VK_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Counter electrode voltage of pH sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "VK_PH", + "skos:notation": "SDN:R03::VK_PH", + "pav:version": "3", + "dce:identifier": "SDN:R03::VK_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:01.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal from dissolved oxygen sensor. Local_Attributes:{long_name:Voltage reported by oxygen sensor; standard_name:-; units:volt; valid_min:0.f; valid_max:100.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::VOLTAGE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Voltage reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "VOLTAGE_DOXY", + "skos:notation": "SDN:R03::VOLTAGE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYOCPVL/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::VOLTAGE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/NAMP/" + }, + "skos:definition": { + "@language": "en", + "@value": "Counter electrode current from pH sensor. Local_Attributes:{long_name:Counter electrode current of pH sensor; standard_name:-; units:nanoampere; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::IK_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Counter electrode current of pH sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "IK_PH", + "skos:notation": "SDN:R03::IK_PH", + "pav:version": "3", + "dce:identifier": "SDN:R03::IK_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:02.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/NAMP/" + }, + "skos:definition": { + "@language": "en", + "@value": "Base current of pH sensor chip. Local_Attributes:{long_name:Base current of pH sensor; standard_name:-; units:nanoampere; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::IB_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Base current of pH sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "IB_PH", + "skos:notation": "SDN:R03::IB_PH", + "pav:version": "3", + "dce:identifier": "SDN:R03::IB_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/USEC/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw phase delay by optode, reported by SBE63 optode sensor. Local_Attributes:{long_name:Phase delay reported by oxygen sensor; standard_name:-; units:microsecond; valid_min:0.f; valid_max:99999.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PHASE_DELAY_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Phase delay reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "PHASE_DELAY_DOXY", + "skos:notation": "SDN:R03::PHASE_DELAY_DOXY", + "pav:version": "3", + "dce:identifier": "SDN:R03::PHASE_DELAY_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPBB/" + }, + "skos:definition": { + "@language": "en", + "@value": "Oxygen partial pressure, alternative oxygen quantity of oxygen optodes (for in-air measurements). Local_Attributes:{long_name:Partial pressure of oxygen; standard_name:-; units:millibar; valid_min:-5.f; valid_max:5000.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PPOX_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Partial pressure of oxygen" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "PPOX_DOXY", + "skos:notation": "SDN:R03::PPOX_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PPOXZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PPOX_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPDB/" + }, + "skos:definition": { + "@language": "en", + "@value": "The force per unit area exerted by the water column on a pressure sensor, corrected to read zero at sea level. Local_Attributes:{long_name:Sea water pressure, equals 0 at sea-level; standard_name:sea_water_pressure; units:decibar; valid_min:0.f; valid_max:12000.f; fill_value:99999.f}. Properties:{category:c; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PRES", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea water pressure, equals 0 at sea-level" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "PRES", + "skos:notation": "SDN:R03::PRES", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PRESPR01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PRES", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:13:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UECA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Measure of seawater electrical conductivity. Local_Attributes:{long_name:Electrical conductivity; standard_name:sea_water_electrical_conductivity; units:mhos/m; valid_min:0.f; valid_max:8.5f; fill_value:99999.f}. Properties:{category:ic; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CNDC", + "skos:prefLabel": { + "@language": "en", + "@value": "Electrical conductivity" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "CNDC", + "skos:notation": "SDN:R03::CNDC", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/CNDCST01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::CNDC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UTAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Fractional day of the individual measurement relative to JULD of the station. Local_Attributes:{long_name:Fractional day of the individual measurement relative to JULD of the station; standard_name:-; units:days; valid_min:-3; valid_max:3; fill_value:999999}. Properties:{category:ic; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MTIME", + "skos:prefLabel": { + "@language": "en", + "@value": "Fractional day of the individual measurement relative to JULD of the station" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "MTIME", + "skos:notation": "SDN:R03::MTIME", + "pav:version": "3", + "dce:identifier": "SDN:R03::MTIME", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle beam attenuation at 660 nm wavelength, reported by C-Rover sensor. Local_Attributes:{long_name:Particle beam attenuation at 660 nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CP660", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle beam attenuation at 660 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "CP660", + "skos:notation": "SDN:R03::CP660", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/ATT650AC/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::CP660", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle beam attenuation at unspecified wavelength, reported by C-Rover sensor. Local_Attributes:{long_name:Particle beam attenuation at x nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CP", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle beam attenuation at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "CP", + "skos:notation": "SDN:R03::CP", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/ATTNZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::CP", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance at 555 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Upwelling radiance at 555 nanometers; standard_name:upwelling_radiance_in_sea_water; units:W/m^2/nm/sr; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 555 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UP_RADIANCE555", + "skos:notation": "SDN:R03::UP_RADIANCE555", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU555L/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UP_RADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance at unspecified wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Upwelling radiance at x nanometers; standard_name:upwelling_radiance_in_sea_water; units:W/m^2/nm/sr; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UP_RADIANCE", + "skos:notation": "SDN:R03::UP_RADIANCE", + "pav:version": "3", + "dce:identifier": "SDN:R03::UP_RADIANCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:01.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance at 443 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Upwelling radiance at 443 nanometers; standard_name:upwelling_radiance_in_sea_water; units:W/m^2/nm/sr; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 443 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UP_RADIANCE443", + "skos:notation": "SDN:R03::UP_RADIANCE443", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU443L/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UP_RADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance at 412 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Upwelling radiance at 412 nanometers; standard_name:upwelling_radiance_in_sea_water; units:W/m^2/nm/sr; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 412 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UP_RADIANCE412", + "skos:notation": "SDN:R03::UP_RADIANCE412", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU412L/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UP_RADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance at 490 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Upwelling radiance at 490 nanometers; standard_name:upwelling_radiance_in_sea_water; units:W/m^2/nm/sr; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 490 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UP_RADIANCE490", + "skos:notation": "SDN:R03::UP_RADIANCE490", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU490L/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UP_RADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPPB/" + }, + "skos:definition": { + "@language": "en", + "@value": "Coloured dissolved organic matter (CDOM) concentration. Local_Attributes:{long_name:Concentration of coloured dissolved organic matter in sea water; standard_name:-; units:ppb; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CDOM", + "skos:prefLabel": { + "@language": "en", + "@value": "Concentration of coloured dissolved organic matter in sea water" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "CDOM", + "skos:notation": "SDN:R03::CDOM", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/CDOMZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::CDOM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:13:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at unspecified wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at x nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "DOWN_IRRADIANCE", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXED/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at 412 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at 412 nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 412 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "DOWN_IRRADIANCE412", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE412", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD412E/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at 490 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at 490 nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 490 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "DOWN_IRRADIANCE490", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE490", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD490E/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at 443 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at 443 nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 443 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "DOWN_IRRADIANCE443", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE443", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD443E/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at 380 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at 380 nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE380", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 380 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "DOWN_IRRADIANCE380", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE380", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD380E/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE380", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance at 555 nm wavelength, reported by OCR504 sensor (unit conversion). Local_Attributes:{long_name:Downwelling irradiance at 555 nanometers; standard_name:-; units:W/m^2/nm; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 555 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "DOWN_IRRADIANCE555", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE555", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD555E/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UTHZ/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal from dissolved oxygen sensor. Local_Attributes:{long_name:Frequency reported by oxygen sensor; standard_name:-; units:hertz; valid_min:0.f; valid_max:25000.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FREQUENCY_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Frequency reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "FREQUENCY_DOXY", + "skos:notation": "SDN:R03::FREQUENCY_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYOCPFR/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::FREQUENCY_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:13:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering at 700 nm wavelength, reported by ECO3 sensor. Local_Attributes:{long_name:Particle backscattering at 700 nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP700", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at 700 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "BBP700", + "skos:notation": "SDN:R03::BBP700", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BB117NIR/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BBP700", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering at unspecified wavelength, reported by ECO3 sensor. Local_Attributes:{long_name:Particle backscattering at x nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BBP", + "skos:notation": "SDN:R03::BBP", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BSXXXVSF/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BBP", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering at 532 nm wavelength, reported by ECO3 sensor. Local_Attributes:{long_name:Particle backscattering at 532 nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP532", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at 532 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "BBP532", + "skos:notation": "SDN:R03::BBP532", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BB117G01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BBP532", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering at 470 nm wavelength, reported by ECO3 sensor. Local_Attributes:{long_name:Particle backscattering at 470 nanometers; standard_name:-; units:m-1; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP470", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at 470 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "BBP470", + "skos:notation": "SDN:R03::BBP470", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BB117B01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BBP470", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Spectrometer temperature of nitrate sensor, reported by the SUNA sensor from Remocean floats. Local_Attributes:{long_name:Temperature of the spectrometer; standard_name:-; units:degree_Celsius; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Temperature of the spectrometer" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TEMP_SPECTROPHOTOMETER_NITRATE", + "skos:notation": "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE", + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature from thermistor on dissolved oxygen sensor, expressed against the International Temperature Scale 1990 (ITS-90) calibration standard. Local_Attributes:{long_name:Sea temperature from oxygen sensor ITS-90 scale; standard_name:temperature_of_sensor_for_oxygen_in_sea_water; units:degree_Celsius; valid_min:-2.f; valid_max:40.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea temperature from oxygen sensor ITS-90 scale" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "TEMP_DOXY", + "skos:notation": "SDN:R03::TEMP_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYTAAOP/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature of seawater, reported by the pH sensor. Local_Attributes:{long_name:Sea temperature from pH sensor; standard_name:-; units:degree_Celsius; valid_min:-2.f; valid_max:40.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea temperature from pH sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TEMP_PH", + "skos:notation": "SDN:R03::TEMP_PH", + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal temperature of the nitrate sensor, reported by the SUNA sensor from Remocean floats. Local_Attributes:{long_name:Internal temperature of the SUNA sensor; standard_name:-; units:degree_Celsius; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Internal temperature of the SUNA sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TEMP_NITRATE", + "skos:notation": "SDN:R03::TEMP_NITRATE", + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPCT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Relative humidity inside the nitrate sensor (If > 50% there is a leak), reported by the SUNA sensor from Remocean floats. Local_Attributes:{long_name:Relative humidity inside the SUNA sensor (If > 50% There is a leak); standard_name:-; units:percent; valid_min:0.f; valid_max:100.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::HUMIDITY_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Relative humidity inside the SUNA sensor (If > 50% There is a leak)" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "HUMIDITY_NITRATE", + "skos:notation": "SDN:R03::HUMIDITY_NITRATE", + "pav:version": "3", + "dce:identifier": "SDN:R03::HUMIDITY_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift, reported by Aanderaa optode 4330/4330F sensor. Local_Attributes:{long_name:Uncalibrated phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:10.f; valid_max:70.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::C1PHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift reported by Aanderaa optode 4330/4330F" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "C1PHASE_DOXY", + "skos:notation": "SDN:R03::C1PHASE_DOXY", + "pav:version": "4", + "dce:identifier": "SDN:R03::C1PHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/4/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated temperature compensated phase shift, reported by Aanderaa 4330 and 4330F optode sensors. Local_Attributes:{long_name:Uncalibrated phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:10.f; valid_max:70.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated phase shift reported by oxygen sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TPHASE_DOXY", + "skos:notation": "SDN:R03::TPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHTC/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::TPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Inclination of the float axis in respect to the local vertical. Local_Attributes:{long_name:Inclination of the float axis in respect to the local vertical; standard_name:-; units:degree; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TILT", + "skos:prefLabel": { + "@language": "en", + "@value": "Inclination of the float axis in respect to the local vertical" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TILT", + "skos:notation": "SDN:R03::TILT", + "pav:version": "3", + "dce:identifier": "SDN:R03::TILT", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated red excitation light phase shift, reported by Aanderaa optode 4330/4330F sensor. Local_Attributes:{long_name:Uncalibrated phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:0.f; valid_max:15.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::C2PHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated red excitation light phase shift reported by Aanderaa optode 4330/4330F" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "C2PHASE_DOXY", + "skos:notation": "SDN:R03::C2PHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAR/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::C2PHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/3/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated red excitation light phase shift, reported by Aanderaa optode 3830. Local_Attributes:{long_name:Uncalibrated red phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:10.f; valid_max:70.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated red phase shift reported by oxygen sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "RPHASE_DOXY", + "skos:notation": "SDN:R03::RPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAR/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::RPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift, reported by Aanderaa optode 3830 sensor. Local_Attributes:{long_name:Uncalibrated phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:10.f; valid_max:70.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift reported by Aanderaa optode 3830" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "BPHASE_DOXY", + "skos:notation": "SDN:R03::BPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAB/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::BPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Calibrated phase, reported by Aanderaa optode 3830 sensor. Local_Attributes:{long_name:Calibrated phase shift reported by oxygen sensor; standard_name:-; units:degree; valid_min:10.f; valid_max:70.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Calibrated phase shift reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "DPHASE_DOXY", + "skos:notation": "SDN:R03::DPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAC/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPOX/" + }, + "skos:definition": { + "@language": "en", + "@value": "Dissolved oxygen concentration uncorrected for salinity and pressure effects. Local_Attributes:{long_name:Uncompensated (pressure and salinity) oxygen concentration reported by the oxygen sensor; standard_name:mole_concentration_of_dissolved_molecular_oxygen_in_sea_water; units:micromole/l; valid_min:0.f; valid_max:650.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MOLAR_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncompensated (pressure and salinity) oxygen concentration reported by the oxygen sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "MOLAR_DOXY", + "skos:notation": "SDN:R03::MOLAR_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DOXYMMOP/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::MOLAR_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPOX/" + }, + "skos:definition": { + "@language": "en", + "@value": "Nitrate concentration, reported by the SUNA sensor. Local_Attributes:{long_name:Nitrate; standard_name:-; units:micromole/l; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MOLAR_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Molar nitrate" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "MOLAR_NITRATE", + "skos:notation": "SDN:R03::MOLAR_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NTRZMC01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::MOLAR_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal from backscattering meter at 700 nm wavelength, reported by ECO3 or FLBB sensors. Local_Attributes:{long_name:Total angle specific volume from backscattering sensor at 700 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING700", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at 700 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BETA_BACKSCATTERING700", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING700", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING700", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal from backscattering meter at 470 nm wavelength, reported by ECO3 or FLBB sensors. Local_Attributes:{long_name:Total angle specific volume from backscattering sensor at 470 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING470", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at 470 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BETA_BACKSCATTERING470", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING470", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING470", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw turbidity signal from side scattering sensor, reported by FLNTU sensor. Local_Attributes:{long_name:Turbidity signal from side scattering sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::SIDE_SCATTERING_TURBIDITY", + "skos:prefLabel": { + "@language": "en", + "@value": "Turbidity signal from side scattering sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "SIDE_SCATTERING_TURBIDITY", + "skos:notation": "SDN:R03::SIDE_SCATTERING_TURBIDITY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NCNTTUR1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::SIDE_SCATTERING_TURBIDITY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Practical salinity of the water body by conductivity cell and computation using the UNESCO 1983 algorithm. Local_Attributes:{long_name:Practical salinity; standard_name:sea_water_salinity; units:psu; valid_min:2.f; valid_max:41.f; fill_value:99999.f}. Properties:{category:c; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PSAL", + "skos:prefLabel": { + "@language": "en", + "@value": "Practical salinity" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "PSAL", + "skos:notation": "SDN:R03::PSAL", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PSALST01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::PSAL", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw beam attenuation signal from transmissometer sensor at unspecified wavelength. Local_Attributes:{long_name:Beam attenuation from transmissometer sensor at x nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "skos:prefLabel": { + "@language": "en", + "@value": "Beam attenuation from transmissometer sensor at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "skos:notation": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NCNTATT1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal at 412 nm wavelength, reported by OCR504 sensor. Local_Attributes:{long_name:Raw upwelling radiance at 412 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 412 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "RAW_UPWELLING_RADIANCE412", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE412", + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:02.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal from dissolved oxygen sensor. Local_Attributes:{long_name:Count reported by oxygen sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::COUNT_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Count reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "COUNT_DOXY", + "skos:notation": "SDN:R03::COUNT_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYOOPCT/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::COUNT_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at 490 nm wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at 490 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 490 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE490", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw beam attenuation signal from transmissometer sensor at 660 nm wavelength. Local_Attributes:{long_name:Beam attenuation from transmissometer sensor at 660 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "skos:prefLabel": { + "@language": "en", + "@value": "Beam attenuation from transmissometer sensor at 660 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "skos:notation": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NCNTATT1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw ultra-violet (UV) flux signal in darkness from nitrate sensor. Average of all 256 dark counts, reported by the SUNA sensor. Local_Attributes:{long_name:Intensity of ultra violet flux dark measurement from nitrate sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UV_INTENSITY_DARK_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Intensity of ultra violet flux dark measurement from nitrate sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UV_INTENSITY_DARK_NITRATE", + "skos:notation": "SDN:R03::UV_INTENSITY_DARK_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/UVDAZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UV_INTENSITY_DARK_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Light-Emitting Diode (LED) flashing frequency from dissolved oxygen sensor, reported by ARO-FT optode sensor. Local_Attributes:{long_name:Number of times oxygen sensor flashing to measure oxygen; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::LED_FLASHING_COUNT_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of times oxygen sensor flashing to measure oxygen" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "LED_FLASHING_COUNT_DOXY", + "skos:notation": "SDN:R03::LED_FLASHING_COUNT_DOXY", + "pav:version": "3", + "dce:identifier": "SDN:R03::LED_FLASHING_COUNT_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:01.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw ultra-violet (UV) flux signal from nitrate sensor. Measurement in counts proportional to light intensity. Multi-spectral parameter requiring an extra N_VALUESxxx dimension in the NetCDF files; xxx is a number between 0 and 255 representing the number of wavelengths transmitted. Local_Attributes:{long_name:Intensity of ultra violet flux from nitrate sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float; extra_dim:[N_VALUES]}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UV_INTENSITY_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Intensity of ultra violet flux from nitrate sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UV_INTENSITY_NITRATE", + "skos:notation": "SDN:R03::UV_INTENSITY_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/UVINZZ01/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::UV_INTENSITY_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw fluorescence signal from coloured dissolved organic matter (CDOM) sensor, reported by ECO3 sensor. Local_Attributes:{long_name:Raw fluorescence from coloured dissolved organic matter sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FLUORESCENCE_CDOM", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw fluorescence from coloured dissolved organic matter sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "FLUORESCENCE_CDOM", + "skos:notation": "SDN:R03::FLUORESCENCE_CDOM", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/FLUOCDOM/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::FLUORESCENCE_CDOM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal at 555 nm wavelength, reported by OCR504 sensor. Local_Attributes:{long_name:Raw upwelling radiance at 555 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 555 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "RAW_UPWELLING_RADIANCE555", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE555", + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/3/" + }, + "pav:authoredOn": "2025-11-25 10:13:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/2/" + } + ], + "pav:authoredOn": "2025-11-26 10:16:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Not Used. Number of samples in each pressure bin. Local_Attributes:{long_name:Number of samples in each pressure bin; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_SHORT}. Properties:{category:ic; data_type:short}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of samples in bin" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-26 10:16:03.0", + "skos:altLabel": "NB_SAMPLE", + "skos:notation": "SDN:R03::NB_SAMPLE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NUMVALES/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::NB_SAMPLE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at 380 nm wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at 380 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 380 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE380", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at 412 nm wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at 412 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 412 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE412", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at unspecified wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at x nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal from backscattering meter at unspecified wavelength, reported by ECO3 or FLBB sensors. Local_Attributes:{long_name:Total angle specific volume from backscattering sensor at x nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BETA_BACKSCATTERING", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal at unspecified wavelength, reported by OCR504 sensor. Local_Attributes:{long_name:Raw upwelling radiance at x nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at x nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "RAW_UPWELLING_RADIANCE", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE", + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:00.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal at 443 nm wavelength, reported by OCR504 sensor. Local_Attributes:{long_name:Raw upwelling radiance at 443 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 443 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "RAW_UPWELLING_RADIANCE443", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE443", + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/3/" + }, + "pav:authoredOn": "2025-11-25 10:13:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at 443 nm wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at 443 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 443 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE443", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw ultra-violet (UV) flux signal in seawater and darkness from nitrate sensor. From light absorption on pixels at shortest wavelengths of array, reported by the SUNA sensor. Local_Attributes:{long_name:Intensity of ultra-violet flux dark sea water from nitrate sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Intensity of ultra-violet flux dark sea water from nitrate sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "UV_INTENSITY_DARK_SEAWATER_NITRATE", + "skos:notation": "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/UVSDZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw fluorescence signal from chlorophyll-a fluorometer, reported by ECO3, FLNTU and FLBB sensors. Local_Attributes:{long_name:Chlorophyll-A signal from fluorescence sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FLUORESCENCE_CHLA", + "skos:prefLabel": { + "@language": "en", + "@value": "Chlorophyll-A signal from fluorescence sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "FLUORESCENCE_CHLA", + "skos:notation": "SDN:R03::FLUORESCENCE_CHLA", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/FCNTRW01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::FLUORESCENCE_CHLA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Calibration fit error of nitrate, SUNA sensro key variable in QC. Local_Attributes:{long_name:Nitrate fit error; standard_name:-; units:dimensionless; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FIT_ERROR_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Nitrate fit error" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "FIT_ERROR_NITRATE", + "skos:notation": "SDN:R03::FIT_ERROR_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NTFEZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::FIT_ERROR_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling photosynthetically available radiation (PAR) signal. Local_Attributes:{long_name:Raw downwelling photosynthetic available radiation; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling photosynthetic available radiation" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "RAW_DOWNWELLING_PAR", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_PAR", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRRXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_PAR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal at 555 nm wavelength. Local_Attributes:{long_name:Raw downwelling irradiance at 555 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 555 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE555", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/1/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw temperature signal from thermistor on dissolved oxygen sensor. Local_Attributes:{long_name:Count which is expressive of uncalibrated temperature value reported by oxygen sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_COUNT_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Count which is expressive of uncalibrated temperature value reported by oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "TEMP_COUNT_DOXY", + "skos:notation": "SDN:R03::TEMP_COUNT_DOXY", + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP_COUNT_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/3/" + }, + "pav:authoredOn": "2025-11-25 10:14:03.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/2/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal at 490 nm wavelength, reported by OCR504 sensor. Local_Attributes:{long_name:Raw upwelling radiance at 490 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:NC_FILL_DOUBLE}. Properties:{category:ib; data_type:double}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 490 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "RAW_UPWELLING_RADIANCE490", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE490", + "pav:version": "3", + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/3/" + }, + "pav:authoredOn": "2025-11-25 10:13:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal from backscattering meter at 532 nm wavelength, reported by ECO3 or FLBB sensors. Local_Attributes:{long_name:Total angle specific volume from backscattering sensor at 532 nanometers; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING532", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at 532 nanometers" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BETA_BACKSCATTERING532", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING532", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING532", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/3/" + } + ], + "pav:authoredOn": "2025-11-25 10:13:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw temperature signalfrom thermistor on backscattering meter and/or fluorometer, reported by FLBB sensor. Local_Attributes:{long_name:Thermistor signal from backscattering sensor; standard_name:-; units:count; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_CPU_CHLA", + "skos:prefLabel": { + "@language": "en", + "@value": "Thermistor signal from backscattering sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "TEMP_CPU_CHLA", + "skos:notation": "SDN:R03::TEMP_CPU_CHLA", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TCNTICPU/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R03::TEMP_CPU_CHLA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/4/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/KGUM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Dissolved oxygen concentration. Local_Attributes:{long_name:Dissolved oxygen; standard_name:moles_of_oxygen_per_unit_mass_in_sea_water; units:micromole/kg; valid_min:-5.f; valid_max:600.f; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Dissolved oxygen" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "DOXY", + "skos:notation": "SDN:R03::DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DOXMZZXX/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:03.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/KGUM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Nitrate concentration. Local_Attributes:{long_name:Nitrate; standard_name:moles_of_nitrate_per_unit_mass_in_sea_water; units:micromole/kg; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Nitrate" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:03.0", + "skos:altLabel": "NITRATE", + "skos:notation": "SDN:R03::NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/MDMAP005/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/KGUM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Bisulfide concentration (umol/kg). Local_Attributes:{long_name:Bisulfide; standard_name:-; units:micromole/kg; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BISULFIDE", + "skos:prefLabel": { + "@language": "en", + "@value": "Bisulfide" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "BISULFIDE", + "skos:notation": "SDN:R03::BISULFIDE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/H2SXZZ01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::BISULFIDE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/1/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:01.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UMLL/" + }, + "skos:definition": { + "@language": "en", + "@value": "Dissolved oxygen concentration uncorrected for salinity and pressure effects. Local_Attributes:{long_name:Oxygen concentration reported by the oxygen sensor; standard_name:-; units:ml/l; valid_min:0.f; valid_max:650.f; fill_value:99999.f}. Properties:{category:ib; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MLPL_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Oxygen concentration reported by the oxygen sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "MLPL_DOXY", + "skos:notation": "SDN:R03::MLPL_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DOXYZZXX/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::MLPL_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/USTU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Turbidity of seawater. Local_Attributes:{long_name:Sea water turbidity; standard_name:sea_water_turbidity; units:ntu; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TURBIDITY", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea water turbidity" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:00.0", + "skos:altLabel": "TURBIDITY", + "skos:notation": "SDN:R03::TURBIDITY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TURBXXXX/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TURBIDITY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:13:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UMMC/" + }, + "skos:definition": { + "@language": "en", + "@value": "Chlorophyll-a concentration (mg/m^3), reported by ECO3 sensor. Local_Attributes:{long_name:Chlorophyll-A; standard_name:mass_concentration_of_chlorophyll_a_in_sea_water; units:mg/m3; valid_min:-; valid_max:-; fill_value:99999.f}. Properties:{category:b; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CHLA", + "skos:prefLabel": { + "@language": "en", + "@value": "Chlorophyll-A" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:13:59.0", + "skos:altLabel": "CHLA", + "skos:notation": "SDN:R03::CHLA", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/CPHLPR01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::CHLA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/2/" + } + ], + "pav:authoredOn": "2025-11-25 10:14:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature of the water body expressed against the International Temperature Scale 1990 (ITS-90) calibration standard. Local_Attributes:{long_name:Sea temperature in-situ ITS-90 scale; standard_name:sea_water_temperature; units:degree_Celsius; valid_min:-2.5f; valid_max:40.f; fill_value:99999.f}. Properties:{category:c; data_type:float}" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea temperature in-situ ITS-90 scale" + }, + "owl:versionInfo": "3", + "dc:date": "2025-11-25 10:14:02.0", + "skos:altLabel": "TEMP", + "skos:notation": "SDN:R03::TEMP", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TEMPST01/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R03::TEMP", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing individual measured parameters or phenomena, used to mark up sets of data in Argo netCDF arrays. Argo netCDF variables PARAMETER, STATION_PARAMETERS, HISTORY_PARAMETER and TRAJECTORY_PARAMETERS are populated by R03 altLabel. R03 altLabel is also used to name netCDF variables. Detailed information (incl. about Local_Attributes and Properties) is in the user manual (https://dx.doi.org/10.13155/29825), in the Reference Table 3 section.", + "dc:title": "Argo parameter codes", + "skos:prefLabel": "Argo parameter codes", + "owl:versionInfo": "13", + "dc:date": "2026-01-16 02:00:00.0", + "skos:altLabel": "PARAMETER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PARAMETER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R05.jsonld b/file_checker_spec/NVS/R05.jsonld new file mode 100644 index 0000000..c18ce42 --- /dev/null +++ b/file_checker_spec/NVS/R05.jsonld @@ -0,0 +1,576 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/2/" + }, + "dce:identifier": "SDN:R05::G", + "pav:version": "2", + "skos:notation": "SDN:R05::G", + "skos:altLabel": "G", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GPS positioning accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::G", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Global Positioning System (GPS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/2/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/2/1/" + }, + "dce:identifier": "SDN:R05::2", + "pav:version": "1", + "skos:notation": "SDN:R05::2", + "skos:altLabel": "2", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy <500m radius" + }, + "dc:identifier": "SDN:R05::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of less than 500m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/Z/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/Z/1/" + }, + "dce:identifier": "SDN:R05::Z", + "pav:version": "1", + "skos:notation": "SDN:R05::Z", + "skos:altLabel": "Z", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos invalid location" + }, + "dc:identifier": "SDN:R05::Z", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The location accuracy radius from Argos positioning system cannot be estimated due to invalid location measurements." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/3/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/3/1/" + }, + "dce:identifier": "SDN:R05::3", + "pav:version": "1", + "skos:notation": "SDN:R05::3", + "skos:altLabel": "3", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy <250m radius" + }, + "dc:identifier": "SDN:R05::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of less than 250m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/1/" + }, + "dce:identifier": "SDN:R05::1", + "pav:version": "1", + "skos:notation": "SDN:R05::1", + "skos:altLabel": "1", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy <1500m radius" + }, + "dc:identifier": "SDN:R05::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of less than 1500m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/2/" + }, + "dce:identifier": "SDN:R05::H", + "pav:version": "2", + "skos:notation": "SDN:R05::H", + "skos:altLabel": "H", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GNSS accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::H", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Global Navigation Satellite System (GNSS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/2/" + }, + "dce:identifier": "SDN:R05::E", + "pav:version": "2", + "skos:notation": "SDN:R05::E", + "skos:altLabel": "E", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GLONASS accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::E", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from GLObal NAvigation Satellite System (GLONASS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/R/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/R/1/" + }, + "dce:identifier": "SDN:R05::R", + "pav:version": "1", + "skos:notation": "SDN:R05::R", + "skos:altLabel": "R", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RAFOS location accuracy" + }, + "dc:identifier": "SDN:R05::R", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from RAFOS positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/U/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/U/1/" + }, + "dce:identifier": "SDN:R05::U", + "pav:version": "1", + "skos:notation": "SDN:R05::U", + "skos:altLabel": "U", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated location accuracy" + }, + "dc:identifier": "SDN:R05::U", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from manual computation as not received by the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/1/" + }, + "dce:identifier": "SDN:R05::B", + "pav:version": "1", + "skos:notation": "SDN:R05::B", + "skos:altLabel": "B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos no location accuracy estimation (one or two messages received)" + }, + "dc:identifier": "SDN:R05::B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The location accuracy radius from Argos positioning system cannot be estimated as only one or two messages were received." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/1/" + }, + "dce:identifier": "SDN:R05::0", + "pav:version": "1", + "skos:notation": "SDN:R05::0", + "skos:altLabel": "0", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy >1500m radius" + }, + "dc:identifier": "SDN:R05::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of over 1500m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/2/" + }, + "dce:identifier": "SDN:R05::I", + "pav:version": "2", + "skos:notation": "SDN:R05::I", + "skos:altLabel": "I", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Iridium accuracy (not better than 5 km)" + }, + "dc:identifier": "SDN:R05::I", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Iridium positioning system of less than 5000m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/2/" + }, + "dce:identifier": "SDN:R05::D", + "pav:version": "2", + "skos:notation": "SDN:R05::D", + "skos:altLabel": "D", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Beidou accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::D", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from BeiDou Navigation Satellite System (BDS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/1/" + }, + "dce:identifier": "SDN:R05::A", + "pav:version": "1", + "skos:notation": "SDN:R05::A", + "skos:altLabel": "A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos no location accuracy estimation (three messages received)" + }, + "dc:identifier": "SDN:R05::A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The location accuracy radius from Argos positioning system cannot be estimated as only three messages were received." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/2/" + }, + "dce:identifier": "SDN:R05::F", + "pav:version": "2", + "skos:notation": "SDN:R05::F", + "skos:altLabel": "F", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GALILEO accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::F", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Galileo positioning system of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/Z/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/R/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/U/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Accuracy in latitude and longitude measurements received from the positioning system, grouped by location accuracy classes.", + "dc:title": "Argo position accuracy", + "skos:prefLabel": "Argo position accuracy", + "owl:versionInfo": "1", + "dc:date": "2024-09-13 03:00:00.0", + "skos:altLabel": "POSITION_ACCURACY", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "POSITION_ACCURACY", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R06.jsonld b/file_checker_spec/NVS/R06.jsonld new file mode 100644 index 0000000..aaead39 --- /dev/null +++ b/file_checker_spec/NVS/R06.jsonld @@ -0,0 +1,320 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3B/1/" + }, + "dce:identifier": "SDN:R06::3B", + "pav:version": "1", + "skos:notation": "SDN:R06::3B", + "skos:altLabel": "3B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 3, class B processing stage" + }, + "dc:identifier": "SDN:R06::3B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have been processed with assumptions about the scales of variability or thermodynamic relationships; the data are normally reduced to regular space, time intervals with enhanced signal to noise (Level 3). Moreover, the data have been scrutinized and evaluated against a defined and documented set of measures; the process is often automated, and the measures are published and widely available (Class B)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2C/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2C/1/" + }, + "dce:identifier": "SDN:R06::2C", + "pav:version": "1", + "skos:notation": "SDN:R06::2C", + "skos:altLabel": "2C", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class C processing stage" + }, + "dc:identifier": "SDN:R06::2C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized fully including intra-record and intra-dataset comparison and consistency checks; scientists have been involved in the evaluation, and brought latest knowledge to bear; the procedures are published, widely available and widely accepted (Class C)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/1A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/1A/1/" + }, + "dce:identifier": "SDN:R06::1A", + "pav:version": "1", + "skos:notation": "SDN:R06::1A", + "skos:altLabel": "1A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 1, class A processing stage" + }, + "dc:identifier": "SDN:R06::1A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have been converted to values independent of detailed instrument knowledge; automated calibrations may have been done; data may not have full geospatial and temporal referencing, but have sufficient information to uniquely reference the data to the point of measurement (Level 1). Moreover, no scrutiny, value judgement or intercomparisons were performed on the data; the records are derived directly from the input with no filtering or sub-sampling (Class A)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3C/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3C/1/" + }, + "dce:identifier": "SDN:R06::3C", + "pav:version": "1", + "skos:notation": "SDN:R06::3C", + "skos:altLabel": "3C", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 3, class C processing stage" + }, + "dc:identifier": "SDN:R06::3C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have been processed with assumptions about the scales of variability or thermodynamic relationships; the data are normally reduced to regular space, time intervals with enhanced signal to noise (Level 3). Moreover, the data have been scrutinized fully including intra-record and intra-dataset comparison and consistency checks; scientists have been involved in the evaluation, and brought latest knowledge to bear; the procedures are published, widely available and widely accepted (Class C)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2CP/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2CP/1/" + }, + "dce:identifier": "SDN:R06::2CP", + "pav:version": "1", + "skos:notation": "SDN:R06::2CP", + "skos:altLabel": "2C+", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class C, subclass + processing stage" + }, + "dc:identifier": "SDN:R06::2CP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized fully including intra-record and intra-dataset comparison and consistency checks; scientists have been involved in the evaluation, and brought latest knowledge to bear; the procedures are published, widely available and widely accepted (Class C). In addition, the data are fully quality controlled and peer-reviewed, and are widely accepted as valid; documentation is complete and widely available." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/0A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/0A/1/" + }, + "dce:identifier": "SDN:R06::0A", + "pav:version": "1", + "skos:notation": "SDN:R06::0A", + "skos:altLabel": "0A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 0, class A processing stage" + }, + "dc:identifier": "SDN:R06::0A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data are the raw output from instruments, without calibration, and not necessarily converted to engineering units (Level 0). Moreover, no scrutiny, value judgement or intercomparisons were performed on the data; the records are derived directly from the input with no filtering or sub-sampling (Class A)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2BP/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2BP/1/" + }, + "dce:identifier": "SDN:R06::2BP", + "pav:version": "1", + "skos:notation": "SDN:R06::2BP", + "skos:altLabel": "2B+", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class B, subclass + processing stage" + }, + "dc:identifier": "SDN:R06::2BP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized and evaluated against a defined and documented set of measures; the process is often automated, and the measures are published and widely available (Class B). In addition, the measures have been tested on independent data sets for completeness and robustness, and are widely accepted (Subclass +)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2B/1/" + }, + "dce:identifier": "SDN:R06::2B", + "pav:version": "1", + "skos:notation": "SDN:R06::2B", + "skos:altLabel": "2B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class B processing stage" + }, + "dc:identifier": "SDN:R06::2B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized and evaluated against a defined and documented set of measures; the process is often automated, and the measures are published and widely available (Class B)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/1A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/0A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2BP/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Processing stage of the data based on the concatenation of processing level and class indicators. Argo netCDF variable DATA_STATE_INDICATOR is populated by R06 altLabel.", + "dc:title": "Argo data state indicators", + "skos:prefLabel": "Argo data state indicators", + "owl:versionInfo": "0", + "dc:date": "2020-04-04 15:45:13.0", + "skos:altLabel": "DATA_STATE_INDICATOR", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "DATA_STATE_INDICATOR", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R08.jsonld b/file_checker_spec/NVS/R08.jsonld new file mode 100644 index 0000000..6bebf73 --- /dev/null +++ b/file_checker_spec/NVS/R08.jsonld @@ -0,0 +1,2282 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, SBE float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::890", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, SBE" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "890", + "skos:notation": "SDN:R08::890", + "pav:version": "3", + "dce:identifier": "SDN:R08::890", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, RBR float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::891", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, RBR" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "891", + "skos:notation": "SDN:R08::891", + "pav:version": "3", + "dce:identifier": "SDN:R08::891", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::841", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float with SBE conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "841", + "skos:notation": "SDN:R08::841", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::841", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/1/" + }, + "dce:identifier": "SDN:R08::838", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/" + }, + "skos:notation": "SDN:R08::838", + "skos:altLabel": "838", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::838", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR-D deep profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/1/" + }, + "dce:identifier": "SDN:R08::831", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/" + }, + "skos:notation": "SDN:R08::831", + "skos:altLabel": "831", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PALACE float" + }, + "dc:identifier": "SDN:R08::831", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PALACE profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, RBR float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::889", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, RBR" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "889", + "skos:notation": "SDN:R08::889", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::889", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "ALTO profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::875", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO float with RBR conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "875", + "skos:notation": "SDN:R08::875", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::875", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "APEX profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::877", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX float with RBR conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "877", + "skos:notation": "SDN:R08::877", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::877", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "HM4000 float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::881", + "skos:prefLabel": { + "@language": "en", + "@value": "HM4000" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "881", + "skos:notation": "SDN:R08::881", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::881", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::851", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO float with SBE conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "851", + "skos:notation": "SDN:R08::851", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::851", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/1/" + }, + "dce:identifier": "SDN:R08::847", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "skos:notation": "SDN:R08::847", + "skos:altLabel": "847", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research float with FSI conductivity sensor" + }, + "dc:identifier": "SDN:R08::847", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/1/" + }, + "dce:identifier": "SDN:R08::848", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + }, + "skos:notation": "SDN:R08::848", + "skos:altLabel": "848", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX-EM float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::848", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "APEX-EM profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR IV" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::835", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR IV" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:39:49.0", + "skos:altLabel": "835", + "skos:notation": "SDN:R08::835", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::835", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/2/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/1/" + }, + "dce:identifier": "SDN:R08::837", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/" + }, + "skos:notation": "SDN:R08::837", + "skos:altLabel": "837", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR-C float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::837", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR-C profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/870/", + "pav:authoredOn": "2024-10-24 14:51:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/870/1/" + }, + "dce:identifier": "SDN:R08::870", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/" + }, + "skos:notation": "SDN:R08::870", + "skos:altLabel": "870", + "dc:date": "2024-10-24 14:51:27.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "HM2000" + }, + "dc:identifier": "SDN:R08::870", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "HM2000 profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/1/" + }, + "dce:identifier": "SDN:R08::859", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + "skos:notation": "SDN:R08::859", + "skos:altLabel": "859", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float with no conductivity" + }, + "dc:identifier": "SDN:R08::859", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO profiling float with no conductivity" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/1/" + }, + "dce:identifier": "SDN:R08::861", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + "skos:notation": "SDN:R08::861", + "skos:altLabel": "861", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float with FSI conductivity sensor" + }, + "dc:identifier": "SDN:R08::861", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/1/" + }, + "dce:identifier": "SDN:R08::858", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::858", + "skos:altLabel": "858", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with TSK conductivity sensor" + }, + "dc:identifier": "SDN:R08::858", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with Tsurumi-Seiki Co., Ltd (TSK) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS4 generation with dual board" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::836", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR III" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:39:49.0", + "skos:altLabel": "836", + "skos:notation": "SDN:R08::836", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::836", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/2/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/1/" + }, + "dce:identifier": "SDN:R08::843", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/" + }, + "skos:notation": "SDN:R08::843", + "skos:altLabel": "843", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "POPS ice platform using PROVOR float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::843", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Polar Ocean Profiling System (POPS) ice platform using PROVOR profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/873/", + "pav:authoredOn": "2024-10-24 14:51:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/873/1/" + }, + "dce:identifier": "SDN:R08::873", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + "skos:notation": "SDN:R08::873", + "skos:altLabel": "873", + "dc:date": "2024-10-24 14:51:27.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO" + }, + "dc:identifier": "SDN:R08::873", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ALTO profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "ARVOR profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::878", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR float with RBR conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "878", + "skos:notation": "SDN:R08::878", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::878", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC, RBR float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::885", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC, RBR" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "885", + "skos:notation": "SDN:R08::885", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::885", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "APEX_D deep profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::883", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX_D deep float with RBR conductivity sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "883", + "skos:notation": "SDN:R08::883", + "pav:version": "3", + "dce:identifier": "SDN:R08::883", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/1/" + } + ], + "pav:authoredOn": "2024-11-11 09:32:23.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR V with Seabird CTD sensor (code not used in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::834", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR V SBE" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "834", + "skos:notation": "SDN:R08::834", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + } + ], + "pav:version": "3", + "dce:identifier": "SDN:R08::834", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/1/" + }, + "dce:identifier": "SDN:R08::863", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/" + }, + "skos:notation": "SDN:R08::863", + "skos:altLabel": "863", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Navis-A float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::863", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Navis-A profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/1/" + }, + "dce:identifier": "SDN:R08::844", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + "skos:notation": "SDN:R08::844", + "skos:altLabel": "844", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::844", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO-II profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::879", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO-II with RBR conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "879", + "skos:notation": "SDN:R08::879", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::879", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "ALTO profiling float with Sea-Bird Scientific (SBE) conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::876", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO float with SBE conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "876", + "skos:notation": "SDN:R08::876", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::876", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/2/" + } + ], + "pav:authoredOn": "2024-11-11 09:32:24.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC_MRV, SBE float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::886", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC_MRV, SBE" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "886", + "skos:notation": "SDN:R08::886", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + } + ], + "pav:version": "3", + "dce:identifier": "SDN:R08::886", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/1/" + }, + "dce:identifier": "SDN:R08::853", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + }, + "skos:notation": "SDN:R08::853", + "skos:altLabel": "853", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO-II float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::853", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO-II profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/1/" + }, + "dce:identifier": "SDN:R08::864", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/" + }, + "skos:notation": "SDN:R08::864", + "skos:altLabel": "864", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::864", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA-D profiling deep float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/869/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/869/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "NAVIS_EBR profiling float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::869", + "skos:prefLabel": { + "@language": "en", + "@value": "NAVIS_EBR" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:23.0", + "skos:altLabel": "869", + "skos:notation": "SDN:R08::869", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::869", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/869/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:23.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::842", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float with FSI conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "842", + "skos:notation": "SDN:R08::842", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::842", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/1/" + }, + "dce:identifier": "SDN:R08::845", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "skos:notation": "SDN:R08::845", + "skos:altLabel": "845", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research float with no conductivity sensor" + }, + "dc:identifier": "SDN:R08::845", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research profiling float with no conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/874/", + "pav:authoredOn": "2024-10-24 14:51:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/874/1/" + }, + "dce:identifier": "SDN:R08::874", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/" + }, + "skos:notation": "SDN:R08::874", + "skos:altLabel": "874", + "dc:date": "2024-10-24 14:51:27.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_D_MRV" + }, + "dc:identifier": "SDN:R08::874", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_D_MRV profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/871/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/871/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Copex float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::871", + "skos:prefLabel": { + "@language": "en", + "@value": "COPEX" + }, + "owl:versionInfo": "2", + "dc:date": "2024-12-16 16:23:22.0", + "skos:altLabel": "871", + "skos:notation": "SDN:R08::871", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::871", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/871/2/" + }, + "pav:authoredOn": "2024-12-16 16:23:22.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::852", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO float with FSI conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "852", + "skos:notation": "SDN:R08::852", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::852", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/1/" + }, + "dce:identifier": "SDN:R08::856", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::856", + "skos:altLabel": "856", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::856", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC, SBE float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::884", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC, SBE" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "884", + "skos:notation": "SDN:R08::884", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::884", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/2/" + } + ], + "pav:authoredOn": "2024-11-11 09:32:24.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC_MRV, RBR float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::887", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC_MRV, RBR" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "887", + "skos:notation": "SDN:R08::887", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + } + ], + "pav:version": "3", + "dce:identifier": "SDN:R08::887", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/1/" + }, + "dce:identifier": "SDN:R08::862", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/" + }, + "skos:notation": "SDN:R08::862", + "skos:altLabel": "862", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::862", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO-D profiling deep float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/1/" + }, + "dce:identifier": "SDN:R08::854", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + "skos:notation": "SDN:R08::854", + "skos:altLabel": "854", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "S2A float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::854", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "S2A profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR profiling float with no conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::840", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float with no conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "840", + "skos:notation": "SDN:R08::840", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::840", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "S2A profiling float with RBR conductivity sensor (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::880", + "skos:prefLabel": { + "@language": "en", + "@value": "S2A float with RBR conductivity sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "880", + "skos:notation": "SDN:R08::880", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::880", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/2/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/1/" + }, + "dce:identifier": "SDN:R08::865", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/" + }, + "skos:notation": "SDN:R08::865", + "skos:altLabel": "865", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NOVA float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::865", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NOVA profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/", + "pav:authoredOn": "2024-04-19 16:28:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/1/" + }, + "dce:identifier": "SDN:R08::872", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/" + }, + "skos:notation": "SDN:R08::872", + "skos:altLabel": "872", + "dc:date": "2024-04-19 16:28:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "S2X" + }, + "dc:identifier": "SDN:R08::872", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "S2X profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/1/" + }, + "dce:identifier": "SDN:R08::846", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "skos:notation": "SDN:R08::846", + "skos:altLabel": "846", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::846", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO profiling float with no conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::850", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO float with no conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "850", + "skos:notation": "SDN:R08::850", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::850", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/1/" + }, + "dce:identifier": "SDN:R08::839", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + }, + "skos:notation": "SDN:R08::839", + "skos:altLabel": "839", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR-II float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::839", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR-II profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "XUANWU float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::882", + "skos:prefLabel": { + "@language": "en", + "@value": "XUANWU" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "882", + "skos:notation": "SDN:R08::882", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::882", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/1/" + }, + "dce:identifier": "SDN:R08::857", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::857", + "skos:altLabel": "857", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with FSI conductivity sensor" + }, + "dc:identifier": "SDN:R08::857", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/1/" + }, + "dce:identifier": "SDN:R08::860", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + "skos:notation": "SDN:R08::860", + "skos:altLabel": "860", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::860", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/1/" + }, + "dce:identifier": "SDN:R08::849", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/" + }, + "skos:notation": "SDN:R08::849", + "skos:altLabel": "849", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::849", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "APEX-D profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, SBE float (Code marked as 'Reserved' in WMO 1770 table)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::888", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, SBE" + }, + "owl:versionInfo": "3", + "dc:date": "2024-11-11 09:32:24.0", + "skos:altLabel": "888", + "skos:notation": "SDN:R08::888", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R08::888", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/3/" + }, + "pav:authoredOn": "2024-11-11 09:32:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/1/" + }, + "dce:identifier": "SDN:R08::855", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::855", + "skos:altLabel": "855", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with no conductivity sensor" + }, + "dc:identifier": "SDN:R08::855", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with no conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/870/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/873/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/869/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/874/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/871/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Subset of instrument type codes from the World Meteorological Organization (WMO) Common Code Table C-3 (CCT C-3) 1770, named 'Instrument make and type for water temperature profile measurement with fall rate equation coefficients' and available here: https://library.wmo.int/doc_num.php?explnum_id=11283. Argo netCDF variable WMO_INST_TYPE is populated by R08 altLabel.", + "dc:title": "Argo instrument types", + "skos:prefLabel": "Argo instrument types", + "owl:versionInfo": "10", + "dc:date": "2024-12-17 02:00:00.0", + "skos:altLabel": "ARGO_WMO_INST_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "ARGO_WMO_INST_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R09.jsonld b/file_checker_spec/NVS/R09.jsonld new file mode 100644 index 0000000..b3d58d9 --- /dev/null +++ b/file_checker_spec/NVS/R09.jsonld @@ -0,0 +1,354 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GALILEO/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GALILEO/1/" + }, + "dce:identifier": "SDN:R09::GALILEO", + "pav:version": "1", + "skos:notation": "SDN:R09::GALILEO", + "skos:altLabel": "GALILEO", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Galileo navigation satellite system" + }, + "dc:identifier": "SDN:R09::GALILEO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Galileo navigation satellite system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/BEIDOU/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/BEIDOU/1/" + }, + "dce:identifier": "SDN:R09::BEIDOU", + "pav:version": "1", + "skos:notation": "SDN:R09::BEIDOU", + "skos:altLabel": "BEIDOU", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Beidou navigation satellite system" + }, + "dc:identifier": "SDN:R09::BEIDOU", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Beidou navigation satellite system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GLONASS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GLONASS/1/" + }, + "dce:identifier": "SDN:R09::GLONASS", + "pav:version": "1", + "skos:notation": "SDN:R09::GLONASS", + "skos:altLabel": "GLONASS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "GLONASS navigation satellite system" + }, + "dc:identifier": "SDN:R09::GLONASS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "GLONASS navigation satellite system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/NONE/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/NONE/1/" + }, + "dce:identifier": "SDN:R09::NONE", + "pav:version": "1", + "skos:notation": "SDN:R09::NONE", + "skos:altLabel": "NONE", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "More than one system used or none available" + }, + "dc:identifier": "SDN:R09::NONE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For profile file only: if an estimated position is based on two or more positioning systems, or if the estimation does not rely on information from positioning systems." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/IRIDIUM/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/IRIDIUM/1/" + }, + "dce:identifier": "SDN:R09::IRIDIUM", + "pav:version": "1", + "skos:notation": "SDN:R09::IRIDIUM", + "skos:altLabel": "IRIDIUM", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Iridium positioning system" + }, + "dc:identifier": "SDN:R09::IRIDIUM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Iridium positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/RAFOS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/RAFOS/1/" + }, + "dce:identifier": "SDN:R09::RAFOS", + "pav:version": "1", + "skos:notation": "SDN:R09::RAFOS", + "skos:altLabel": "RAFOS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RAFOS positioning system" + }, + "dc:identifier": "SDN:R09::RAFOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "RAFOS positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GNSS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GNSS/1/" + }, + "dce:identifier": "SDN:R09::GNSS", + "pav:version": "1", + "skos:notation": "SDN:R09::GNSS", + "skos:altLabel": "GNSS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Global Navigation Satellite System" + }, + "dc:identifier": "SDN:R09::GNSS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Global Navigation Satellite System" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/ARGOS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/ARGOS/1/" + }, + "dce:identifier": "SDN:R09::ARGOS", + "pav:version": "1", + "skos:notation": "SDN:R09::ARGOS", + "skos:altLabel": "ARGOS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos positioning system" + }, + "dc:identifier": "SDN:R09::ARGOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argos positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GPS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GPS/1/" + }, + "dce:identifier": "SDN:R09::GPS", + "pav:version": "1", + "skos:notation": "SDN:R09::GPS", + "skos:altLabel": "GPS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "GPS positioning system" + }, + "dc:identifier": "SDN:R09::GPS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "GPS positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GALILEO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/BEIDOU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GLONASS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/NONE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/IRIDIUM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/RAFOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GNSS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GPS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/ARGOS/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float location measuring systems. Argo netCDF variable POSITIONING_SYSTEM is populated by R09 altLabel.", + "dc:title": "Argo positioning system", + "skos:prefLabel": "Argo positioning system", + "owl:versionInfo": "1", + "dc:date": "2020-04-08 03:00:04.0", + "skos:altLabel": "POSITIONING_SYSTEM", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "POSITIONING_SYSTEM", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R10.jsonld b/file_checker_spec/NVS/R10.jsonld new file mode 100644 index 0000000..b51c2a8 --- /dev/null +++ b/file_checker_spec/NVS/R10.jsonld @@ -0,0 +1,187 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/BEIDOU/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/BEIDOU/1/" + }, + "pav:authoredOn": "2026-02-25 09:10:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/BEIDOU/2/" + }, + "dce:identifier": "SDN:R10::BEIDOU", + "pav:version": "2", + "skos:notation": "SDN:R10::BEIDOU", + "skos:altLabel": "BEIDOU", + "dc:date": "2026-02-25 09:10:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Beidou transmission system" + }, + "dc:identifier": "SDN:R10::BEIDOU", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Beidou transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ARGOS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ARGOS/1/" + }, + "dce:identifier": "SDN:R10::ARGOS", + "pav:version": "1", + "skos:notation": "SDN:R10::ARGOS", + "skos:altLabel": "ARGOS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos transmission system" + }, + "dc:identifier": "SDN:R10::ARGOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argos transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ORBCOMM/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ORBCOMM/1/" + }, + "dce:identifier": "SDN:R10::ORBCOMM", + "pav:version": "1", + "skos:notation": "SDN:R10::ORBCOMM", + "skos:altLabel": "ORBCOMM", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Orbcomm transmission system" + }, + "dc:identifier": "SDN:R10::ORBCOMM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Orbcomm transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/IRIDIUM/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/IRIDIUM/1/" + }, + "dce:identifier": "SDN:R10::IRIDIUM", + "pav:version": "1", + "skos:notation": "SDN:R10::IRIDIUM", + "skos:altLabel": "IRIDIUM", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Iridium transmission system" + }, + "dc:identifier": "SDN:R10::IRIDIUM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Iridium transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/BEIDOU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ARGOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/IRIDIUM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ORBCOMM/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of telecommunication systems. Argo netCDF variable TRANS_SYSTEM is populated by R10 altLabel.", + "dc:title": "Argo transmission systems", + "skos:prefLabel": "Argo transmission systems", + "owl:versionInfo": "3", + "dc:date": "2026-02-26 02:00:01.0", + "skos:altLabel": "TRANS_SYSTEM", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "TRANS_SYSTEM", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R14.jsonld b/file_checker_spec/NVS/R14.jsonld new file mode 100644 index 0000000..476a05d --- /dev/null +++ b/file_checker_spec/NVS/R14.jsonld @@ -0,0 +1,24208 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000506/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000506/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000506/2/" + }, + "dce:identifier": "SDN:R14::T000506", + "pav:version": "2", + "skos:notation": "SDN:R14::T000506", + "skos:altLabel": "506", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatterySBEPump_mA" + }, + "dc:identifier": "SDN:R14::T000506", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current when CTD is active. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000055/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000055/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000055/2/" + }, + "dce:identifier": "SDN:R14::T000055", + "pav:version": "2", + "skos:notation": "SDN:R14::T000055", + "skos:altLabel": "55", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_StartDescentProfile_hours" + }, + "dc:identifier": "SDN:R14::T000055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when descent profile starts. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_DESCENT_START and JULD with MC=100 assuming descending profile starts when float leaves the surface otherwise choose the appropriate timing variable. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000360/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000360/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000360/2/" + }, + "dce:identifier": "SDN:R14::T000360", + "pav:version": "2", + "skos:notation": "SDN:R14::T000360", + "skos:altLabel": "360", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonMax_COUNT" + }, + "dc:identifier": "SDN:R14::T000360", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Reported maximum piston position. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900018/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900018/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900018/2/" + }, + "dce:identifier": "SDN:R14::T900018", + "pav:version": "2", + "skos:notation": "SDN:R14::T900018", + "skos:altLabel": "900018", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MaximumDescentToPark_dbar" + }, + "dc:identifier": "SDN:R14::T900018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum recorded pressure during descent, before stabilisation at park pressure. MC minus 2. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000155/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000155/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000155/2/" + }, + "dce:identifier": "SDN:R14::T000155", + "pav:version": "2", + "skos:notation": "SDN:R14::T000155", + "skos:altLabel": "155", + "dc:date": "2025-12-11 11:05:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClassZ_COUNT" + }, + "dc:identifier": "SDN:R14::T000155", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class Z. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000215/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000215/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000215/2/" + }, + "dce:identifier": "SDN:R14::T000215", + "pav:version": "2", + "skos:notation": "SDN:R14::T000215", + "skos:altLabel": "215", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000215", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000492/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000492/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000492/2/" + }, + "dce:identifier": "SDN:R14::T000492", + "pav:version": "2", + "skos:notation": "SDN:R14::T000492", + "skos:altLabel": "492", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryFlntuParkEnd_mA" + }, + "dc:identifier": "SDN:R14::T000492", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current measured when Flntu sampled at end of park. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000231/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000231/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000231/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile optique measurements - Internal counter - Profile 2. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000231", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileMeasurementsProfile2_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "231", + "skos:notation": "SDN:R14::T000231", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000231", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000231/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500271/2/" + }, + "dce:identifier": "SDN:R14::T500271", + "pav:version": "2", + "skos:notation": "SDN:R14::T500271", + "skos:altLabel": "271.5", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterPowerCycled_bit" + }, + "dc:identifier": "SDN:R14::T500271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the Argos transmitter power has cycled. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000150/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000150/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000150/2/" + }, + "dce:identifier": "SDN:R14::T000150", + "pav:version": "2", + "skos:notation": "SDN:R14::T000150", + "skos:altLabel": "150", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClass2_COUNT" + }, + "dc:identifier": "SDN:R14::T000150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class 2 - accuracy better than 500m radius. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000457/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000457/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000457/2/" + }, + "dce:identifier": "SDN:R14::T000457", + "pav:version": "2", + "skos:notation": "SDN:R14::T000457", + "skos:altLabel": "457", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_FromBladdersEmptyToStartOfMission_seconds" + }, + "dc:identifier": "SDN:R14::T000457", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time from bladders empty to the start of mission. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900031/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900031/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900031/2/" + }, + "dce:identifier": "SDN:R14::T900031", + "pav:version": "2", + "skos:notation": "SDN:R14::T900031", + "skos:altLabel": "900031", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_LastAscentPumpedRawSample_degC" + }, + "dc:identifier": "SDN:R14::T900031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Last (shallowest) pumped raw temperature sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped). MC599. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000204/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000204/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000204/2/" + }, + "dce:identifier": "SDN:R14::T000204", + "pav:version": "2", + "skos:notation": "SDN:R14::T000204", + "skos:altLabel": "204", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FloatFramesCompleteOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000204", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Provor frames complete on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000441/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000441/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000441/2/" + }, + "dce:identifier": "SDN:R14::T000441", + "pav:version": "2", + "skos:notation": "SDN:R14::T000441", + "skos:altLabel": "441", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "STATUS_MiscellaneousOperations_hex" + }, + "dc:identifier": "SDN:R14::T000441", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "STATUS_MiscellaneousOperations. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000541/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000541/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000541/2/" + }, + "dce:identifier": "SDN:R14::T000541", + "pav:version": "2", + "skos:notation": "SDN:R14::T000541", + "skos:altLabel": "541", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatterySBEParkEnd_volts" + }, + "dc:identifier": "SDN:R14::T000541", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured when the SBE41 sampled after the end of park phase. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000425/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000425/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000425/2/" + }, + "dce:identifier": "SDN:R14::T000425", + "pav:version": "2", + "skos:notation": "SDN:R14::T000425", + "skos:altLabel": "425", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumOilBladderFull_inHg" + }, + "dc:identifier": "SDN:R14::T000425", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal vacuum when all oil is inside the oil bladder. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100036/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100036/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100036/2/" + }, + "dce:identifier": "SDN:R14::T100036", + "pav:version": "2", + "skos:notation": "SDN:R14::T100036", + "skos:altLabel": "36.1", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetCorrectedNotResetNegative_1mBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T100036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent but data is corrected on board the float. This is a cumulative NEGATIVE offset (real offset multiplied by -1) but no further correction required. Autocorrected. The CTS5 provides the Poffset with a 1 mBar resolution. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100260/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100260/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100260/2/" + }, + "dce:identifier": "SDN:R14::T100260", + "pav:version": "2", + "skos:notation": "SDN:R14::T100260", + "skos:altLabel": "260.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileCrossCalibrationSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T100260", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Near Surface Temperature monitoring cross calibration samples (pumped PTS, non-pumped PT). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000489/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000489/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000489/2/" + }, + "dce:identifier": "SDN:R14::T000489", + "pav:version": "2", + "skos:notation": "SDN:R14::T000489", + "skos:altLabel": "489", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryAirPumpOn_mA" + }, + "dc:identifier": "SDN:R14::T000489", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery Current during inflation of sleeve bladder. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000220/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000220/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000220/2/" + }, + "dce:identifier": "SDN:R14::T000220", + "pav:version": "2", + "skos:notation": "SDN:R14::T000220", + "skos:altLabel": "220", + "dc:date": "2025-12-11 11:04:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesReceivedCrcOkOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000220", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames received with crc ok on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000554/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000554/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000554/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium messages used to transmit data collected during the ascent from the profile depth to the surface. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000554", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentIridiumMessages_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "554", + "skos:notation": "SDN:R14::T000554", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000554", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000554/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000268/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000268/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000268/2/" + }, + "dce:identifier": "SDN:R14::T000268", + "pav:version": "2", + "skos:notation": "SDN:R14::T000268", + "skos:altLabel": "268", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_VacuumPressure_bit" + }, + "dc:identifier": "SDN:R14::T000268", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the status of the pressure of the vacuum. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000134/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000134/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000134/2/" + }, + "dce:identifier": "SDN:R14::T000134", + "pav:version": "2", + "skos:notation": "SDN:R14::T000134", + "skos:altLabel": "134", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples1stBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000134", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100546/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100546/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100546/2/" + }, + "dce:identifier": "SDN:R14::T100546", + "pav:version": "2", + "skos:notation": "SDN:R14::T100546", + "skos:altLabel": "546.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_AcrossInsulation_mV" + }, + "dc:identifier": "SDN:R14::T100546", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Insulation voltage measured between 2 sub-parts of the float. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300488/2/" + }, + "dce:identifier": "SDN:R14::T300488", + "pav:version": "2", + "skos:notation": "SDN:R14::T300488", + "skos:altLabel": "488.3", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredToAscentWhenGrounded_cm^3" + }, + "dc:identifier": "SDN:R14::T300488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume, transferred to the external bladder, needed to leave the sea bottom when grounded. Reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000047/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000047/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000047/2/" + }, + "dce:identifier": "SDN:R14::T000047", + "pav:version": "2", + "skos:notation": "SDN:R14::T000047", + "skos:altLabel": "47", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SensorAutoAdjustment_dbar" + }, + "dc:identifier": "SDN:R14::T000047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total Surface pressure offset applied by the float since deployment. This is a cumulative offset (with limitations) and cannot be used for pressure correction. This is a surface pressure name for reference only. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000126/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000126/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000126/2/" + }, + "dce:identifier": "SDN:R14::T000126", + "pav:version": "2", + "skos:notation": "SDN:R14::T000126", + "skos:altLabel": "126", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT" + }, + "dc:identifier": "SDN:R14::T000126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of solenoid valve actions at the surface until the crossing of the GAP threshold. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200068/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200068/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200068/2/" + }, + "dce:identifier": "SDN:R14::T200068", + "pav:version": "2", + "skos:notation": "SDN:R14::T200068", + "skos:altLabel": "68.2", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TransmissionEndTime_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T200068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when transmission is ended. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. TRANSMISSION_END_TIME and JULD with MC=800. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000163/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000163/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000163/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Shallow absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000163", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesShallowAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "163", + "skos:notation": "SDN:R14::T000163", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000163", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000163/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000061/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000061/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000061/2/" + }, + "dce:identifier": "SDN:R14::T000061", + "pav:version": "2", + "skos:notation": "SDN:R14::T000061", + "skos:altLabel": "61", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FloatTimeCorrection_MMSS" + }, + "dc:identifier": "SDN:R14::T000061", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float internal clock time correction. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM, days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000228/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000228/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000228/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct optique frames emitted on ascending profile - Profile 2. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000228", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnAscendingProfile2_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "228", + "skos:notation": "SDN:R14::T000228", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000228", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000228/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000110/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000110/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000110/2/" + }, + "dce:identifier": "SDN:R14::T000110", + "pav:version": "2", + "skos:notation": "SDN:R14::T000110", + "skos:altLabel": "110", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_BinsWithData_COUNT" + }, + "dc:identifier": "SDN:R14::T000110", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pressure bins with data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900002/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900002/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900002/2/" + }, + "dce:identifier": "SDN:R14::T900002", + "pav:version": "2", + "skos:notation": "SDN:R14::T900002", + "skos:altLabel": "900002", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_2ndSettlingBeforePark_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T900002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Time when float was settled at the parking depth for the 2nd time. MC189 - buoyancy action. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000331/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000331/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000331/2/" + }, + "dce:identifier": "SDN:R14::T000331", + "pav:version": "2", + "skos:notation": "SDN:R14::T000331", + "skos:altLabel": "331", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StartDescentToProfile_NUMBER" + }, + "dc:identifier": "SDN:R14::T000331", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the start date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000473/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000473/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000473/2/" + }, + "dce:identifier": "SDN:R14::T000473", + "pav:version": "2", + "skos:notation": "SDN:R14::T000473", + "skos:altLabel": "473", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpActionsInOutAtSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000473", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total duration of pump actions (in and out both reported) at the surface. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000077/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000077/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000077/2/" + }, + "dce:identifier": "SDN:R14::T000077", + "pav:version": "2", + "skos:notation": "SDN:R14::T000077", + "skos:altLabel": "77", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_ReceptionEndDateTime_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T000077", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "End date-time of argos message reception. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000538/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000538/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000538/2/" + }, + "dce:identifier": "SDN:R14::T000538", + "pav:version": "2", + "skos:notation": "SDN:R14::T000538", + "skos:altLabel": "538", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryPumpOn_volts" + }, + "dc:identifier": "SDN:R14::T000538", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pump Battery Voltage (LSB=0.1 volts). Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400248/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400248/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400248/2/" + }, + "dce:identifier": "SDN:R14::T400248", + "pav:version": "2", + "skos:notation": "SDN:R14::T400248", + "skos:altLabel": "248.4", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkDriftExitsFromParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T400248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Drift at park druing multiparking mode # pressure: number of exits from margin around park # pressure target. Specifically, it indicates how many times the float exits the band of pressure surrounding the target park # pressure (generally +/- 30db). This parameter is needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[COUNT];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000158/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000158/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000158/2/" + }, + "dce:identifier": "SDN:R14::T000158", + "pav:version": "2", + "skos:notation": "SDN:R14::T000158", + "skos:altLabel": "158", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileOldNotSent_COUNT" + }, + "dc:identifier": "SDN:R14::T000158", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of older profiles not sent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000347/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000347/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000347/2/" + }, + "dce:identifier": "SDN:R14::T000347", + "pav:version": "2", + "skos:notation": "SDN:R14::T000347", + "skos:altLabel": "347", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "REFERENCE_NTUParkEnd_COUNT" + }, + "dc:identifier": "SDN:R14::T000347", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu NTU Reference at end of park, before descent to profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000252/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000252/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000252/2/" + }, + "dce:identifier": "SDN:R14::T000252", + "pav:version": "2", + "skos:notation": "SDN:R14::T000252", + "skos:altLabel": "252", + "dc:date": "2025-12-11 11:05:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_CTDReset_COUNT" + }, + "dc:identifier": "SDN:R14::T000252", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD reset count. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000282/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000282/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000282/2/" + }, + "dce:identifier": "SDN:R14::T000282", + "pav:version": "2", + "skos:notation": "SDN:R14::T000282", + "skos:altLabel": "282", + "dc:date": "2025-12-11 11:04:39.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuNoResponse_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000282", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu : No response (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000317/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000317/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000317/2/" + }, + "dce:identifier": "SDN:R14::T000317", + "pav:version": "2", + "skos:notation": "SDN:R14::T000317", + "skos:altLabel": "317", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41NullArgumentDetectedDuringPMeasurement_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000317", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Null argument detected during P measurement (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000315/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000315/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000315/2/" + }, + "dce:identifier": "SDN:R14::T000315", + "pav:version": "2", + "skos:notation": "SDN:R14::T000315", + "skos:altLabel": "315", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ExceptionDetectedWhileParsingThePTSNonPedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000315", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Exception detected while parsing the PTS nonpedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000250/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000250/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000250/2/" + }, + "dce:identifier": "SDN:R14::T000250", + "pav:version": "2", + "skos:notation": "SDN:R14::T000250", + "skos:altLabel": "250", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RAFOSErrorsAscending_COUNT" + }, + "dc:identifier": "SDN:R14::T000250", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of RAFOS errors during profile. Zero if no rafos module installed. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000384/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000384/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000384/2/" + }, + "dce:identifier": "SDN:R14::T000384", + "pav:version": "2", + "skos:notation": "SDN:R14::T000384", + "skos:altLabel": "384", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DOXYProfileReductionBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000384", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY profile reduction Deep zone slices thickness - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000552/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000552/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000552/2/" + }, + "dce:identifier": "SDN:R14::T000552", + "pav:version": "2", + "skos:notation": "SDN:R14::T000552", + "skos:altLabel": "552", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SensorBoardStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000552", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag reporting the status of the sensor board. Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100115/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100115/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100115/2/" + }, + "dce:identifier": "SDN:R14::T100115", + "pav:version": "2", + "skos:notation": "SDN:R14::T100115", + "skos:altLabel": "115.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsToStartAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T100115", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions needed to start the ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000031/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000031/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000031/2/" + }, + "dce:identifier": "SDN:R14::T000031", + "pav:version": "2", + "skos:notation": "SDN:R14::T000031", + "skos:altLabel": "31", + "dc:date": "2025-12-11 11:04:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetNotTruncated_approx5dbarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset. This IS NOT used to correct pressure on board. Also note that the resolution varies because counts are repoted and converted using different calibration coefficients for each float. Not autocorrected. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000449/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000449/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000449/2/" + }, + "dce:identifier": "SDN:R14::T000449", + "pav:version": "2", + "skos:notation": "SDN:R14::T000449", + "skos:altLabel": "449", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_BuoyancyReductionActionAtSurface_seconds" + }, + "dc:identifier": "SDN:R14::T000449", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The time the pump or valve ran at the surface to initiate descent. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000298/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000298/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000298/2/" + }, + "dce:identifier": "SDN:R14::T000298", + "pav:version": "2", + "skos:notation": "SDN:R14::T000298", + "skos:altLabel": "298", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_OptodeNullArgumentDetectedDuringMeasurement_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000298", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optode : Null argument detected during measurement (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000520/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000520/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000520/2/" + }, + "dce:identifier": "SDN:R14::T000520", + "pav:version": "2", + "skos:notation": "SDN:R14::T000520", + "skos:altLabel": "520", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryCPU_volts" + }, + "dc:identifier": "SDN:R14::T000520", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CPU voltage (LSB=0.1 volt). Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000266/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000266/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000266/2/" + }, + "dce:identifier": "SDN:R14::T000266", + "pav:version": "2", + "skos:notation": "SDN:R14::T000266", + "skos:altLabel": "266", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_CurrentWithMotorOut_bit" + }, + "dc:identifier": "SDN:R14::T000266", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the current with motor out. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T120127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T120127/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T120127/2/" + }, + "dce:identifier": "SDN:R14::T120127", + "pav:version": "2", + "skos:notation": "SDN:R14::T120127", + "skos:altLabel": "127.12", + "dc:date": "2025-12-11 11:04:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsForSecondGroundingDetection_COUNT" + }, + "dc:identifier": "SDN:R14::T120127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions done at constant pressure to set the grounded flag for the second grounding event. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000079/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000079/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000079/2/" + }, + "dce:identifier": "SDN:R14::T000079", + "pav:version": "2", + "skos:notation": "SDN:R14::T000079", + "skos:altLabel": "79", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_ReceptionStartDateTime_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T000079", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Start date-time of argos message reception. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000363/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000363/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000363/2/" + }, + "dce:identifier": "SDN:R14::T000363", + "pav:version": "2", + "skos:notation": "SDN:R14::T000363", + "skos:altLabel": "363", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_2HoursIntoDescentToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T000363", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure taken 2 hours after the beginning of descent. If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000568/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000568/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000568/2/" + }, + "dce:identifier": "SDN:R14::T000568", + "pav:version": "2", + "skos:notation": "SDN:R14::T000568", + "skos:altLabel": "568", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SUNAAPFPowerCycleCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000568", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Incremented each time power is applied to SUNA (it can be used to notice if the SUNA was powered unintentionally between data collection events). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100066/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100066/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100066/2/" + }, + "dce:identifier": "SDN:R14::T100066", + "pav:version": "2", + "skos:notation": "SDN:R14::T100066", + "skos:altLabel": "66.1", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_PumpActionsAtSurface_HHMM" + }, + "dc:identifier": "SDN:R14::T100066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The time when the float moves the pump to acquire additional buoyancy for surface drift. Template_Values:{unit:[FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000428/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000428/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000428/2/" + }, + "dce:identifier": "SDN:R14::T000428", + "pav:version": "2", + "skos:notation": "SDN:R14::T000428", + "skos:altLabel": "428", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAtStartSurface_inHg" + }, + "dc:identifier": "SDN:R14::T000428", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Air pressure inside of SOLO at start of surface time (IDG Var=ATS). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000522/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000522/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000522/2/" + }, + "dce:identifier": "SDN:R14::T000522", + "pav:version": "2", + "skos:notation": "SDN:R14::T000522", + "skos:altLabel": "522", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryCPUStartXmit_volts" + }, + "dc:identifier": "SDN:R14::T000522", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CPU Battery at the start of transmission after data has been processed (LSB=0.1 volts, IDG Var= Vcpu). Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000536/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000536/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000536/2/" + }, + "dce:identifier": "SDN:R14::T000536", + "pav:version": "2", + "skos:notation": "SDN:R14::T000536", + "skos:altLabel": "536", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryPumpAscentEnd_volts" + }, + "dc:identifier": "SDN:R14::T000536", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pump Battery voltage at the end of ascent (LSB=0.1 volt). Also a diagnostic message. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000193/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000193/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000193/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Surface total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000193", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesShallowTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "193", + "skos:notation": "SDN:R14::T000193", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000193", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000193/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000471/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000471/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000471/2/" + }, + "dce:identifier": "SDN:R14::T000471", + "pav:version": "2", + "skos:notation": "SDN:R14::T000471", + "skos:altLabel": "471", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpActionsAtDepth_seconds" + }, + "dc:identifier": "SDN:R14::T000471", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total duration of pump actions at depth. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000495/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000495/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000495/2/" + }, + "dce:identifier": "SDN:R14::T000495", + "pav:version": "2", + "skos:notation": "SDN:R14::T000495", + "skos:altLabel": "495", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryMaxPumpOnStartAscent_mA" + }, + "dc:identifier": "SDN:R14::T000495", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum pump motor current taken at start of ascent. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100058/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100058/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100058/2/" + }, + "dce:identifier": "SDN:R14::T100058", + "pav:version": "2", + "skos:notation": "SDN:R14::T100058", + "skos:altLabel": "58.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_StartInternalCycle_FloatDay" + }, + "dc:identifier": "SDN:R14::T100058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The time of the (internal) cycle start for floats with multiple sub-cycles. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000226/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000226/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000226/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The number of records in each dataset type [1-5] as transmitted - dataset 1=test data, 2=park data if profile, GPS data if test, 3=not used, 4=profile data, 5=GPS data for profile. Template_Values:{unit:[COUNT];digit:[1..5]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000226", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RecordsInDataset_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-26 15:18:17.0", + "skos:altLabel": "226", + "skos:notation": "SDN:R14::T000226", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000226", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000226/3/" + }, + "pav:authoredOn": "2026-03-26 15:18:17.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000142/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000142/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000142/2/" + }, + "dce:identifier": "SDN:R14::T000142", + "pav:version": "2", + "skos:notation": "SDN:R14::T000142", + "skos:altLabel": "142", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DeepSamplesDuringAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T000142", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples collected in deep area during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900034/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900034/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900034/2/" + }, + "dce:identifier": "SDN:R14::T900034", + "pav:version": "2", + "skos:notation": "SDN:R14::T900034", + "skos:altLabel": "900034", + "dc:date": "2025-12-11 11:04:52.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_ParkMinimum_degC" + }, + "dc:identifier": "SDN:R14::T900034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum temperature during park phase. MC minus 3 or 297. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000161/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000161/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000161/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Deep relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000161", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesDeepRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "161", + "skos:notation": "SDN:R14::T000161", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000161", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000161/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000504/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000504/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000504/2/" + }, + "dce:identifier": "SDN:R14::T000504", + "pav:version": "2", + "skos:notation": "SDN:R14::T000504", + "skos:altLabel": "504", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatterySampledbySBE_mA" + }, + "dc:identifier": "SDN:R14::T000504", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe sampled battery current. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000058/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000058/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000058/2/" + }, + "dce:identifier": "SDN:R14::T000058", + "pav:version": "2", + "skos:notation": "SDN:R14::T000058", + "skos:altLabel": "58", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TimeFromStartUp_hours" + }, + "dc:identifier": "SDN:R14::T000058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time from start up. The time of the satellite message from which this was calculated should also be stored. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000528/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000528/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000528/2/" + }, + "dce:identifier": "SDN:R14::T000528", + "pav:version": "2", + "skos:notation": "SDN:R14::T000528", + "skos:altLabel": "528", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryFltnu_volts" + }, + "dc:identifier": "SDN:R14::T000528", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu sampled battery voltage. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000185/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000185/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000185/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Profile total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000185", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "185", + "skos:notation": "SDN:R14::T000185", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000185", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000185/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000301/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000301/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000301/2/" + }, + "dce:identifier": "SDN:R14::T000301", + "pav:version": "2", + "skos:notation": "SDN:R14::T000301", + "skos:altLabel": "301", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_PistonFullyExtendedBeforeSurfaceDetectionAlgorithmTerminated_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000301", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston fully extended before surface detection algorithm terminated (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000487/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000487/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000487/2/" + }, + "dce:identifier": "SDN:R14::T000487", + "pav:version": "2", + "skos:notation": "SDN:R14::T000487", + "skos:altLabel": "487", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_TUR3SampleFrequencyDuringPark_hours" + }, + "dc:identifier": "SDN:R14::T000487", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 drift acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000284/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000284/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000284/2/" + }, + "dce:identifier": "SDN:R14::T000284", + "pav:version": "2", + "skos:notation": "SDN:R14::T000284", + "skos:altLabel": "284", + "dc:date": "2025-12-11 11:04:39.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuPowerDownFailed_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000284", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu : Power down failed (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000433/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000433/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000433/2/" + }, + "dce:identifier": "SDN:R14::T000433", + "pav:version": "2", + "skos:notation": "SDN:R14::T000433", + "skos:altLabel": "433", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumParkEnd_inHg" + }, + "dc:identifier": "SDN:R14::T000433", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal Vacuum at end of park, before descent to profile depth. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000121/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000121/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000121/2/" + }, + "dce:identifier": "SDN:R14::T000121", + "pav:version": "2", + "skos:notation": "SDN:R14::T000121", + "skos:altLabel": "121", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RepositionsDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000121", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of times the float readjusts its buoyancy during park phase - using either the pump or EV. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000479/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000479/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000479/2/" + }, + "dce:identifier": "SDN:R14::T000479", + "pav:version": "2", + "skos:notation": "SDN:R14::T000479", + "skos:altLabel": "479", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_Settling1_seconds" + }, + "dc:identifier": "SDN:R14::T000479", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_Settling1. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000169/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000169/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000169/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Deep internal counter for ascending profile measurements of . Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000169", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesDeepInternalCounter_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "169", + "skos:notation": "SDN:R14::T000169", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000169", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000169/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000447/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000447/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000447/2/" + }, + "dce:identifier": "SDN:R14::T000447", + "pav:version": "2", + "skos:notation": "SDN:R14::T000447", + "skos:altLabel": "447", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_Ascent2000DB_seconds" + }, + "dc:identifier": "SDN:R14::T000447", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_Ascent2000DB. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000234/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000234/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000234/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Park measurements - Drift absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000234", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamplesAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "234", + "skos:notation": "SDN:R14::T000234", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000234", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000234/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200556/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200556/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200556/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T200556", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "556.2", + "skos:notation": "SDN:R14::T200556", + "pav:version": "3", + "dce:identifier": "SDN:R14::T200556", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200556/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000137/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000137/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000137/2/" + }, + "dce:identifier": "SDN:R14::T000137", + "pav:version": "2", + "skos:notation": "SDN:R14::T000137", + "skos:altLabel": "137", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples4thBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000412/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000412/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000412/2/" + }, + "dce:identifier": "SDN:R14::T000412", + "pav:version": "2", + "skos:notation": "SDN:R14::T000412", + "skos:altLabel": "412", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ChangeInFirstSeek_COUNT" + }, + "dc:identifier": "SDN:R14::T000412", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure Change during first seek at the park depth (IDG Var=PSK). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000072/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000072/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000072/2/" + }, + "dce:identifier": "SDN:R14::T000072", + "pav:version": "2", + "skos:notation": "SDN:R14::T000072", + "skos:altLabel": "72", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_AscentInitiationFromDownTimeExpiryOffset_minutes" + }, + "dc:identifier": "SDN:R14::T000072", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profile initiation time 2s complement signed integer (positive values - profile initiated after down time expired, negative values - profile initiated before down time expired). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000105/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000105/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000105/2/" + }, + "dce:identifier": "SDN:R14::T000105", + "pav:version": "2", + "skos:notation": "SDN:R14::T000105", + "skos:altLabel": "105", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_GPSResets_COUNT" + }, + "dc:identifier": "SDN:R14::T000105", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Power Resets GPS. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000040/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000040/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000040/2/" + }, + "dce:identifier": "SDN:R14::T000040", + "pav:version": "2", + "skos:notation": "SDN:R14::T000040", + "skos:altLabel": "40", + "dc:date": "2025-12-11 11:04:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeReset_1dBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile.This is a relative offset and no further correction is possible. Autocorrected. Autocorrecting so no adjustment in either RT or DM possible. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000395/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000395/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000395/2/" + }, + "dce:identifier": "SDN:R14::T000395", + "pav:version": "2", + "skos:notation": "SDN:R14::T000395", + "skos:altLabel": "395", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MiddleDeepBoundaryAscent_dbar" + }, + "dc:identifier": "SDN:R14::T000395", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Boundary pressure between middle/deep areas at ascent. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000544/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000544/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000544/2/" + }, + "dce:identifier": "SDN:R14::T000544", + "pav:version": "2", + "skos:notation": "SDN:R14::T000544", + "skos:altLabel": "544", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatterySurfaceNoLoad_volts" + }, + "dc:identifier": "SDN:R14::T000544", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage during inactive surface phase. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000042/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000042/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000042/2/" + }, + "dce:identifier": "SDN:R14::T000042", + "pav:version": "2", + "skos:notation": "SDN:R14::T000042", + "skos:altLabel": "42", + "dc:date": "2025-12-11 11:05:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetAfterReset_1cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure offset measured after the pressure correction has been applied. This is a relative offset and no further correction is required. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000107/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000107/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000107/2/" + }, + "dce:identifier": "SDN:R14::T000107", + "pav:version": "2", + "skos:notation": "SDN:R14::T000107", + "skos:altLabel": "107", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_HydraulicRecords_COUNT" + }, + "dc:identifier": "SDN:R14::T000107", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of hydraulic (pump or valve) actions performed during the cycle. Due to transmission limitations some of them may not be transmitted (in the NUMBER_HydraulicPackets_COUNT transmitted packets). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000032/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000032/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000032/2/" + }, + "dce:identifier": "SDN:R14::T000032", + "pav:version": "2", + "skos:notation": "SDN:R14::T000032", + "skos:altLabel": "32", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetNotTruncatedPlus5dbar_dbar" + }, + "dc:identifier": "SDN:R14::T000032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset with 5dbar added. Not autocorrected. Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900032/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900032/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900032/2/" + }, + "dce:identifier": "SDN:R14::T900032", + "pav:version": "2", + "skos:notation": "SDN:R14::T900032", + "skos:altLabel": "900032", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_ParkMaximum_degC" + }, + "dc:identifier": "SDN:R14::T900032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum temperature during park phase. MC minus 2 or 298. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000056/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000056/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000056/2/" + }, + "dce:identifier": "SDN:R14::T000056", + "pav:version": "2", + "skos:notation": "SDN:R14::T000056", + "skos:altLabel": "56", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EndDescentProfile_hours" + }, + "dc:identifier": "SDN:R14::T000056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when descent profile ends. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250 assuming descending profile ends with a park phase otherwise choose the appropriate timing variable. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000174/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000174/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000174/2/" + }, + "dce:identifier": "SDN:R14::T000174", + "pav:version": "2", + "skos:notation": "SDN:R14::T000174", + "skos:altLabel": "174", + "dc:date": "2025-12-11 11:04:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingProfileReductionUpperPart_COUNT" + }, + "dc:identifier": "SDN:R14::T000174", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of slices in shallow zone for ascending profile reduction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200554/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200554/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200554/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T200554", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "554.2", + "skos:notation": "SDN:R14::T200554", + "pav:version": "3", + "dce:identifier": "SDN:R14::T200554", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200554/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000239/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000239/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000239/2/" + }, + "dce:identifier": "SDN:R14::T000239", + "pav:version": "2", + "skos:notation": "SDN:R14::T000239", + "skos:altLabel": "239", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TemporaryCycleIdentification_COUNT" + }, + "dc:identifier": "SDN:R14::T000239", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Temporary - used to identify the recalculated Apex tech_cycle_data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000571/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000571/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000571/2/" + }, + "dce:identifier": "SDN:R14::T000571", + "pav:version": "2", + "skos:notation": "SDN:R14::T000571", + "skos:altLabel": "571", + "dc:date": "2025-12-11 11:05:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_SUNAAPFSupplyCurrent_mA" + }, + "dc:identifier": "SDN:R14::T000571", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Current measured inside SUNA via ADC. The current can be monitored to ascertain that all components are operating. A sudden drop or increase would indicate the failure of a system component. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000333/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000333/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000333/2/" + }, + "dce:identifier": "SDN:R14::T000333", + "pav:version": "2", + "skos:notation": "SDN:R14::T000333", + "skos:altLabel": "333", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusEndDescentToProfile_NUMBER" + }, + "dc:identifier": "SDN:R14::T000333", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the end date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200112/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200112/2/" + }, + "dce:identifier": "SDN:R14::T200112", + "pav:version": "2", + "skos:notation": "SDN:R14::T200112", + "skos:altLabel": "112.2", + "dc:date": "2025-12-11 11:04:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_HydraulicPackets_COUNT" + }, + "dc:identifier": "SDN:R14::T200112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of hydraulic packets used to transmit hydraulic (pump or valve) actions performed during the cycle. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000018/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000018/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000018/2/" + }, + "dce:identifier": "SDN:R14::T000018", + "pav:version": "2", + "skos:notation": "SDN:R14::T000018", + "skos:altLabel": "18", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "BACKSCATTERING_MeanBeforeAscent_m^-1/sr" + }, + "dc:identifier": "SDN:R14::T000018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[m^-1/sr]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000302/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000302/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000302/2/" + }, + "dce:identifier": "SDN:R14::T000302", + "pav:version": "2", + "skos:notation": "SDN:R14::T000302", + "skos:altLabel": "302", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_PistonMotorRunning_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000302", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the piston motor is running (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000465/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000465/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000465/2/" + }, + "dce:identifier": "SDN:R14::T000465", + "pav:version": "2", + "skos:notation": "SDN:R14::T000465", + "skos:altLabel": "465", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_MotorDriveDuringAscent_minutes" + }, + "dc:identifier": "SDN:R14::T000465", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_MotorDriveDuringAscent. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900016/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900016/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900016/2/" + }, + "dce:identifier": "SDN:R14::T900016", + "pav:version": "2", + "skos:notation": "SDN:R14::T900016", + "skos:altLabel": "900016", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_Grounded_dbar" + }, + "dc:identifier": "SDN:R14::T900016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Grounded pressure if the float hit bottom. MC901 references grounding information. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000318/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000318/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000318/2/" + }, + "dce:identifier": "SDN:R14::T000318", + "pav:version": "2", + "skos:notation": "SDN:R14::T000318", + "skos:altLabel": "318", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PExeption_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000318", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : P exception (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600488/2/" + }, + "dce:identifier": "SDN:R14::T600488", + "pav:version": "2", + "skos:notation": "SDN:R14::T600488", + "skos:altLabel": "488.6", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredDuringDescentToPark_cm^3" + }, + "dc:identifier": "SDN:R14::T600488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume transferred from the external bladder during the descent to park with multiparking mode park# (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. Needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[cm^3];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000253/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000253/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000253/2/" + }, + "dce:identifier": "SDN:R14::T000253", + "pav:version": "2", + "skos:notation": "SDN:R14::T000253", + "skos:altLabel": "253", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_CTDError_COUNT" + }, + "dc:identifier": "SDN:R14::T000253", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD error count. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000555/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000555/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000555/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by in the depth zone # during the ascent from the profile depth to the surface. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna];Z=[1..5]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000555", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamplesDepthZone_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "555", + "skos:notation": "SDN:R14::T000555", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000555/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100118/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100118/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100118/2/" + }, + "dce:identifier": "SDN:R14::T100118", + "pav:version": "2", + "skos:notation": "SDN:R14::T100118", + "skos:altLabel": "118.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T100118", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions while at park in multiparking mode # depth. Needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[COUNT];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000285/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000285/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000285/2/" + }, + "dce:identifier": "SDN:R14::T000285", + "pav:version": "2", + "skos:notation": "SDN:R14::T000285", + "skos:altLabel": "285", + "dc:date": "2025-12-11 11:04:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuPowerUpFailed_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000285", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu : Power up failed (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000221/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000221/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000221/2/" + }, + "dce:identifier": "SDN:R14::T000221", + "pav:version": "2", + "skos:notation": "SDN:R14::T000221", + "skos:altLabel": "221", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesReceivedOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000221", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames received on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000245/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000245/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000245/2/" + }, + "dce:identifier": "SDN:R14::T000245", + "pav:version": "2", + "skos:notation": "SDN:R14::T000245", + "skos:altLabel": "245", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesTechnicalOk_COUNT" + }, + "dc:identifier": "SDN:R14::T000245", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - Technical OK. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400520/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400520/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400520/2/" + }, + "dce:identifier": "SDN:R14::T400520", + "pav:version": "2", + "skos:notation": "SDN:R14::T400520", + "skos:altLabel": "520.4", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery7VStartAscentToSurface_volts" + }, + "dc:identifier": "SDN:R14::T400520", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 7V system when float starts ascending to surface. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000180/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000180/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000180/2/" + }, + "dce:identifier": "SDN:R14::T000180", + "pav:version": "2", + "skos:notation": "SDN:R14::T000180", + "skos:altLabel": "180", + "dc:date": "2025-12-11 11:04:36.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingProfileReductionUpperPart_COUNT" + }, + "dc:identifier": "SDN:R14::T000180", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of slices in shallow zone for descending profile reduction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000523/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000523/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000523/2/" + }, + "dce:identifier": "SDN:R14::T000523", + "pav:version": "2", + "skos:notation": "SDN:R14::T000523", + "skos:altLabel": "523", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryCPUSurface_volts" + }, + "dc:identifier": "SDN:R14::T000523", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface CPU battery voltage. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000444/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000444/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000444/2/" + }, + "dce:identifier": "SDN:R14::T000444", + "pav:version": "2", + "skos:notation": "SDN:R14::T000444", + "skos:altLabel": "444", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_AirPumpOn_seconds" + }, + "dc:identifier": "SDN:R14::T000444", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Air pump on time. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000509/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000509/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000509/2/" + }, + "dce:identifier": "SDN:R14::T000509", + "pav:version": "2", + "skos:notation": "SDN:R14::T000509", + "skos:altLabel": "509", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_MotorAtEndOfAscent_mA" + }, + "dc:identifier": "SDN:R14::T000509", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Motor current measured at the end of the ascent phase. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000269/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000269/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000269/2/" + }, + "dce:identifier": "SDN:R14::T000269", + "pav:version": "2", + "skos:notation": "SDN:R14::T000269", + "skos:altLabel": "269", + "dc:date": "2025-12-11 11:04:38.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_TimeMotorOut_bit" + }, + "dc:identifier": "SDN:R14::T000269", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the status of the time motor out. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000064/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000064/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000064/2/" + }, + "dce:identifier": "SDN:R14::T000064", + "pav:version": "2", + "skos:notation": "SDN:R14::T000064", + "skos:altLabel": "64", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_InitialStabilizationDuringDescentToPark_hours" + }, + "dc:identifier": "SDN:R14::T000064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when first stabilization appears during descent to park. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100123/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100123/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100123/2/" + }, + "dce:identifier": "SDN:R14::T100123", + "pav:version": "2", + "skos:notation": "SDN:R14::T100123", + "skos:altLabel": "123.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T100123", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions during park with multiparking mode # phase. Needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[COUNT];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000129/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000129/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000129/2/" + }, + "dce:identifier": "SDN:R14::T000129", + "pav:version": "2", + "skos:notation": "SDN:R14::T000129", + "skos:altLabel": "129", + "dc:date": "2025-12-11 11:05:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorActionsDuringDescentToPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000129", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of motor actions between surface and parking depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000172/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000172/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000172/2/" + }, + "dce:identifier": "SDN:R14::T000172", + "pav:version": "2", + "skos:notation": "SDN:R14::T000172", + "skos:altLabel": "172", + "dc:date": "2025-12-11 11:04:36.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingProfileReductionLowerPart_COUNT" + }, + "dc:identifier": "SDN:R14::T000172", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction Number of slices in deep zone. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000223/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000223/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000223/2/" + }, + "dce:identifier": "SDN:R14::T000223", + "pav:version": "2", + "skos:notation": "SDN:R14::T000223", + "skos:altLabel": "223", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesRecombinedOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000223", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames recombined on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000539/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000539/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000539/2/" + }, + "dce:identifier": "SDN:R14::T000539", + "pav:version": "2", + "skos:notation": "SDN:R14::T000539", + "skos:altLabel": "539", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryPumpStartProfile_volts" + }, + "dc:identifier": "SDN:R14::T000539", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pump battery voltage at depth. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000196/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000196/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000196/2/" + }, + "dce:identifier": "SDN:R14::T000196", + "pav:version": "2", + "skos:notation": "SDN:R14::T000196", + "skos:altLabel": "196", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PRESSamplesDuringDescentToProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pressure samples collected after park, during descent to the profile depth - see PRES_1HourIntoDescentToProfile_dbar for the data collected. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000139/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000139/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000139/2/" + }, + "dce:identifier": "SDN:R14::T000139", + "pav:version": "2", + "skos:notation": "SDN:R14::T000139", + "skos:altLabel": "139", + "dc:date": "2025-12-11 11:05:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples6thBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000474/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000474/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000474/2/" + }, + "dce:identifier": "SDN:R14::T000474", + "pav:version": "2", + "skos:notation": "SDN:R14::T000474", + "skos:altLabel": "474", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpMotor_seconds" + }, + "dc:identifier": "SDN:R14::T000474", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_PumpMotor. Units could be COUNT or seconds. Pump motor time=COUNT multiplied by 2 for seconds. Template_Values:{unit:[COUNT, days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000557/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000557/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000557/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by in the depth zone # during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna];Z=[1..5]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000557", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentSamplesDepthZone_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "557", + "skos:notation": "SDN:R14::T000557", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000557", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000557/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000140/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000140/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000140/2/" + }, + "dce:identifier": "SDN:R14::T000140", + "pav:version": "2", + "skos:notation": "SDN:R14::T000140", + "skos:altLabel": "140", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples7thBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000229/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000229/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000229/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct optique frames emitted on ascending profile - Profile 3. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000229", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnAscendingProfile3_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "229", + "skos:notation": "SDN:R14::T000229", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000229", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000229/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000507/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000507/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000507/2/" + }, + "dce:identifier": "SDN:R14::T000507", + "pav:version": "2", + "skos:notation": "SDN:R14::T000507", + "skos:altLabel": "507", + "dc:date": "2025-12-11 11:05:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatterySurfaceAirPumpOn_mA" + }, + "dc:identifier": "SDN:R14::T000507", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery Current measured at the surface with the air pump running (6 seconds). Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000164/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000164/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000164/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Shallow relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000164", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesShallowRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "164", + "skos:notation": "SDN:R14::T000164", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000164", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000164/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000442/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000442/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000442/2/" + }, + "dce:identifier": "SDN:R14::T000442", + "pav:version": "2", + "skos:notation": "SDN:R14::T000442", + "skos:altLabel": "442", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "STATUS_LimitSwitchINAtSurfaceStartXmit_NUMBER" + }, + "dc:identifier": "SDN:R14::T000442", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Binary reporting of piston position (1=IN, 0=OUT, IDG Var=LIMsw). Not the same LIMsw as in Cy0. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000290/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000290/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:40.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000290/2/" + }, + "dce:identifier": "SDN:R14::T000290", + "pav:version": "2", + "skos:notation": "SDN:R14::T000290", + "skos:altLabel": "290", + "dc:date": "2025-12-11 11:04:40.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Grounded_NUMBER" + }, + "dc:identifier": "SDN:R14::T000290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Grounded flag , diagnostic bit (if unit = LOGICAL) or number of profiles during which the float grounded (if unit=NUMBER). Template_Values:{unit:[LOGICAL, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000355/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000355/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000355/2/" + }, + "dce:identifier": "SDN:R14::T000355", + "pav:version": "2", + "skos:notation": "SDN:R14::T000355", + "skos:altLabel": "355", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonStorage_COUNT" + }, + "dc:identifier": "SDN:R14::T000355", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "POSITION_PistonStorage. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000002/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000002/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000002/2/" + }, + "dce:identifier": "SDN:R14::T000002", + "pav:version": "2", + "skos:notation": "SDN:R14::T000002", + "skos:altLabel": "2", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_GreyListTEMP_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Y=YES, N=NO or field is absent. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000187/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000187/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000187/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Depth absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000187", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesDeepAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "187", + "skos:notation": "SDN:R14::T000187", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000187", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000187/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000410/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000410/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000410/2/" + }, + "dce:identifier": "SDN:R14::T000410", + "pav:version": "2", + "skos:notation": "SDN:R14::T000410", + "skos:altLabel": "410", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_TUR3ProfileReductionSeparation_dbar" + }, + "dc:identifier": "SDN:R14::T000410", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 profile reduction Surface / Bottom pressure threshold - PRSEP. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100520/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100520/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100520/2/" + }, + "dce:identifier": "SDN:R14::T100520", + "pav:version": "2", + "skos:notation": "SDN:R14::T100520", + "skos:altLabel": "520.1", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery14VStartDescentToPark_volts" + }, + "dc:identifier": "SDN:R14::T100520", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 14V system when float starts descending to park. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000514/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000514/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000514/2/" + }, + "dce:identifier": "SDN:R14::T000514", + "pav:version": "2", + "skos:notation": "SDN:R14::T000514", + "skos:altLabel": "514", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery_volts" + }, + "dc:identifier": "SDN:R14::T000514", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage when battery capacity is unknown. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000156/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000156/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000156/2/" + }, + "dce:identifier": "SDN:R14::T000156", + "pav:version": "2", + "skos:notation": "SDN:R14::T000156", + "skos:altLabel": "156", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningMessageRejected_COUNT" + }, + "dc:identifier": "SDN:R14::T000156", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Rejected. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000434/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000434/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:57.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000434/2/" + }, + "dce:identifier": "SDN:R14::T000434", + "pav:version": "2", + "skos:notation": "SDN:R14::T000434", + "skos:altLabel": "434", + "dc:date": "2025-12-11 11:04:57.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumProfileStart_mbar" + }, + "dc:identifier": "SDN:R14::T000434", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal tube pressure in profile depth. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000458/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000458/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000458/2/" + }, + "dce:identifier": "SDN:R14::T000458", + "pav:version": "2", + "skos:notation": "SDN:R14::T000458", + "skos:altLabel": "458", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_FromStartOfMissionToEndFirstProfile_seconds" + }, + "dc:identifier": "SDN:R14::T000458", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time from start to end of the first profile. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500488/2/" + }, + "dce:identifier": "SDN:R14::T500488", + "pav:version": "2", + "skos:notation": "SDN:R14::T500488", + "skos:altLabel": "488.5", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredDuringAscentToSurface_cm^3" + }, + "dc:identifier": "SDN:R14::T500488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume transferred to the external bladder during the ascent to surface This is the oil volume tranferred during the NUMBER_PumpActionsDuringAscentToSurface_COUNT pump actions (Id 116). Reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900026/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900026/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:55.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900026/2/" + }, + "dce:identifier": "SDN:R14::T900026", + "pav:version": "2", + "skos:notation": "SDN:R14::T900026", + "skos:altLabel": "900026", + "dc:date": "2025-12-11 11:04:55.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ParkMinimum_dbar" + }, + "dc:identifier": "SDN:R14::T900026", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum pressure during park phase. MC minus 3 or 297. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000334/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000334/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000334/2/" + }, + "dce:identifier": "SDN:R14::T000334", + "pav:version": "2", + "skos:notation": "SDN:R14::T000334", + "skos:altLabel": "334", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusHistoryQCFailed_hex" + }, + "dc:identifier": "SDN:R14::T000334", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag History Failed (from profile file). Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000497/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000497/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000497/2/" + }, + "dce:identifier": "SDN:R14::T000497", + "pav:version": "2", + "skos:notation": "SDN:R14::T000497", + "skos:altLabel": "497", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryPark_mA" + }, + "dc:identifier": "SDN:R14::T000497", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Measured during park-park phase and is averaged. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000426/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000426/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:57.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000426/2/" + }, + "dce:identifier": "SDN:R14::T000426", + "pav:version": "2", + "skos:notation": "SDN:R14::T000426", + "skos:altLabel": "426", + "dc:date": "2025-12-11 11:04:57.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAtEndSurface_inHg" + }, + "dc:identifier": "SDN:R14::T000426", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Air pressure inside of SOLO at end of surface time (IDG Var=ATE). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000166/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000166/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000166/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Profile total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000166", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "166", + "skos:notation": "SDN:R14::T000166", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000166", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000166/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000385/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000385/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000385/2/" + }, + "dce:identifier": "SDN:R14::T000385", + "pav:version": "2", + "skos:notation": "SDN:R14::T000385", + "skos:altLabel": "385", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DOXYProfileReductionSeparation_dbar" + }, + "dc:identifier": "SDN:R14::T000385", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY profile reduction Shallow / Deep pressure threshold - Surface / Bottom pressure threshold PRSEP. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400278/2/" + }, + "dce:identifier": "SDN:R14::T400278", + "pav:version": "2", + "skos:notation": "SDN:R14::T400278", + "skos:altLabel": "278.4", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDDownloadError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T400278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is an error on CTD download command. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200271/2/" + }, + "dce:identifier": "SDN:R14::T200271", + "pav:version": "2", + "skos:notation": "SDN:R14::T200271", + "skos:altLabel": "271.2", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterNonresponsive_bit" + }, + "dc:identifier": "SDN:R14::T200271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Is the Argos transmitter non responsive. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000466/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000466/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000466/2/" + }, + "dce:identifier": "SDN:R14::T000466", + "pav:version": "2", + "skos:notation": "SDN:R14::T000466", + "skos:altLabel": "466", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_OptiqueSampleFrequencyDuringDescent_seconds" + }, + "dc:identifier": "SDN:R14::T000466", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optique descent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300112/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300112/2/" + }, + "dce:identifier": "SDN:R14::T300112", + "pav:version": "2", + "skos:notation": "SDN:R14::T300112", + "skos:altLabel": "112.3", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_NearSurfaceSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T300112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near surface measurements (Internal counter). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000113/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000113/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000113/2/" + }, + "dce:identifier": "SDN:R14::T000113", + "pav:version": "2", + "skos:notation": "SDN:R14::T000113", + "skos:altLabel": "113", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MixedLayerSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000113", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of CTD samples taken in the mixed layer. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900005/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900005/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:56.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900005/2/" + }, + "dce:identifier": "SDN:R14::T900005", + "pav:version": "2", + "skos:notation": "SDN:R14::T900005", + "skos:altLabel": "900005", + "dc:date": "2025-12-11 11:04:56.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FirstMessageTime_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T900005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Time when the first message is sent. Concerns deep Ninja. Refers to exactly the same time as first message received by satellite (MC=702). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000029/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000029/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000029/2/" + }, + "dce:identifier": "SDN:R14::T000029", + "pav:version": "2", + "skos:notation": "SDN:R14::T000029", + "skos:altLabel": "29", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetTruncated_dbar" + }, + "dc:identifier": "SDN:R14::T000029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset, negative offsets truncated to 0. Not autocorrected. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. Unlike the previous name, it DOES NOT have 5db added and so this does not need to be removed before use. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000276/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000276/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000276/2/" + }, + "dce:identifier": "SDN:R14::T000276", + "pav:version": "2", + "skos:notation": "SDN:R14::T000276", + "skos:altLabel": "276", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_AscentTimeOutExpired_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000276", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent time out expired (1/Yes or 0/No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000123/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000123/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000123/2/" + }, + "dce:identifier": "SDN:R14::T000123", + "pav:version": "2", + "skos:notation": "SDN:R14::T000123", + "skos:altLabel": "123", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000123", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions during park phase. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000043/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000043/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000043/2/" + }, + "dce:identifier": "SDN:R14::T000043", + "pav:version": "2", + "skos:notation": "SDN:R14::T000043", + "skos:altLabel": "43", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeReset_5cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.5db resolution - may be used for other floats as well. This is a relative offset and no further correction is required. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300104/2/" + }, + "dce:identifier": "SDN:R14::T300104", + "pav:version": "2", + "skos:notation": "SDN:R14::T300104", + "skos:altLabel": "104.3", + "dc:date": "2025-12-11 11:04:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_NearSurfaceIridiumPackets_COUNT" + }, + "dc:identifier": "SDN:R14::T300104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit sensor data collected during the near surface measurement phase. Internal counter measured by the float. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000096/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000096/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000096/2/" + }, + "dce:identifier": "SDN:R14::T000096", + "pav:version": "2", + "skos:notation": "SDN:R14::T000096", + "skos:altLabel": "96", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkAndProfileCycleCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000096", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indication of how often the float does a profile deeper than its park depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000345/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000345/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000345/2/" + }, + "dce:identifier": "SDN:R14::T000345", + "pav:version": "2", + "skos:notation": "SDN:R14::T000345", + "skos:altLabel": "345", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "REFERENCE_BlueFlntuParkEnd_COUNT" + }, + "dc:identifier": "SDN:R14::T000345", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu BlueReference at end of park, before descent to profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000280/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000280/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000280/2/" + }, + "dce:identifier": "SDN:R14::T000280", + "pav:version": "2", + "skos:notation": "SDN:R14::T000280", + "skos:altLabel": "280", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_DataStateIndicator_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000280", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data state indicator - again, duplicated from the profile file. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000369/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000369/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000369/2/" + }, + "dce:identifier": "SDN:R14::T000369", + "pav:version": "2", + "skos:notation": "SDN:R14::T000369", + "skos:altLabel": "369", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscendingProfileReductionSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000369", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction Surface slices thickness - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000255/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000255/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000255/2/" + }, + "dce:identifier": "SDN:R14::T000255", + "pav:version": "2", + "skos:notation": "SDN:R14::T000255", + "skos:altLabel": "255", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MiddleSamplesDuringAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T000255", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent: number of samples in middle area. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000404/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000404/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000404/2/" + }, + "dce:identifier": "SDN:R14::T000404", + "pav:version": "2", + "skos:notation": "SDN:R14::T000404", + "skos:altLabel": "404", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ShallowDeepBoundaryAscent_dbar" + }, + "dc:identifier": "SDN:R14::T000404", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Boundary pressure between shallow/deep areas at ascent. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000171/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000171/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000171/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Internal count. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000171", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesInternal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "171", + "skos:notation": "SDN:R14::T000171", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000171", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000171/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900035/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900035/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900035/2/" + }, + "dce:identifier": "SDN:R14::T900035", + "pav:version": "2", + "skos:notation": "SDN:R14::T900035", + "skos:altLabel": "900035", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_ParkStandardDeviation_degC" + }, + "dc:identifier": "SDN:R14::T900035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Standard deviation of temperature during the park phase. MC minus 6 or 294. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000236/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000236/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000236/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Park measurements - Drift relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000236", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamplesRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "236", + "skos:notation": "SDN:R14::T000236", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000236", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000236/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000059/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000059/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000059/2/" + }, + "dce:identifier": "SDN:R14::T000059", + "pav:version": "2", + "skos:notation": "SDN:R14::T000059", + "skos:altLabel": "59", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_RealTimeDrift_seconds" + }, + "dc:identifier": "SDN:R14::T000059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The difference between float Real Time Clock (RTC) and gps time representing clock drift. Is also represented in the traj files. We have CLOCK_OFFSET which is defined as: Decimal part of day that float clock has drifted. Float clock drift is defined as Float time (provided by the inboard Real Time Clock (RTC) of the float) ? UT time. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100287/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100287/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100287/2/" + }, + "dce:identifier": "SDN:R14::T100287", + "pav:version": "2", + "skos:notation": "SDN:R14::T100287", + "skos:altLabel": "287.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlbbStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T100287", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the FLBB (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200557/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200557/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200557/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the surface phase. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T200557", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_InAirSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "557.2", + "skos:notation": "SDN:R14::T200557", + "pav:version": "3", + "dce:identifier": "SDN:R14::T200557", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200557/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000550/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000550/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000550/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sensor status (1 = OK, 0 = not OK). Template_Values:{unit:[LOGICAL, hex, NUMBER];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000550", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Status_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "550", + "skos:notation": "SDN:R14::T000550", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000550", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000550/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900003/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900003/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900003/2/" + }, + "dce:identifier": "SDN:R14::T900003", + "pav:version": "2", + "skos:notation": "SDN:R14::T900003", + "skos:altLabel": "900003", + "dc:date": "2025-12-11 11:04:51.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_3rdSettlingBeforePark_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T900003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Time when float was settled at the parking depth for the 3rd time. MC189 - buoyancy action. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000387/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000387/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000387/2/" + }, + "dce:identifier": "SDN:R14::T000387", + "pav:version": "2", + "skos:notation": "SDN:R14::T000387", + "skos:altLabel": "387", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ForFLNTUSurface_dbar" + }, + "dc:identifier": "SDN:R14::T000387", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure used for Flntu at surface. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000027/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000027/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000027/2/" + }, + "dce:identifier": "SDN:R14::T000027", + "pav:version": "2", + "skos:notation": "SDN:R14::T000027", + "skos:altLabel": "27", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetTruncatedPlus5dbar_dbar" + }, + "dc:identifier": "SDN:R14::T000027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset, negative offsets truncated to 0, 5dbar added. Not autocorrected. Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900010/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900010/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:56.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900010/2/" + }, + "dce:identifier": "SDN:R14::T900010", + "pav:version": "2", + "skos:notation": "SDN:R14::T900010", + "skos:altLabel": "900010", + "dc:date": "2025-12-11 11:04:56.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentStartToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T900010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure taken at the end of piston retraction. JULD_DEEP_PARK_START and JULD with MC = 450. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000034/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000034/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000034/2/" + }, + "dce:identifier": "SDN:R14::T000034", + "pav:version": "2", + "skos:notation": "SDN:R14::T000034", + "skos:altLabel": "34", + "dc:date": "2025-12-11 11:04:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetCorrectedNotReset_1cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent but data is corrected on board the float. This is a cumulative offset but no further correction required. Autocorrected. Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000481/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000481/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000481/2/" + }, + "dce:identifier": "SDN:R14::T000481", + "pav:version": "2", + "skos:notation": "SDN:R14::T000481", + "skos:altLabel": "481", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SinceStartUp_seconds" + }, + "dc:identifier": "SDN:R14::T000481", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time since startup before deployment. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000546/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000546/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000546/2/" + }, + "dce:identifier": "SDN:R14::T000546", + "pav:version": "2", + "skos:notation": "SDN:R14::T000546", + "skos:altLabel": "546", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGETIME_IntegratedAirPumpVolume_voltseconds" + }, + "dc:identifier": "SDN:R14::T000546", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Integrated measure (volts * seconds) of the pumped air volume (VSAP of Apex floats). Template_Values:{unit:[voltseconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000542/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000542/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000542/2/" + }, + "dce:identifier": "SDN:R14::T000542", + "pav:version": "2", + "skos:notation": "SDN:R14::T000542", + "skos:altLabel": "542", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatterySBEPump_volts" + }, + "dc:identifier": "SDN:R14::T000542", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage when CTD is active . Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100105/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100105/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100105/2/" + }, + "dce:identifier": "SDN:R14::T100105", + "pav:version": "2", + "skos:notation": "SDN:R14::T100105", + "skos:altLabel": "105.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RetriesForGPSAcquisition_COUNT" + }, + "dc:identifier": "SDN:R14::T100105", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of times the GPS had to try to get a valid fix. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200260/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200260/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200260/2/" + }, + "dce:identifier": "SDN:R14::T200260", + "pav:version": "2", + "skos:notation": "SDN:R14::T200260", + "skos:altLabel": "260.2", + "dc:date": "2025-12-11 11:04:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileNearSurfaceTemperatureSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T200260", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The number of Near Surface Temperature monitoring PT samples (non-pumped PT). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000019/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000019/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000019/2/" + }, + "dce:identifier": "SDN:R14::T000019", + "pav:version": "2", + "skos:notation": "SDN:R14::T000019", + "skos:altLabel": "19", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CDOM_MeanBeforeAscent_ppb" + }, + "dc:identifier": "SDN:R14::T000019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[ppb]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000003/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000003/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000003/2/" + }, + "dce:identifier": "SDN:R14::T000003", + "pav:version": "2", + "skos:notation": "SDN:R14::T000003", + "skos:altLabel": "3", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SpeedMaximumCheck_NUMBER" + }, + "dc:identifier": "SDN:R14::T000003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "FLAG_SpeedMaximumCheck. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100407/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100407/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100407/2/" + }, + "dce:identifier": "SDN:R14::T100407", + "pav:version": "2", + "skos:notation": "SDN:R14::T100407", + "skos:altLabel": "407.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscentTimeOutExpired_dbar" + }, + "dc:identifier": "SDN:R14::T100407", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when ascending time out. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000232/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000232/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000232/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile optique measurements - Internal counter - Profile 3. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000232", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileMeasurementsProfile3_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "232", + "skos:notation": "SDN:R14::T000232", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000232", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000232/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000188/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000188/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000188/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Depth relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000188", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesDeepRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "188", + "skos:notation": "SDN:R14::T000188", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000188", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000188/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000450/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000450/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000450/2/" + }, + "dce:identifier": "SDN:R14::T000450", + "pav:version": "2", + "skos:notation": "SDN:R14::T000450", + "skos:altLabel": "450", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_ClockDrift_dsec/day" + }, + "dc:identifier": "SDN:R14::T000450", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_ClockDrift. Template_Values:{unit:[dsec/day]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200488/2/" + }, + "dce:identifier": "SDN:R14::T200488", + "pav:version": "2", + "skos:notation": "SDN:R14::T200488", + "skos:altLabel": "488.2", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredDuringDescentToPark_cm^3" + }, + "dc:identifier": "SDN:R14::T200488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume transferred from the external bladder during the descent to park (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions (Id 124). Reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900019/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900019/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900019/2/" + }, + "dce:identifier": "SDN:R14::T900019", + "pav:version": "2", + "skos:notation": "SDN:R14::T900019", + "skos:altLabel": "900019", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MaximumDescentToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T900019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum recorded pressure during descent, before stabilisation at profile pressure. MC minus 2. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000510/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000510/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000510/2/" + }, + "dce:identifier": "SDN:R14::T000510", + "pav:version": "2", + "skos:notation": "SDN:R14::T000510", + "skos:altLabel": "510", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_MotorOutToAscent_mA" + }, + "dc:identifier": "SDN:R14::T000510", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Motor current measured during the ascent phase. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000366/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000366/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:56.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000366/2/" + }, + "dce:identifier": "SDN:R14::T000366", + "pav:version": "2", + "skos:notation": "SDN:R14::T000366", + "skos:altLabel": "366", + "dc:date": "2025-12-11 11:04:56.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscendingProfileReductionETF_dbar" + }, + "dc:identifier": "SDN:R14::T000366", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000515/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000515/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000515/2/" + }, + "dce:identifier": "SDN:R14::T000515", + "pav:version": "2", + "skos:notation": "SDN:R14::T000515", + "skos:altLabel": "515", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery6V_volts" + }, + "dc:identifier": "SDN:R14::T000515", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 6v system. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000260/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000260/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000260/2/" + }, + "dce:identifier": "SDN:R14::T000260", + "pav:version": "2", + "skos:notation": "SDN:R14::T000260", + "skos:altLabel": "260", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TEMPSampleErrorShallowZoneDuringDescending_COUNT" + }, + "dc:identifier": "SDN:R14::T000260", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Error of temperature measurements in shallow zone during descent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000325/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000325/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000325/2/" + }, + "dce:identifier": "SDN:R14::T000325", + "pav:version": "2", + "skos:notation": "SDN:R14::T000325", + "skos:altLabel": "325", + "dc:date": "2025-12-11 11:04:43.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ResponseToPMeasurementFailedThePedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000325", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Response to P measurement failed the pedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000200/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000200/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000200/2/" + }, + "dce:identifier": "SDN:R14::T000200", + "pav:version": "2", + "skos:notation": "SDN:R14::T000200", + "skos:altLabel": "200", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentEntriesInGap_COUNT" + }, + "dc:identifier": "SDN:R14::T000200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent float control - number of entries in gap order. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000525/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000525/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000525/2/" + }, + "dce:identifier": "SDN:R14::T000525", + "pav:version": "2", + "skos:notation": "SDN:R14::T000525", + "skos:altLabel": "525", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryDescentToProfile_volts" + }, + "dc:identifier": "SDN:R14::T000525", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "VOLTAGE_BatteryDescentToProfile. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000558/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000558/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000558/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium messages used to transmit data collected during the drift at park depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000558", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkIridiumMessages_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "558", + "skos:notation": "SDN:R14::T000558", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000558", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000558/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100398/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100398/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100398/2/" + }, + "dce:identifier": "SDN:R14::T100398", + "pav:version": "2", + "skos:notation": "SDN:R14::T100398", + "skos:altLabel": "398.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MinimumDuringMaximumBuoyancy_dbar" + }, + "dc:identifier": "SDN:R14::T100398", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Shallowest presssure reached by a float when buoyancy is at maximum but it cannot reach the surface. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000493/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000493/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000493/2/" + }, + "dce:identifier": "SDN:R14::T000493", + "pav:version": "2", + "skos:notation": "SDN:R14::T000493", + "skos:altLabel": "493", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryOptics_COUNT" + }, + "dc:identifier": "SDN:R14::T000493", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current while the optial sensor is on. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900027/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900027/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900027/2/" + }, + "dce:identifier": "SDN:R14::T900027", + "pav:version": "2", + "skos:notation": "SDN:R14::T900027", + "skos:altLabel": "900027", + "dc:date": "2025-12-11 11:04:54.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ParkStandardDeviation_dbar" + }, + "dc:identifier": "SDN:R14::T900027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Standard deviation of pressure during the park phase. MC minus 6 or 294. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000224/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000224/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000224/2/" + }, + "dce:identifier": "SDN:R14::T000224", + "pav:version": "2", + "skos:notation": "SDN:R14::T000224", + "skos:altLabel": "224", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesRecombinedOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000224", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames recombined on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200104/2/" + }, + "dce:identifier": "SDN:R14::T200104", + "pav:version": "2", + "skos:notation": "SDN:R14::T200104", + "skos:altLabel": "104.2", + "dc:date": "2025-12-11 11:04:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_IridiumMessagesSentPreviousSession_COUNT" + }, + "dc:identifier": "SDN:R14::T200104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Incoming Iridium Messages Sent during previous session. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100492/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100492/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100492/2/" + }, + "dce:identifier": "SDN:R14::T100492", + "pav:version": "2", + "skos:notation": "SDN:R14::T100492", + "skos:altLabel": "492.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryFlbbParkEnd_mA" + }, + "dc:identifier": "SDN:R14::T100492", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current measured when Flbb sampled at end of park. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000080/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000080/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000080/2/" + }, + "dce:identifier": "SDN:R14::T000080", + "pav:version": "2", + "skos:notation": "SDN:R14::T000080", + "skos:altLabel": "80", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ReceptionStartDateTime_NUMBER" + }, + "dc:identifier": "SDN:R14::T000080", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the start date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000498/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000498/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000498/2/" + }, + "dce:identifier": "SDN:R14::T000498", + "pav:version": "2", + "skos:notation": "SDN:R14::T000498", + "skos:altLabel": "498", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryParkEnd_mA" + }, + "dc:identifier": "SDN:R14::T000498", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current measured at end of park, before descent to profile depth. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000526/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000526/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000526/2/" + }, + "dce:identifier": "SDN:R14::T000526", + "pav:version": "2", + "skos:notation": "SDN:R14::T000526", + "skos:altLabel": "526", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryExternalStartProfile_volts" + }, + "dc:identifier": "SDN:R14::T000526", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Voltage of the external battery at the profile depth. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000183/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000183/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000183/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Profile absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000183", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "183", + "skos:notation": "SDN:R14::T000183", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000183", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000183/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000145/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000145/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000145/2/" + }, + "dce:identifier": "SDN:R14::T000145", + "pav:version": "2", + "skos:notation": "SDN:R14::T000145", + "skos:altLabel": "145", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ShallowSamplesDuringDescent_COUNT" + }, + "dc:identifier": "SDN:R14::T000145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples collected in shallow area during descent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000461/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000461/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000461/2/" + }, + "dce:identifier": "SDN:R14::T000461", + "pav:version": "2", + "skos:notation": "SDN:R14::T000461", + "skos:altLabel": "461", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_IridiumGPSFix_seconds" + }, + "dc:identifier": "SDN:R14::T000461", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time required to obtain a GPS fix for a profile. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100571/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100571/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100571/2/" + }, + "dce:identifier": "SDN:R14::T100571", + "pav:version": "2", + "skos:notation": "SDN:R14::T100571", + "skos:altLabel": "571.1", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_OptodeSensorReset_COUNT" + }, + "dc:identifier": "SDN:R14::T100571", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of power resets of the DO sensor. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000216/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000216/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000216/2/" + }, + "dce:identifier": "SDN:R14::T000216", + "pav:version": "2", + "skos:notation": "SDN:R14::T000216", + "skos:altLabel": "216", + "dc:date": "2025-12-11 11:04:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000216", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000304/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000304/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000304/2/" + }, + "dce:identifier": "SDN:R14::T000304", + "pav:version": "2", + "skos:notation": "SDN:R14::T000304", + "skos:altLabel": "304", + "dc:date": "2025-12-11 11:04:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_PressureReachedZero_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000304", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether pressure has reached zero (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000151/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000151/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000151/2/" + }, + "dce:identifier": "SDN:R14::T000151", + "pav:version": "2", + "skos:notation": "SDN:R14::T000151", + "skos:altLabel": "151", + "dc:date": "2025-12-11 11:05:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClass3_COUNT" + }, + "dc:identifier": "SDN:R14::T000151", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class 3 - accuracy better than 250m radius. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100271/2/" + }, + "dce:identifier": "SDN:R14::T100271", + "pav:version": "2", + "skos:notation": "SDN:R14::T100271", + "skos:altLabel": "271.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterUnexpectedResponse_bit" + }, + "dc:identifier": "SDN:R14::T100271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there was an Argos transmitter unexpected response. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200126/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200126/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200126/2/" + }, + "dce:identifier": "SDN:R14::T200126", + "pav:version": "2", + "skos:notation": "SDN:R14::T200126", + "skos:altLabel": "126.2", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT" + }, + "dc:identifier": "SDN:R14::T200126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of solenoid valve actions at the surface until the crossing of the GAP threshold. These actions are performed after the NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT previous ones. See 126.1 and 126. NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000124/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000124/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000124/2/" + }, + "dce:identifier": "SDN:R14::T000124", + "pav:version": "2", + "skos:notation": "SDN:R14::T000124", + "skos:altLabel": "124", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringDescentToPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000124", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions between the crossing of the gap threshold and the end of descent at park pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000477/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000477/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000477/2/" + }, + "dce:identifier": "SDN:R14::T000477", + "pav:version": "2", + "skos:notation": "SDN:R14::T000477", + "skos:altLabel": "477", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SampleFrequencyDuringPark_seconds" + }, + "dc:identifier": "SDN:R14::T000477", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD park acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000371/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000371/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000371/2/" + }, + "dce:identifier": "SDN:R14::T000371", + "pav:version": "2", + "skos:notation": "SDN:R14::T000371", + "skos:altLabel": "371", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_CTDProfileReductionSeparation_dbar" + }, + "dc:identifier": "SDN:R14::T000371", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD profile reduction Shallow / Deep pressure threshold - PRSEP. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000208/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000208/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000208/2/" + }, + "dce:identifier": "SDN:R14::T000208", + "pav:version": "2", + "skos:notation": "SDN:R14::T000208", + "skos:altLabel": "208", + "dc:date": "2025-12-11 11:04:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FloatFramesReceivedOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000208", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Provor frames received on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000287/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000287/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:40.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000287/2/" + }, + "dce:identifier": "SDN:R14::T000287", + "pav:version": "2", + "skos:notation": "SDN:R14::T000287", + "skos:altLabel": "287", + "dc:date": "2025-12-11 11:04:40.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000287", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the FLNTU (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000143/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000143/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000143/2/" + }, + "dce:identifier": "SDN:R14::T000143", + "pav:version": "2", + "skos:notation": "SDN:R14::T000143", + "skos:altLabel": "143", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ShallowSamplesDuringAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T000143", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples collected in shallow area during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000436/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000436/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000436/2/" + }, + "dce:identifier": "SDN:R14::T000436", + "pav:version": "2", + "skos:notation": "SDN:R14::T000436", + "skos:altLabel": "436", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMPERATURE_InternalVacuumAtSurface_degC" + }, + "dc:identifier": "SDN:R14::T000436", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal tube temperature at the surface. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300278/2/" + }, + "dce:identifier": "SDN:R14::T300278", + "pav:version": "2", + "skos:notation": "SDN:R14::T300278", + "skos:altLabel": "278.3", + "dc:date": "2025-12-11 11:04:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDStopProfileError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T300278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is an error on CTD stop profile command. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000167/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000167/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000167/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Profile absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000167", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "167", + "skos:notation": "SDN:R14::T000167", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000167", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000167/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000530/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000530/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000530/2/" + }, + "dce:identifier": "SDN:R14::T000530", + "pav:version": "2", + "skos:notation": "SDN:R14::T000530", + "skos:altLabel": "530", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryInitialAtProfileDepth_volts" + }, + "dc:identifier": "SDN:R14::T000530", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Measured at initial pump extension completion. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000445/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000445/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000445/2/" + }, + "dce:identifier": "SDN:R14::T000445", + "pav:version": "2", + "skos:notation": "SDN:R14::T000445", + "skos:altLabel": "445", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_AirPumpOnIntegrated_seconds" + }, + "dc:identifier": "SDN:R14::T000445", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Air pumped integrated. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000111/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000111/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000111/2/" + }, + "dce:identifier": "SDN:R14::T000111", + "pav:version": "2", + "skos:notation": "SDN:R14::T000111", + "skos:altLabel": "111", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToParkEntriesInParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T000111", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent to park pressure: number of entries in margin around park pressure target - specifically, how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000256/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000256/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000256/2/" + }, + "dce:identifier": "SDN:R14::T000256", + "pav:version": "2", + "skos:notation": "SDN:R14::T000256", + "skos:altLabel": "256", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AirPumpPulsesToInflateBladder_COUNT" + }, + "dc:identifier": "SDN:R14::T000256", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of 6-second pulses of the air pump required to inflate the air bladder. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000135/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000135/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000135/2/" + }, + "dce:identifier": "SDN:R14::T000135", + "pav:version": "2", + "skos:notation": "SDN:R14::T000135", + "skos:altLabel": "135", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples2ndBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100245/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100245/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100245/2/" + }, + "dce:identifier": "SDN:R14::T100245", + "pav:version": "2", + "skos:notation": "SDN:R14::T100245", + "skos:altLabel": "245.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TelemetryRetransmission_COUNT" + }, + "dc:identifier": "SDN:R14::T100245", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of repeated transmissions of float data for each Argos message. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000413/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000413/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000413/2/" + }, + "dce:identifier": "SDN:R14::T000413", + "pav:version": "2", + "skos:notation": "SDN:R14::T000413", + "skos:altLabel": "413", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_WhenInWaterSensed_dbar" + }, + "dc:identifier": "SDN:R14::T000413", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure from P,T,S when in water sensed. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000070/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000070/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000070/2/" + }, + "dce:identifier": "SDN:R14::T000070", + "pav:version": "2", + "skos:notation": "SDN:R14::T000070", + "skos:altLabel": "70", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FloatDate_YYYYMMDD" + }, + "dc:identifier": "SDN:R14::T000070", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal float date. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000066/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000066/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000066/2/" + }, + "dce:identifier": "SDN:R14::T000066", + "pav:version": "2", + "skos:notation": "SDN:R14::T000066", + "skos:altLabel": "66", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_ValveActionsAtSurface_HHMM" + }, + "dc:identifier": "SDN:R14::T000066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The time when the float moves the valve to acquire additional buoyancy for surface drift. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200290/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200290/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200290/2/" + }, + "dce:identifier": "SDN:R14::T200290", + "pav:version": "2", + "skos:notation": "SDN:R14::T200290", + "skos:altLabel": "290.2", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SecondGroundingCyclePhase_NUMBER" + }, + "dc:identifier": "SDN:R14::T200290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Phase of the float life or cycle when the second grounding occurred. See the manual for phase definition - this will vary with float type. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000350/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000350/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000350/2/" + }, + "dce:identifier": "SDN:R14::T000350", + "pav:version": "2", + "skos:notation": "SDN:R14::T000350", + "skos:altLabel": "350", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonNow_COUNT" + }, + "dc:identifier": "SDN:R14::T000350", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "POSITION_PistonNow. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000237/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000237/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000237/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Park measurements - Drift total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000237", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamplesTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "237", + "skos:notation": "SDN:R14::T000237", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000237", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000237/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000159/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000159/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000159/2/" + }, + "dce:identifier": "SDN:R14::T000159", + "pav:version": "2", + "skos:notation": "SDN:R14::T000159", + "skos:altLabel": "159", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileSamplesLowResolution_COUNT" + }, + "dc:identifier": "SDN:R14::T000159", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of low resolution profile samples. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000415/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000415/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000415/2/" + }, + "dce:identifier": "SDN:R14::T000415", + "pav:version": "2", + "skos:notation": "SDN:R14::T000415", + "skos:altLabel": "415", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PSAL_WhenInWaterSensed_psu" + }, + "dc:identifier": "SDN:R14::T000415", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Salinity from P,T,S when in water sensed. Template_Values:{unit:[psu, mpsu]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000578/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000578/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000578/2/" + }, + "dce:identifier": "SDN:R14::T000578", + "pav:version": "2", + "skos:notation": "SDN:R14::T000578", + "skos:altLabel": "578", + "dc:date": "2025-12-11 11:05:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SubCycle_NUMBER" + }, + "dc:identifier": "SDN:R14::T000578", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NUMBER_SubCycle. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000103/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000103/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000103/2/" + }, + "dce:identifier": "SDN:R14::T000103", + "pav:version": "2", + "skos:notation": "SDN:R14::T000103", + "skos:altLabel": "103", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_IridiumResets_COUNT" + }, + "dc:identifier": "SDN:R14::T000103", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Power Resets iridium. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000396/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000396/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000396/2/" + }, + "dce:identifier": "SDN:R14::T000396", + "pav:version": "2", + "skos:notation": "SDN:R14::T000396", + "skos:altLabel": "396", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MinimumDepthBinWithValidData_dbar" + }, + "dc:identifier": "SDN:R14::T000396", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum depth bin with valid data according to the float. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000127/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000127/2/" + }, + "dce:identifier": "SDN:R14::T000127", + "pav:version": "2", + "skos:notation": "SDN:R14::T000127", + "skos:altLabel": "127", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringProfileDrift_COUNT" + }, + "dc:identifier": "SDN:R14::T000127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions while drifting at profile depth. The first one: NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900011/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900011/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900011/2/" + }, + "dce:identifier": "SDN:R14::T900011", + "pav:version": "2", + "skos:notation": "SDN:R14::T900011", + "skos:altLabel": "900011", + "dc:date": "2025-12-11 11:04:54.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentToParkEnd_dbar" + }, + "dc:identifier": "SDN:R14::T900011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure when the float reaches park depth but still goes through settling etc so not quite equivalent to ParkStart. JULD_DESCENT_END and JULD with MC=200. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000405/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000405/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000405/2/" + }, + "dce:identifier": "SDN:R14::T000405", + "pav:version": "2", + "skos:notation": "SDN:R14::T000405", + "skos:altLabel": "405", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ShallowDeepBoundaryDescent_dbar" + }, + "dc:identifier": "SDN:R14::T000405", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Boundary pressure between shallow/deep areas at descent. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000062/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000062/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000062/2/" + }, + "dce:identifier": "SDN:R14::T000062", + "pav:version": "2", + "skos:notation": "SDN:R14::T000062", + "skos:altLabel": "62", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_DateFirstParkSample_YYYYMMDD" + }, + "dc:identifier": "SDN:R14::T000062", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float internal clock date of the first park sample. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000035/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000035/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000035/2/" + }, + "dce:identifier": "SDN:R14::T000035", + "pav:version": "2", + "skos:notation": "SDN:R14::T000035", + "skos:altLabel": "35", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetCorrectedNotResetNegative_1dbarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent but data is corrected on board the float. This is a cumulative NEGATIVE offset (real offset * -1) but no further correction required. Autocorrected. Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000340/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000340/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000340/2/" + }, + "dce:identifier": "SDN:R14::T000340", + "pav:version": "2", + "skos:notation": "SDN:R14::T000340", + "skos:altLabel": "340", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SystemAtSurface_hex" + }, + "dc:identifier": "SDN:R14::T000340", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "System flags at surface. See Manual for more information. Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000198/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000198/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000198/2/" + }, + "dce:identifier": "SDN:R14::T000198", + "pav:version": "2", + "skos:notation": "SDN:R14::T000198", + "skos:altLabel": "198", + "dc:date": "2025-12-11 11:04:36.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToParkEntriesInGap_COUNT" + }, + "dc:identifier": "SDN:R14::T000198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent to park float control - number of entries in gap order. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000482/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000482/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000482/2/" + }, + "dce:identifier": "SDN:R14::T000482", + "pav:version": "2", + "skos:notation": "SDN:R14::T000482", + "skos:altLabel": "482", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_TelemetryPhaseInitiationTimeRelativeEPOCH_minutes" + }, + "dc:identifier": "SDN:R14::T000482", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of telemetry phase initiation in a duration relative to EPOCH. This includes the ascent from profiling depth. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000429/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000429/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000429/2/" + }, + "dce:identifier": "SDN:R14::T000429", + "pav:version": "2", + "skos:notation": "SDN:R14::T000429", + "skos:altLabel": "429", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAtSurface_mbar" + }, + "dc:identifier": "SDN:R14::T000429", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface internal pressure. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000086/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000086/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000086/2/" + }, + "dce:identifier": "SDN:R14::T000086", + "pav:version": "2", + "skos:notation": "SDN:R14::T000086", + "skos:altLabel": "86", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_EmergencyAscents_COUNT" + }, + "dc:identifier": "SDN:R14::T000086", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Emergency ascents - Internal count. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900021/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900021/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900021/2/" + }, + "dce:identifier": "SDN:R14::T900021", + "pav:version": "2", + "skos:notation": "SDN:R14::T900021", + "skos:altLabel": "900021", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MinimumDescentToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T900021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum pressure recorded during descent to profile. MC minus 3. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000364/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000364/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000364/2/" + }, + "dce:identifier": "SDN:R14::T000364", + "pav:version": "2", + "skos:notation": "SDN:R14::T000364", + "skos:altLabel": "364", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_HoursIntoDesentToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T000364", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRES_HoursIntoDesentToProfile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg];int:[1..9999]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000547/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000547/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000547/2/" + }, + "dce:identifier": "SDN:R14::T000547", + "pav:version": "2", + "skos:notation": "SDN:R14::T000547", + "skos:altLabel": "547", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "SPEED_FirstGrounding_mm/s" + }, + "dc:identifier": "SDN:R14::T000547", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Vertical speed during the first grounding. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000045/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000045/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000045/2/" + }, + "dce:identifier": "SDN:R14::T000045", + "pav:version": "2", + "skos:notation": "SDN:R14::T000045", + "skos:altLabel": "45", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeReset_2mBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.04db resolution - may be used for other floats as well. This is a relative offset and no further correction is required. Autocorrected. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000292/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000292/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000292/2/" + }, + "dce:identifier": "SDN:R14::T000292", + "pav:version": "2", + "skos:notation": "SDN:R14::T000292", + "skos:altLabel": "292", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_IceDetected_COUNT" + }, + "dc:identifier": "SDN:R14::T000292", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Aborted profile. If unit = COUNT or NUMBER, it increments by one for each profile interrupted by ice detection. If units are bit then represents the ice evasion record for the last 8 profiles with the latest profile in the least significant bit. Template_Values:{unit:[LOGICAL, bit, NUMBER, COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100104/2/" + }, + "dce:identifier": "SDN:R14::T100104", + "pav:version": "2", + "skos:notation": "SDN:R14::T100104", + "skos:altLabel": "104.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_IridiumMessagesReceivedPreviousSession_COUNT" + }, + "dc:identifier": "SDN:R14::T100104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Incoming Iridium Messages Received during previous session. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000388/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000388/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000388/2/" + }, + "dce:identifier": "SDN:R14::T000388", + "pav:version": "2", + "skos:notation": "SDN:R14::T000388", + "skos:altLabel": "388", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ForOptodeSurface_dbar" + }, + "dc:identifier": "SDN:R14::T000388", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure used for Optode at surface. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000357/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000357/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000357/2/" + }, + "dce:identifier": "SDN:R14::T000357", + "pav:version": "2", + "skos:notation": "SDN:R14::T000357", + "skos:altLabel": "357", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonSurfaceAddedBuoyancy_COUNT" + }, + "dc:identifier": "SDN:R14::T000357", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston position, recorded AFTER the instrument reaches the surface and the bladder has been fully pumped to increase buoyancy. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000332/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000332/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000332/2/" + }, + "dce:identifier": "SDN:R14::T000332", + "pav:version": "2", + "skos:notation": "SDN:R14::T000332", + "skos:altLabel": "332", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusEndAscentToSurface_NUMBER" + }, + "dc:identifier": "SDN:R14::T000332", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the end date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000078/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000078/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000078/2/" + }, + "dce:identifier": "SDN:R14::T000078", + "pav:version": "2", + "skos:notation": "SDN:R14::T000078", + "skos:altLabel": "78", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ReceptionEndDateTime_NUMBER" + }, + "dc:identifier": "SDN:R14::T000078", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the end date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000356/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000356/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000356/2/" + }, + "dce:identifier": "SDN:R14::T000356", + "pav:version": "2", + "skos:notation": "SDN:R14::T000356", + "skos:altLabel": "356", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000356", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston position, recorded as the instrument reaches the surface. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000291/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000291/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000291/2/" + }, + "dce:identifier": "SDN:R14::T000291", + "pav:version": "2", + "skos:notation": "SDN:R14::T000291", + "skos:altLabel": "291", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Beached_NUMBER" + }, + "dc:identifier": "SDN:R14::T000291", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the float has beached. Template_Values:{unit:[LOGICAL, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100132/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100132/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100132/2/" + }, + "dce:identifier": "SDN:R14::T100132", + "pav:version": "2", + "skos:notation": "SDN:R14::T100132", + "skos:altLabel": "132.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_BuoyancyInversionValveActions_COUNT" + }, + "dc:identifier": "SDN:R14::T100132", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of solenoid valve actions needed to perform the buoyancy inversion phase when ice was detected during ascent. See 76 and 76.1. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000326/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000326/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000326/2/" + }, + "dce:identifier": "SDN:R14::T000326", + "pav:version": "2", + "skos:notation": "SDN:R14::T000326", + "skos:altLabel": "326", + "dc:date": "2025-12-11 11:04:43.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ResponseToPTSMeasurementFailedTheNonpedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000326", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Response to PTS measurement failed the nonpedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000300/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000300/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000300/2/" + }, + "dce:identifier": "SDN:R14::T000300", + "pav:version": "2", + "skos:notation": "SDN:R14::T000300", + "skos:altLabel": "300", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_OxygenSensorState_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000300", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oxygen Sensor State (1 = ON, 0 = OFF). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200520/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200520/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200520/2/" + }, + "dce:identifier": "SDN:R14::T200520", + "pav:version": "2", + "skos:notation": "SDN:R14::T200520", + "skos:altLabel": "520.2", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery14VStartAscentToSurface_volts" + }, + "dc:identifier": "SDN:R14::T200520", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 14V system when float starts ascending to surface. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000046/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000046/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000046/2/" + }, + "dce:identifier": "SDN:R14::T000046", + "pav:version": "2", + "skos:notation": "SDN:R14::T000046", + "skos:altLabel": "46", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetAfterReset_2mBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.04db resolution - may be used for other floats as well. This is a relative offset and no further correction is required. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required (changed from 4 to 2mBar resolution as per Gilson request). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000271/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000271/2/" + }, + "dce:identifier": "SDN:R14::T000271", + "pav:version": "2", + "skos:notation": "SDN:R14::T000271", + "skos:altLabel": "271", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterBootFailure_bit" + }, + "dc:identifier": "SDN:R14::T000271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there was an Argos transmitter boot failure. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000420/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000420/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000420/2/" + }, + "dce:identifier": "SDN:R14::T000420", + "pav:version": "2", + "skos:notation": "SDN:R14::T000420", + "skos:altLabel": "420", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuum_mbar" + }, + "dc:identifier": "SDN:R14::T000420", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRESSURE_InternalVacuum. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000324/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000324/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000324/2/" + }, + "dce:identifier": "SDN:R14::T000324", + "pav:version": "2", + "skos:notation": "SDN:R14::T000324", + "skos:altLabel": "324", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ResponseToPMeasurementFailedTheNonpedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000324", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Response to P measurement failed the nonpedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100330/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100330/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100330/2/" + }, + "dce:identifier": "SDN:R14::T100330", + "pav:version": "2", + "skos:notation": "SDN:R14::T100330", + "skos:altLabel": "330.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusBladderStateAtLaunch_NUMBER" + }, + "dc:identifier": "SDN:R14::T100330", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "External bladder state at deployment (0: float stay at surface, 1: heavy float at deployment). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000336/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000336/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000336/2/" + }, + "dce:identifier": "SDN:R14::T000336", + "pav:version": "2", + "skos:notation": "SDN:R14::T000336", + "skos:altLabel": "336", + "dc:date": "2025-12-11 11:04:43.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusStartAscentToSurface_NUMBER" + }, + "dc:identifier": "SDN:R14::T000336", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the start date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000348/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000348/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000348/2/" + }, + "dce:identifier": "SDN:R14::T000348", + "pav:version": "2", + "skos:notation": "SDN:R14::T000348", + "skos:altLabel": "348", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "REFERENCE_NTUSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000348", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu NTU Reference at surface. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000283/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000283/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000283/2/" + }, + "dce:identifier": "SDN:R14::T000283", + "pav:version": "2", + "skos:notation": "SDN:R14::T000283", + "skos:altLabel": "283", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuNullArgumentDetectedDuringMeasurement_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000283", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu : Null argument detected during measurement (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100124/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100124/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100124/2/" + }, + "dce:identifier": "SDN:R14::T100124", + "pav:version": "2", + "skos:notation": "SDN:R14::T100124", + "skos:altLabel": "124.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringDescentToPark_COUNT" + }, + "dc:identifier": "SDN:R14::T100124", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park# pressure. Needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[COUNT];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000240/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000240/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000240/2/" + }, + "dce:identifier": "SDN:R14::T000240", + "pav:version": "2", + "skos:notation": "SDN:R14::T000240", + "skos:altLabel": "240", + "dc:date": "2025-12-11 11:05:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesComplete_COUNT" + }, + "dc:identifier": "SDN:R14::T000240", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - Complete. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200278/2/" + }, + "dce:identifier": "SDN:R14::T200278", + "pav:version": "2", + "skos:notation": "SDN:R14::T200278", + "skos:altLabel": "278.2", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDStartProfileError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T200278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is an error on CTD start profile command. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000316/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000316/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:42.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000316/2/" + }, + "dce:identifier": "SDN:R14::T000316", + "pav:version": "2", + "skos:notation": "SDN:R14::T000316", + "skos:altLabel": "316", + "dc:date": "2025-12-11 11:04:42.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ExceptionDetectedWhileParsingThePTSPedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000316", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Exception detected while parsing the PTS pedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000305/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000305/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000305/2/" + }, + "dce:identifier": "SDN:R14::T000305", + "pav:version": "2", + "skos:notation": "SDN:R14::T000305", + "skos:altLabel": "305", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ProfileInProgress_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000305", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether a profile is in progress (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100083/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100083/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100083/2/" + }, + "dce:identifier": "SDN:R14::T100083", + "pav:version": "2", + "skos:notation": "SDN:R14::T100083", + "skos:altLabel": "83.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_PressureActivationStart_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T100083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure activation scrutation start date. The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000251/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000251/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000251/2/" + }, + "dce:identifier": "SDN:R14::T000251", + "pav:version": "2", + "skos:notation": "SDN:R14::T000251", + "skos:altLabel": "251", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorErrorDuringProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000251", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of moter errors during profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100361/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100361/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100361/2/" + }, + "dce:identifier": "SDN:R14::T100361", + "pav:version": "2", + "skos:notation": "SDN:R14::T100361", + "skos:altLabel": "361.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_TimeOutGPS_dbar" + }, + "dc:identifier": "SDN:R14::T100361", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when GPS acquisition times out. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000050/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000050/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000050/2/" + }, + "dce:identifier": "SDN:R14::T000050", + "pav:version": "2", + "skos:notation": "SDN:R14::T000050", + "skos:altLabel": "50", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_StartAscentToSurface_hours" + }, + "dc:identifier": "SDN:R14::T000050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent start time. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_ASCENT_START and JULD with MC=500. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000468/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000468/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000468/2/" + }, + "dce:identifier": "SDN:R14::T000468", + "pav:version": "2", + "skos:notation": "SDN:R14::T000468", + "skos:altLabel": "468", + "dc:date": "2025-12-11 11:04:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PistonRanDuringDescentFrom100db_seconds" + }, + "dc:identifier": "SDN:R14::T000468", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration that piston ran to descend from approximately 100db (IDG Var= TIP). Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100527/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100527/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100527/2/" + }, + "dce:identifier": "SDN:R14::T100527", + "pav:version": "2", + "skos:notation": "SDN:R14::T100527", + "skos:altLabel": "527.1", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryFlbbParkEnd_volts" + }, + "dc:identifier": "SDN:R14::T100527", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured by Flbb at end of park. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000115/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000115/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000115/2/" + }, + "dce:identifier": "SDN:R14::T000115", + "pav:version": "2", + "skos:notation": "SDN:R14::T000115", + "skos:altLabel": "115", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000115", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples collected during park phase. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900007/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900007/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900007/2/" + }, + "dce:identifier": "SDN:R14::T900007", + "pav:version": "2", + "skos:notation": "SDN:R14::T900007", + "skos:altLabel": "900007", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_2ndSettlingBeforePark_dbar" + }, + "dc:identifier": "SDN:R14::T900007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure when float was settled at the parking depth for the 2nd time. MC189 - buoyancy action. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000275/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000275/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000275/2/" + }, + "dce:identifier": "SDN:R14::T000275", + "pav:version": "2", + "skos:notation": "SDN:R14::T000275", + "skos:altLabel": "275", + "dc:date": "2025-12-11 11:04:38.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_AscentError_NUMBER" + }, + "dc:identifier": "SDN:R14::T000275", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "0=normal, 81=too shallow (grounding?), 82=over 2100dbar, 84=sensor error. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T210407/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T210407/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T210407/2/" + }, + "dce:identifier": "SDN:R14::T210407", + "pav:version": "2", + "skos:notation": "SDN:R14::T210407", + "skos:altLabel": "407.21", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentTimeOutExpiredAfterFailedAscent_dbar" + }, + "dc:identifier": "SDN:R14::T210407", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum pressure when descent times out after a previous failed ascent (from ice avoidancy or buoyancy issues). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000562/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000562/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000562/2/" + }, + "dce:identifier": "SDN:R14::T000562", + "pav:version": "2", + "skos:notation": "SDN:R14::T000562", + "skos:altLabel": "562", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingCTDSamplesInternalCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000562", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total number of slices of the ascending profile after reduction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500278/2/" + }, + "dce:identifier": "SDN:R14::T500278", + "pav:version": "2", + "skos:notation": "SDN:R14::T500278", + "skos:altLabel": "278.5", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDAverageError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T500278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is an error on CTD average command. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000299/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000299/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000299/2/" + }, + "dce:identifier": "SDN:R14::T000299", + "pav:version": "2", + "skos:notation": "SDN:R14::T000299", + "skos:altLabel": "299", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_OptodeStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000299", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the Optode (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300271/2/" + }, + "dce:identifier": "SDN:R14::T300271", + "pav:version": "2", + "skos:notation": "SDN:R14::T300271", + "skos:altLabel": "271.3", + "dc:date": "2025-12-11 11:04:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterNegativeAcknowledgeRecieved_bit" + }, + "dc:identifier": "SDN:R14::T300271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether an Argos transmitter negative acknowledgement was received. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900006/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900006/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900006/2/" + }, + "dce:identifier": "SDN:R14::T900006", + "pav:version": "2", + "skos:notation": "SDN:R14::T900006", + "skos:altLabel": "900006", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_1stSettlingBeforePark_dbar" + }, + "dc:identifier": "SDN:R14::T900006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure when float was settled at the parking depth for the 1st time. MC189 - buoyancy action. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000372/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000372/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000372/2/" + }, + "dce:identifier": "SDN:R14::T000372", + "pav:version": "2", + "skos:notation": "SDN:R14::T000372", + "skos:altLabel": "372", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_CTDProfileReductionSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000372", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD profile reduction Shallow zone slices thickness - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000288/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000288/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000288/2/" + }, + "dce:identifier": "SDN:R14::T000288", + "pav:version": "2", + "skos:notation": "SDN:R14::T000288", + "skos:altLabel": "288", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FloatStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000288", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the Float (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000437/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000437/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000437/2/" + }, + "dce:identifier": "SDN:R14::T000437", + "pav:version": "2", + "skos:notation": "SDN:R14::T000437", + "skos:altLabel": "437", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMPERATURE_InternalVacuumAirBladderFull_degC" + }, + "dc:identifier": "SDN:R14::T000437", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal tube temperature at surface after airbladder fill. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000521/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000521/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000521/2/" + }, + "dce:identifier": "SDN:R14::T000521", + "pav:version": "2", + "skos:notation": "SDN:R14::T000521", + "skos:altLabel": "521", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryCPUStartProfile_volts" + }, + "dc:identifier": "SDN:R14::T000521", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CPU battery voltage at profile depth. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000098/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000098/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000098/2/" + }, + "dce:identifier": "SDN:R14::T000098", + "pav:version": "2", + "skos:notation": "SDN:R14::T000098", + "skos:altLabel": "98", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentArgosMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000098", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Argos messages with descent data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000267/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000267/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000267/2/" + }, + "dce:identifier": "SDN:R14::T000267", + "pav:version": "2", + "skos:notation": "SDN:R14::T000267", + "skos:altLabel": "267", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_PressureOffsetAfterReset_bit" + }, + "dc:identifier": "SDN:R14::T000267", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the status of the pressure offset after reset. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000247/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000247/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000247/2/" + }, + "dce:identifier": "SDN:R14::T000247", + "pav:version": "2", + "skos:notation": "SDN:R14::T000247", + "skos:altLabel": "247", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentPTMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000247", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of descent PT messages. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000531/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000531/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000531/2/" + }, + "dce:identifier": "SDN:R14::T000531", + "pav:version": "2", + "skos:notation": "SDN:R14::T000531", + "skos:altLabel": "531", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryNoLoad_volts" + }, + "dc:identifier": "SDN:R14::T000531", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured with no load. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000545/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000545/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000545/2/" + }, + "dce:identifier": "SDN:R14::T000545", + "pav:version": "2", + "skos:notation": "SDN:R14::T000545", + "skos:altLabel": "545", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGEDROP_BatteryStartProfile_volts" + }, + "dc:identifier": "SDN:R14::T000545", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage drop, pump on at max pressure, starting profile (tenths of volts). Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000480/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000480/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000480/2/" + }, + "dce:identifier": "SDN:R14::T000480", + "pav:version": "2", + "skos:notation": "SDN:R14::T000480", + "skos:altLabel": "480", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SinceAscentEnd_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000480", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_SinceAscentEnd. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000569/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000569/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000569/2/" + }, + "dce:identifier": "SDN:R14::T000569", + "pav:version": "2", + "skos:notation": "SDN:R14::T000569", + "skos:altLabel": "569", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SUNAAPFSampleCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000569", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Incremented for each sample the SUNA measures (it can be used to track frames, and recognize if frames were missed). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000235/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000235/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000235/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Park measurements - Internal counter. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000235", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamplesInternal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "235", + "skos:notation": "SDN:R14::T000235", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000235", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000235/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000513/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000513/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000513/2/" + }, + "dce:identifier": "SDN:R14::T000513", + "pav:version": "2", + "skos:notation": "SDN:R14::T000513", + "skos:altLabel": "513", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Aux_volts" + }, + "dc:identifier": "SDN:R14::T000513", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Auxiliary voltage. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000170/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000170/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000170/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Shallow internal counter for ascending profile measurements of . Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000170", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesShallowInternalCounter_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "170", + "skos:notation": "SDN:R14::T000170", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000170", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000170/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000067/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000067/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000067/2/" + }, + "dce:identifier": "SDN:R14::T000067", + "pav:version": "2", + "skos:notation": "SDN:R14::T000067", + "skos:altLabel": "67", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_Satellite_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000067", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time derived from satellite communications. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300248/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300248/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300248/2/" + }, + "dce:identifier": "SDN:R14::T300248", + "pav:version": "2", + "skos:notation": "SDN:R14::T300248", + "skos:altLabel": "248.3", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkDriftEntriesInParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T300248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Drift at park during multiparking mode # pressure: number of entries in margin around park # pressure target. Specifically, it indicates how many times the float enters the band of pressure surrounding the target park # pressure (generally +/- 30db). This parameter is needed for the multi-parking Provor CTS5 floats with park phases 1-5. Template_Values:{unit:[COUNT];I=[1..5]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100126/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100126/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100126/2/" + }, + "dce:identifier": "SDN:R14::T100126", + "pav:version": "2", + "skos:notation": "SDN:R14::T100126", + "skos:altLabel": "126.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT" + }, + "dc:identifier": "SDN:R14::T100126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of solenoid valve actions at the surface until the crossing of the GAP threshold. Number computed by the float from previous cycles behaviour. This float version provides 2 counts for surface valve actions performed before the GAP threshold (threshold used to detect float descent start, see T000126, 126). This first one (NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT) is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). It needs to be combined with the second (NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT, see T200126, 126.2) to get the parameter defined in T000126, 126: NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT = NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000537/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000537/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000537/2/" + }, + "dce:identifier": "SDN:R14::T000537", + "pav:version": "2", + "skos:notation": "SDN:R14::T000537", + "skos:altLabel": "537", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryPumpLastValueAsAscends_volts" + }, + "dc:identifier": "SDN:R14::T000537", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pump battery voltage, on last reading as ascending (IDG Var=Vpmp). Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000472/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000472/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000472/2/" + }, + "dce:identifier": "SDN:R14::T000472", + "pav:version": "2", + "skos:notation": "SDN:R14::T000472", + "skos:altLabel": "472", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpActionsInOutAtDepth_COUNT" + }, + "dc:identifier": "SDN:R14::T000472", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total duration of pump actions (in and out both reported) at depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000579/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000579/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000579/2/" + }, + "dce:identifier": "SDN:R14::T000579", + "pav:version": "2", + "skos:notation": "SDN:R14::T000579", + "skos:altLabel": "579", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_InternalCycle_NUMBER" + }, + "dc:identifier": "SDN:R14::T000579", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NUMBER_InternalCycle. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000203/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000203/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000203/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on immersion profile. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000203", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnPark_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "203", + "skos:notation": "SDN:R14::T000203", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000203", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000203/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000310/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000310/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000310/2/" + }, + "dce:identifier": "SDN:R14::T000310", + "pav:version": "2", + "skos:notation": "SDN:R14::T000310", + "skos:altLabel": "310", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_RemoteControlMessageOK_COUNT" + }, + "dc:identifier": "SDN:R14::T000310", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of messages sent by the remote control and received by the iridium float. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000496/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000496/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000496/2/" + }, + "dce:identifier": "SDN:R14::T000496", + "pav:version": "2", + "skos:notation": "SDN:R14::T000496", + "skos:altLabel": "496", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryNoLoad_mA" + }, + "dc:identifier": "SDN:R14::T000496", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CURRENT_BatteryNoLoad. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100554/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100554/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100554/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100554", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "554.1", + "skos:notation": "SDN:R14::T100554", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100554", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100554/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000227/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000227/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000227/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct optique frames emitted on ascending profile - Profile 1. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000227", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnAscendingProfile1_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "227", + "skos:notation": "SDN:R14::T000227", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000227", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000227/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300068/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300068/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300068/2/" + }, + "dce:identifier": "SDN:R14::T300068", + "pav:version": "2", + "skos:notation": "SDN:R14::T300068", + "skos:altLabel": "68.3", + "dc:date": "2025-12-11 11:04:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_LastIridiumGPSFix_DD" + }, + "dc:identifier": "SDN:R14::T300068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Day of month of last GPS fix/Time of Last GPS Fix. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000505/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000505/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000505/2/" + }, + "dce:identifier": "SDN:R14::T000505", + "pav:version": "2", + "skos:notation": "SDN:R14::T000505", + "skos:altLabel": "505", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatterySBEParkEnd_mA" + }, + "dc:identifier": "SDN:R14::T000505", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current measured when the SBE41 sampled at the end of park. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000162/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000162/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000162/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Deep total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000162", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesDeepTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "162", + "skos:notation": "SDN:R14::T000162", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000162", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000162/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300557/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300557/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300557/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the surface to parking depth phase. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T300557", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToParkSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:32.0", + "skos:altLabel": "557.3", + "skos:notation": "SDN:R14::T300557", + "pav:version": "3", + "dce:identifier": "SDN:R14::T300557", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300557/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:32.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000440/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000440/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000440/2/" + }, + "dce:identifier": "SDN:R14::T000440", + "pav:version": "2", + "skos:notation": "SDN:R14::T000440", + "skos:altLabel": "440", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "STATUS_LimitSwitch_hex" + }, + "dc:identifier": "SDN:R14::T000440", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "STATUS_LimitSwitch. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000320/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000320/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000320/2/" + }, + "dce:identifier": "SDN:R14::T000320", + "pav:version": "2", + "skos:notation": "SDN:R14::T000320", + "skos:altLabel": "320", + "dc:date": "2025-12-11 11:04:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PTException_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000320", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : PT exception (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000199/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000199/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000199/2/" + }, + "dce:identifier": "SDN:R14::T000199", + "pav:version": "2", + "skos:notation": "SDN:R14::T000199", + "skos:altLabel": "199", + "dc:date": "2025-12-11 11:04:36.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToProfileEntriesInGap_COUNT" + }, + "dc:identifier": "SDN:R14::T000199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent to profile float control - number of entries in gap order. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000529/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000529/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000529/2/" + }, + "dce:identifier": "SDN:R14::T000529", + "pav:version": "2", + "skos:notation": "SDN:R14::T000529", + "skos:altLabel": "529", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryOptics_volts" + }, + "dc:identifier": "SDN:R14::T000529", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of the optical sensor. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900022/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900022/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900022/2/" + }, + "dce:identifier": "SDN:R14::T900022", + "pav:version": "2", + "skos:notation": "SDN:R14::T900022", + "skos:altLabel": "900022", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MinimumDuringProfileDrift_dbar" + }, + "dc:identifier": "SDN:R14::T900022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum pressure during drifting at profile depth. MC minus 3. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000464/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000464/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000464/2/" + }, + "dce:identifier": "SDN:R14::T000464", + "pav:version": "2", + "skos:notation": "SDN:R14::T000464", + "skos:altLabel": "464", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_MotorDriveDuringDescent_minutes" + }, + "dc:identifier": "SDN:R14::T000464", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_MotorDriveDuringDescent. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000293/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000293/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000293/2/" + }, + "dce:identifier": "SDN:R14::T000293", + "pav:version": "2", + "skos:notation": "SDN:R14::T000293", + "skos:altLabel": "293", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_InvalidSequencePoint_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000293", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether an invalid sequence point has been detected (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000130/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000130/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000130/2/" + }, + "dce:identifier": "SDN:R14::T000130", + "pav:version": "2", + "skos:notation": "SDN:R14::T000130", + "skos:altLabel": "130", + "dc:date": "2025-12-11 11:05:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorActionsDuringDescentParkToProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000130", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of motor actions between parking depth and deepest position. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000358/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000358/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000358/2/" + }, + "dce:identifier": "SDN:R14::T000358", + "pav:version": "2", + "skos:notation": "SDN:R14::T000358", + "skos:altLabel": "358", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonTarget_NUMBER" + }, + "dc:identifier": "SDN:R14::T000358", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "POSITION_PistonTarget. Template_Values:{unit:[COUNT, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000432/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000432/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000432/2/" + }, + "dce:identifier": "SDN:R14::T000432", + "pav:version": "2", + "skos:notation": "SDN:R14::T000432", + "skos:altLabel": "432", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumEndXmit_inHg" + }, + "dc:identifier": "SDN:R14::T000432", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal pressure at the end of the transmission period. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000452/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000452/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000452/2/" + }, + "dce:identifier": "SDN:R14::T000452", + "pav:version": "2", + "skos:notation": "SDN:R14::T000452", + "skos:altLabel": "452", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_DescentTo50Decibars_seconds" + }, + "dc:identifier": "SDN:R14::T000452", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_DescentTo50Decibars (IDG Var=FallT). Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000368/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000368/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000368/2/" + }, + "dce:identifier": "SDN:R14::T000368", + "pav:version": "2", + "skos:notation": "SDN:R14::T000368", + "skos:altLabel": "368", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscendingProfileReductionSeparation_dbar" + }, + "dc:identifier": "SDN:R14::T000368", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction Surface / Bottom pressure threshold - PRSEP. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000517/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000517/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000517/2/" + }, + "dce:identifier": "SDN:R14::T000517", + "pav:version": "2", + "skos:notation": "SDN:R14::T000517", + "skos:altLabel": "517", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery12V_volts" + }, + "dc:identifier": "SDN:R14::T000517", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 12V system. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100288/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100288/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100288/2/" + }, + "dce:identifier": "SDN:R14::T100288", + "pav:version": "2", + "skos:notation": "SDN:R14::T100288", + "skos:altLabel": "288.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_InitialMemoryIntegrityCheck_LOGICAL" + }, + "dc:identifier": "SDN:R14::T100288", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Software check on the float memory contents (0 if problems were found and 1 if no problem occurred). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000456/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000456/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000456/2/" + }, + "dce:identifier": "SDN:R14::T000456", + "pav:version": "2", + "skos:notation": "SDN:R14::T000456", + "skos:altLabel": "456", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_DOXYSampleFrequencyDuringPark_hours" + }, + "dc:identifier": "SDN:R14::T000456", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY drift acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000015/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000015/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000015/2/" + }, + "dce:identifier": "SDN:R14::T000015", + "pav:version": "2", + "skos:notation": "SDN:R14::T000015", + "skos:altLabel": "15", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_MixedLayerMedian_degC" + }, + "dc:identifier": "SDN:R14::T000015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median of the mixed layer samples taken. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000391/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000391/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000391/2/" + }, + "dce:identifier": "SDN:R14::T000391", + "pav:version": "2", + "skos:notation": "SDN:R14::T000391", + "skos:altLabel": "391", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MaximumDepthBinWithValidData_dbar" + }, + "dc:identifier": "SDN:R14::T000391", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum depth bin with valid data according to the float. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000178/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000178/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000178/2/" + }, + "dce:identifier": "SDN:R14::T000178", + "pav:version": "2", + "skos:notation": "SDN:R14::T000178", + "skos:altLabel": "178", + "dc:date": "2025-12-11 11:04:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingProfileReductionLowerPart_COUNT" + }, + "dc:identifier": "SDN:R14::T000178", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of slices in deep zone for descending profile reduction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000122/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000122/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000122/2/" + }, + "dce:identifier": "SDN:R14::T000122", + "pav:version": "2", + "skos:notation": "SDN:R14::T000122", + "skos:altLabel": "122", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RepositionsAtProfileDepth_COUNT" + }, + "dc:identifier": "SDN:R14::T000122", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "At profile pressure stand-by, number of times the float readjusts its buoyancy - using either the pump or EV. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000146/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000146/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000146/2/" + }, + "dce:identifier": "SDN:R14::T000146", + "pav:version": "2", + "skos:notation": "SDN:R14::T000146", + "skos:altLabel": "146", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RangeOverflowDuringAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T000146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of range overflows in measurements during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000272/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000272/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000272/2/" + }, + "dce:identifier": "SDN:R14::T000272", + "pav:version": "2", + "skos:notation": "SDN:R14::T000272", + "skos:altLabel": "272", + "dc:date": "2025-12-11 11:04:38.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_8BitProfileCounterOverflowed_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000272", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The 8-bit profile counter overflowed (1/Yes or 0/No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900029/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900029/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900029/2/" + }, + "dce:identifier": "SDN:R14::T900029", + "pav:version": "2", + "skos:notation": "SDN:R14::T900029", + "skos:altLabel": "900029", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_WhenMinimumTemperatureAtPark_dbar" + }, + "dc:identifier": "SDN:R14::T900029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure where the minimum temperature was measured during park phase. MC minus 13 or 287. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000421/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000421/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000421/2/" + }, + "dce:identifier": "SDN:R14::T000421", + "pav:version": "2", + "skos:notation": "SDN:R14::T000421", + "skos:altLabel": "421", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAirBladderEmpty_inHg" + }, + "dc:identifier": "SDN:R14::T000421", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal Vacuum when air (sleeve) bladder is empty (IDG Var=VACb). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000081/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000081/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000081/2/" + }, + "dce:identifier": "SDN:R14::T000081", + "pav:version": "2", + "skos:notation": "SDN:R14::T000081", + "skos:altLabel": "81", + "dc:date": "2025-12-11 11:05:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_LastReset_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T000081", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Clock time of the last reset of the float. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000337/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000337/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000337/2/" + }, + "dce:identifier": "SDN:R14::T000337", + "pav:version": "2", + "skos:notation": "SDN:R14::T000337", + "skos:altLabel": "337", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusStartTransmission_NUMBER" + }, + "dc:identifier": "SDN:R14::T000337", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of the start date-time of transmission (0:Nominal, 1:Estimated, 2:Transmitted). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000082/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000082/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000082/2/" + }, + "dce:identifier": "SDN:R14::T000082", + "pav:version": "2", + "skos:notation": "SDN:R14::T000082", + "skos:altLabel": "82", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_DateOfEmergencyAscent_DDMMYYYY" + }, + "dc:identifier": "SDN:R14::T000082", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Date of emergency ascent. Template_Values:{unit:[DDMMYYYY, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000448/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000448/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000448/2/" + }, + "dce:identifier": "SDN:R14::T000448", + "pav:version": "2", + "skos:notation": "SDN:R14::T000448", + "skos:altLabel": "448", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_BuoyancyPumpOn_seconds" + }, + "dc:identifier": "SDN:R14::T000448", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_BuoyancyPumpOn. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100558/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100558/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100558/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the drift at park depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100558", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "558.1", + "skos:notation": "SDN:R14::T100558", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100558", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100558/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T110127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T110127/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T110127/2/" + }, + "dce:identifier": "SDN:R14::T110127", + "pav:version": "2", + "skos:notation": "SDN:R14::T110127", + "skos:altLabel": "127.11", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsForFirstGroundingDetection_COUNT" + }, + "dc:identifier": "SDN:R14::T110127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions done at constant pressure to set the grounded flag for the first grounding event. Thus NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT = NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000147/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000147/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000147/2/" + }, + "dce:identifier": "SDN:R14::T000147", + "pav:version": "2", + "skos:notation": "SDN:R14::T000147", + "skos:altLabel": "147", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RangeOverflowDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of range overflows in measurements during parking. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000431/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000431/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000431/2/" + }, + "dce:identifier": "SDN:R14::T000431", + "pav:version": "2", + "skos:notation": "SDN:R14::T000431", + "skos:altLabel": "431", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumDuringPark_inHg" + }, + "dc:identifier": "SDN:R14::T000431", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Park vacuum. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100493/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100493/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100493/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Battery current measured by the sensors themselves. Template_Values:{unit:[COUNT, amps, mA];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100493", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_Battery_mA" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "493.1", + "skos:notation": "SDN:R14::T100493", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100493", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100493/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000114/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000114/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000114/2/" + }, + "dce:identifier": "SDN:R14::T000114", + "pav:version": "2", + "skos:notation": "SDN:R14::T000114", + "skos:altLabel": "114", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000114", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of STP spot samples collected during the profile, not including the park-level spot sample. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000138/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000138/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000138/2/" + }, + "dce:identifier": "SDN:R14::T000138", + "pav:version": "2", + "skos:notation": "SDN:R14::T000138", + "skos:altLabel": "138", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples5thBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100248/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100248/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100248/2/" + }, + "dce:identifier": "SDN:R14::T100248", + "pav:version": "2", + "skos:notation": "SDN:R14::T100248", + "skos:altLabel": "248.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkDriftEntriesInParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T100248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Drift at park pressure: number of entries in margin around park pressure target. Specifically, it indicates how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000073/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000073/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000073/2/" + }, + "dce:identifier": "SDN:R14::T000073", + "pav:version": "2", + "skos:notation": "SDN:R14::T000073", + "skos:altLabel": "73", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EOLStart_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T000073", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Clock time when End of Life mode starts. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000351/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000351/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000351/2/" + }, + "dce:identifier": "SDN:R14::T000351", + "pav:version": "2", + "skos:notation": "SDN:R14::T000351", + "skos:altLabel": "351", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000351", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston position at park pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100461/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100461/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:47.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100461/2/" + }, + "dce:identifier": "SDN:R14::T100461", + "pav:version": "2", + "skos:notation": "SDN:R14::T100461", + "skos:altLabel": "461.1", + "dc:date": "2025-12-11 11:04:47.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PreviousIridiumSession_seconds" + }, + "dc:identifier": "SDN:R14::T100461", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the previous iridium session. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000051/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000051/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000051/2/" + }, + "dce:identifier": "SDN:R14::T000051", + "pav:version": "2", + "skos:notation": "SDN:R14::T000051", + "skos:altLabel": "51", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EndDescentToPark_hours" + }, + "dc:identifier": "SDN:R14::T000051", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when park pressure is reached. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200571/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200571/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200571/2/" + }, + "dce:identifier": "SDN:R14::T200571", + "pav:version": "2", + "skos:notation": "SDN:R14::T200571", + "skos:altLabel": "571.2", + "dc:date": "2025-12-11 11:04:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_OptodeAcquisitionsFailed_COUNT" + }, + "dc:identifier": "SDN:R14::T200571", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of failed acquisitions of the DO sensor. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000469/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000469/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000469/2/" + }, + "dce:identifier": "SDN:R14::T000469", + "pav:version": "2", + "skos:notation": "SDN:R14::T000469", + "skos:altLabel": "469", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PistonRanDuringFirstSeek_seconds" + }, + "dc:identifier": "SDN:R14::T000469", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration that piston ran during first seek (park depth, IDG Var=TSK). Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000097/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000097/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000097/2/" + }, + "dce:identifier": "SDN:R14::T000097", + "pav:version": "2", + "skos:notation": "SDN:R14::T000097", + "skos:altLabel": "97", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentArgosMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000097", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Argos messages with ascent data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000116/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000116/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000116/2/" + }, + "dce:identifier": "SDN:R14::T000116", + "pav:version": "2", + "skos:notation": "SDN:R14::T000116", + "skos:altLabel": "116", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringAscentToSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000116", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions between start and end of ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900008/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900008/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900008/2/" + }, + "dce:identifier": "SDN:R14::T900008", + "pav:version": "2", + "skos:notation": "SDN:R14::T900008", + "skos:altLabel": "900008", + "dc:date": "2025-12-11 11:04:54.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_3rdSettlingBeforePark_dbar" + }, + "dc:identifier": "SDN:R14::T900008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure when float was settled at the parking depth for the 3rd time. MC189 - buoyancy action. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000400/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000400/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000400/2/" + }, + "dce:identifier": "SDN:R14::T000400", + "pav:version": "2", + "skos:notation": "SDN:R14::T000400", + "skos:altLabel": "400", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_PlusFourseconds_dbar" + }, + "dc:identifier": "SDN:R14::T000400", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRES measured 4 seconds after PRES_AscentStart_dbar. This can also be placed into the traj files with MC-10 depending on the timing event (often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100273/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100273/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100273/2/" + }, + "dce:identifier": "SDN:R14::T100273", + "pav:version": "2", + "skos:notation": "SDN:R14::T100273", + "skos:altLabel": "273.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_AntennaStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T100273", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the antenna (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000106/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000106/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000106/2/" + }, + "dce:identifier": "SDN:R14::T000106", + "pav:version": "2", + "skos:notation": "SDN:R14::T000106", + "skos:altLabel": "106", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PRESIridiumMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000106", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium messages containing PRES data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000279/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000279/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000279/2/" + }, + "dce:identifier": "SDN:R14::T000279", + "pav:version": "2", + "skos:notation": "SDN:R14::T000279", + "skos:altLabel": "279", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_DataEntryError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000279", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data entry error (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000563/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000563/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000563/2/" + }, + "dce:identifier": "SDN:R14::T000563", + "pav:version": "2", + "skos:notation": "SDN:R14::T000563", + "skos:altLabel": "563", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingCTDSamplesInternalCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000563", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total number of slices of the descending profile after reduction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000041/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000041/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000041/2/" + }, + "dce:identifier": "SDN:R14::T000041", + "pav:version": "2", + "skos:notation": "SDN:R14::T000041", + "skos:altLabel": "41", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeReset_1cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile. This is a relative offset. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required but this could be applied in DMQC. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000210/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000210/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000210/2/" + }, + "dce:identifier": "SDN:R14::T000210", + "pav:version": "2", + "skos:notation": "SDN:R14::T000210", + "skos:altLabel": "210", + "dc:date": "2025-12-11 11:04:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FloatPTOrPFramesOk_COUNT" + }, + "dc:identifier": "SDN:R14::T000210", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - PT or PTC OK. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000399/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000399/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000399/2/" + }, + "dce:identifier": "SDN:R14::T000399", + "pav:version": "2", + "skos:notation": "SDN:R14::T000399", + "skos:altLabel": "399", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_Now_dbar" + }, + "dc:identifier": "SDN:R14::T000399", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Test message data reporting pressure at the surface during drift - cycle 0. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000065/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000065/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000065/2/" + }, + "dce:identifier": "SDN:R14::T000065", + "pav:version": "2", + "skos:notation": "SDN:R14::T000065", + "skos:altLabel": "65", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_InitialValveActionDescentToPark_HHMM" + }, + "dc:identifier": "SDN:R14::T000065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time in the day when the float first activated the valve during its descent. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200407/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200407/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200407/2/" + }, + "dce:identifier": "SDN:R14::T200407", + "pav:version": "2", + "skos:notation": "SDN:R14::T200407", + "skos:altLabel": "407.2", + "dc:date": "2025-12-11 11:04:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentTimeOutExpired_dbar" + }, + "dc:identifier": "SDN:R14::T200407", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when descending time out. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000099/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000099/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000099/2/" + }, + "dce:identifier": "SDN:R14::T000099", + "pav:version": "2", + "skos:notation": "SDN:R14::T000099", + "skos:altLabel": "99", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkArgosMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000099", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Argos messages with park data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000367/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000367/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000367/2/" + }, + "dce:identifier": "SDN:R14::T000367", + "pav:version": "2", + "skos:notation": "SDN:R14::T000367", + "skos:altLabel": "367", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscendingProfileReductionETS_dbar" + }, + "dc:identifier": "SDN:R14::T000367", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000248/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000248/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000248/2/" + }, + "dce:identifier": "SDN:R14::T000248", + "pav:version": "2", + "skos:notation": "SDN:R14::T000248", + "skos:altLabel": "248", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkPTMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of drift PT messages. Template_Values:{unit:[COUNT, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000030/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000030/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000030/2/" + }, + "dce:identifier": "SDN:R14::T000030", + "pav:version": "2", + "skos:notation": "SDN:R14::T000030", + "skos:altLabel": "30", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetNotTruncated_dbar" + }, + "dc:identifier": "SDN:R14::T000030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset. This IS NOT used to correct pressure on board. Not autocorrected. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000033/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000033/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000033/2/" + }, + "dce:identifier": "SDN:R14::T000033", + "pav:version": "2", + "skos:notation": "SDN:R14::T000033", + "skos:altLabel": "33", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetCorrectedNotReset_1dbarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent but data is corrected on board the float. This is a cumulative offset but no further correction required. Autocorrected. Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000342/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000342/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000342/2/" + }, + "dce:identifier": "SDN:R14::T000342", + "pav:version": "2", + "skos:notation": "SDN:R14::T000342", + "skos:altLabel": "342", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_UpDown_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000342", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating whether the float is in Up time (0) or Down time (1). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900033/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900033/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900033/2/" + }, + "dce:identifier": "SDN:R14::T900033", + "pav:version": "2", + "skos:notation": "SDN:R14::T900033", + "skos:altLabel": "900033", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_ParkMean_degC" + }, + "dc:identifier": "SDN:R14::T900033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Mean temperature during park phase. MC minus 4 or 296. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000258/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000258/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000258/2/" + }, + "dce:identifier": "SDN:R14::T000258", + "pav:version": "2", + "skos:notation": "SDN:R14::T000258", + "skos:altLabel": "258", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TEMPSampleErrorDeepZoneDuringDescending_COUNT" + }, + "dc:identifier": "SDN:R14::T000258", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Error of temperature measurements in deep zone during descent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000057/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000057/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000057/2/" + }, + "dce:identifier": "SDN:R14::T000057", + "pav:version": "2", + "skos:notation": "SDN:R14::T000057", + "skos:altLabel": "57", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EndAscentToSurfaceEstimated_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Theoretical time of end of ascent to surface. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000407/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000407/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000407/2/" + }, + "dce:identifier": "SDN:R14::T000407", + "pav:version": "2", + "skos:notation": "SDN:R14::T000407", + "skos:altLabel": "407", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ShallowMiddleBoundaryAscent_dbar" + }, + "dc:identifier": "SDN:R14::T000407", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Boundary pressure between shallow/middle areas at ascent. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000335/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000335/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000335/2/" + }, + "dce:identifier": "SDN:R14::T000335", + "pav:version": "2", + "skos:notation": "SDN:R14::T000335", + "skos:altLabel": "335", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_StatusHistoryQCPerformed_hex" + }, + "dc:identifier": "SDN:R14::T000335", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag History performed (from profile file). Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000270/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000270/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000270/2/" + }, + "dce:identifier": "SDN:R14::T000270", + "pav:version": "2", + "skos:notation": "SDN:R14::T000270", + "skos:altLabel": "270", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_BatteryPumpVoltage_bit" + }, + "dc:identifier": "SDN:R14::T000270", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the status of the pump battery voltage. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000352/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000352/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000352/2/" + }, + "dce:identifier": "SDN:R14::T000352", + "pav:version": "2", + "skos:notation": "SDN:R14::T000352", + "skos:altLabel": "352", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonParkEnd_COUNT" + }, + "dc:identifier": "SDN:R14::T000352", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston position at end of park period before descent to profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000501/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000501/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000501/2/" + }, + "dce:identifier": "SDN:R14::T000501", + "pav:version": "2", + "skos:notation": "SDN:R14::T000501", + "skos:altLabel": "501", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryPistonPumpOn_mA" + }, + "dc:identifier": "SDN:R14::T000501", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery Current during pumping to ascend. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000417/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000417/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000417/2/" + }, + "dce:identifier": "SDN:R14::T000417", + "pav:version": "2", + "skos:notation": "SDN:R14::T000417", + "skos:altLabel": "417", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_AirBladder_COUNT" + }, + "dc:identifier": "SDN:R14::T000417", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRESSURE_AirBladder. If measured in COUNT, it should be close to 148. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900001/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900001/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900001/2/" + }, + "dce:identifier": "SDN:R14::T900001", + "pav:version": "2", + "skos:notation": "SDN:R14::T900001", + "skos:altLabel": "900001", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_1stSettlingBeforePark_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T900001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Time when float was settled at the parking depth for the 1st time. MC189 - buoyancy action. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000303/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000303/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000303/2/" + }, + "dce:identifier": "SDN:R14::T000303", + "pav:version": "2", + "skos:notation": "SDN:R14::T000303", + "skos:altLabel": "303", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_PressureActivationTestMessage_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000303", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Current argos message is a pressure-activation test message (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000311/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000311/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000311/2/" + }, + "dce:identifier": "SDN:R14::T000311", + "pav:version": "2", + "skos:notation": "SDN:R14::T000311", + "skos:altLabel": "311", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_RTCStatus_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000311", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Real time clock status (1= OK, 0=not OK). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300290/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300290/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300290/2/" + }, + "dce:identifier": "SDN:R14::T300290", + "pav:version": "2", + "skos:notation": "SDN:R14::T300290", + "skos:altLabel": "290.3", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDErrorCyclePhase_NUMBER" + }, + "dc:identifier": "SDN:R14::T300290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Phase of the float life or cycle when the CTD error occurred. See the manual for phase definition - this will vary with float type. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000049/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000049/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000049/2/" + }, + "dce:identifier": "SDN:R14::T000049", + "pav:version": "2", + "skos:notation": "SDN:R14::T000049", + "skos:altLabel": "49", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EndAscentToSurface_hours" + }, + "dc:identifier": "SDN:R14::T000049", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent end time, just before Argos transmission. Units can vary and the raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_ASCENT_END and JULD with MC=600. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000327/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000327/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000327/2/" + }, + "dce:identifier": "SDN:R14::T000327", + "pav:version": "2", + "skos:notation": "SDN:R14::T000327", + "skos:altLabel": "327", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ResponseToPTSMmeasurementFailedThePedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000327", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Response to PTS measurement failed the pedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900013/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900013/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900013/2/" + }, + "dce:identifier": "SDN:R14::T900013", + "pav:version": "2", + "skos:notation": "SDN:R14::T900013", + "skos:altLabel": "900013", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentToParkMinPressure_dbar" + }, + "dc:identifier": "SDN:R14::T900013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum pressure during descent to park. MC minus 3. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000262/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000262/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000262/2/" + }, + "dce:identifier": "SDN:R14::T000262", + "pav:version": "2", + "skos:notation": "SDN:R14::T000262", + "skos:altLabel": "262", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SensorAnomaly_COUNT" + }, + "dc:identifier": "SDN:R14::T000262", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Clarification needed. Number of anomalous sensor readings. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000037/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000037/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000037/2/" + }, + "dce:identifier": "SDN:R14::T000037", + "pav:version": "2", + "skos:notation": "SDN:R14::T000037", + "skos:altLabel": "37", + "dc:date": "2025-12-11 11:05:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeReset_dbar" + }, + "dc:identifier": "SDN:R14::T000037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure measurement which is then used to correct pressure on board the float. This is a relative offset and no further correction is required. Autocorrecting so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000321/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000321/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000321/2/" + }, + "dce:identifier": "SDN:R14::T000321", + "pav:version": "2", + "skos:notation": "SDN:R14::T000321", + "skos:altLabel": "321", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PTSException_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000321", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : PTS exception (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000540/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000540/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000540/2/" + }, + "dce:identifier": "SDN:R14::T000540", + "pav:version": "2", + "skos:notation": "SDN:R14::T000540", + "skos:altLabel": "540", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatterySBEAscent_volts" + }, + "dc:identifier": "SDN:R14::T000540", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Voltage measured when ctd switched on sampling during profile ascend phase. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000484/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000484/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000484/2/" + }, + "dce:identifier": "SDN:R14::T000484", + "pav:version": "2", + "skos:notation": "SDN:R14::T000484", + "skos:altLabel": "484", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_Transmission_minutes" + }, + "dc:identifier": "SDN:R14::T000484", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission time duration. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000286/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000286/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000286/2/" + }, + "dce:identifier": "SDN:R14::T000286", + "pav:version": "2", + "skos:notation": "SDN:R14::T000286", + "skos:altLabel": "286", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FlntuResponseFailedRegexMatch_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000286", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu : Response failed regex match (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000131/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000131/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000131/2/" + }, + "dce:identifier": "SDN:R14::T000131", + "pav:version": "2", + "skos:notation": "SDN:R14::T000131", + "skos:altLabel": "131", + "dc:date": "2025-12-11 11:05:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorActionsDuringDescentToProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000131", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of motor actions between start and end of descent from park depth to profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900023/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900023/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:55.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900023/2/" + }, + "dce:identifier": "SDN:R14::T900023", + "pav:version": "2", + "skos:notation": "SDN:R14::T900023", + "skos:altLabel": "900023", + "dc:date": "2025-12-11 11:04:55.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ParkGrounded_dbar" + }, + "dc:identifier": "SDN:R14::T900023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure during park phase when float is grounded. MC901 references grounding information. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000549/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000549/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000549/2/" + }, + "dce:identifier": "SDN:R14::T000549", + "pav:version": "2", + "skos:notation": "SDN:R14::T000549", + "skos:altLabel": "549", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_SUNAAPFSupply_mA" + }, + "dc:identifier": "SDN:R14::T000549", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SUNA APF frame supply current. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100127/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100127/2/" + }, + "dce:identifier": "SDN:R14::T100127", + "pav:version": "2", + "skos:notation": "SDN:R14::T100127", + "skos:altLabel": "127.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsForGroundingDetection_COUNT" + }, + "dc:identifier": "SDN:R14::T100127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions done at constant pressure to set the grounded flag. The second one: NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000294/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000294/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000294/2/" + }, + "dce:identifier": "SDN:R14::T000294", + "pav:version": "2", + "skos:notation": "SDN:R14::T000294", + "skos:altLabel": "294", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_NegativeSbeNumber_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000294", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate a negative SBE number (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000230/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000230/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000230/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile optique measurements - Internal counter - Profile 1. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000230", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileMeasurementsProfile1_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "230", + "skos:notation": "SDN:R14::T000230", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000230", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000230/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900017/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900017/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900017/2/" + }, + "dce:identifier": "SDN:R14::T900017", + "pav:version": "2", + "skos:notation": "SDN:R14::T900017", + "skos:altLabel": "900017", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_InitialStabilizationDuringDescentToPark_dbar" + }, + "dc:identifier": "SDN:R14::T900017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure when first stabilization appears during descent to park. MC 150. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000359/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000359/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000359/2/" + }, + "dce:identifier": "SDN:R14::T000359", + "pav:version": "2", + "skos:notation": "SDN:R14::T000359", + "skos:altLabel": "359", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonPosition1_COUNT" + }, + "dc:identifier": "SDN:R14::T000359", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Apex ascent profile piston position 1. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000319/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000319/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:42.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000319/2/" + }, + "dce:identifier": "SDN:R14::T000319", + "pav:version": "2", + "skos:notation": "SDN:R14::T000319", + "skos:altLabel": "319", + "dc:date": "2025-12-11 11:04:42.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PNoResponse_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000319", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : P No response (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100418/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100418/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100418/2/" + }, + "dce:identifier": "SDN:R14::T100418", + "pav:version": "2", + "skos:notation": "SDN:R14::T100418", + "skos:altLabel": "418.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DuringMaxBuoyancyAndGPSAcquisition_dbar" + }, + "dc:identifier": "SDN:R14::T100418", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when buoyancy is max during getting GPS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000254/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000254/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000254/2/" + }, + "dce:identifier": "SDN:R14::T000254", + "pav:version": "2", + "skos:notation": "SDN:R14::T000254", + "skos:altLabel": "254", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_CTDAcquisitionsFailed_COUNT" + }, + "dc:identifier": "SDN:R14::T000254", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Failed CTD Acquisitions. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100364/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100364/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100364/2/" + }, + "dce:identifier": "SDN:R14::T100364", + "pav:version": "2", + "skos:notation": "SDN:R14::T100364", + "skos:altLabel": "364.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MaxDifferencePvsPTorPTSSamples_dbar" + }, + "dc:identifier": "SDN:R14::T100364", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The maximum (in absolute value) divergence between pressures from closely-spaced (i.e., a few seconds apart in time) P-only sample requests and PT or PTS sample requests. The divergence is measured as the P-only sample minus the pressure from the PTS (or PT) sample. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000532/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000532/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000532/2/" + }, + "dce:identifier": "SDN:R14::T000532", + "pav:version": "2", + "skos:notation": "SDN:R14::T000532", + "skos:altLabel": "532", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryParkEnd_volts" + }, + "dc:identifier": "SDN:R14::T000532", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured at end of park with no load. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000453/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000453/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000453/2/" + }, + "dce:identifier": "SDN:R14::T000453", + "pav:version": "2", + "skos:notation": "SDN:R14::T000453", + "skos:altLabel": "453", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_DescentToPark_hours" + }, + "dc:identifier": "SDN:R14::T000453", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_DescentToPark. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000100/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000100/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000100/2/" + }, + "dce:identifier": "SDN:R14::T000100", + "pav:version": "2", + "skos:notation": "SDN:R14::T000100", + "skos:altLabel": "100", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentIridiumMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Iridium messages with ascent data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000278/2/" + }, + "dce:identifier": "SDN:R14::T000278", + "pav:version": "2", + "skos:notation": "SDN:R14::T000278", + "skos:altLabel": "278", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the CTD (see manual). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000518/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000518/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000518/2/" + }, + "dce:identifier": "SDN:R14::T000518", + "pav:version": "2", + "skos:notation": "SDN:R14::T000518", + "skos:altLabel": "518", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery14V_volts" + }, + "dc:identifier": "SDN:R14::T000518", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 14v system. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000556/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000556/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000556/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium messages used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000556", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentIridiumMessages_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "556", + "skos:notation": "SDN:R14::T000556", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000556", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000556/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000016/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000016/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000016/2/" + }, + "dce:identifier": "SDN:R14::T000016", + "pav:version": "2", + "skos:notation": "SDN:R14::T000016", + "skos:altLabel": "16", + "dc:date": "2025-12-11 11:04:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_MixedLayerInfimum_degC" + }, + "dc:identifier": "SDN:R14::T000016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Infimum of the mixed-layer median temperature since the last successful telemetry. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000263/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000263/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:56.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000263/2/" + }, + "dce:identifier": "SDN:R14::T000263", + "pav:version": "2", + "skos:notation": "SDN:R14::T000263", + "skos:altLabel": "263", + "dc:date": "2025-12-11 11:04:56.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_CoherenceProblem_COUNT" + }, + "dc:identifier": "SDN:R14::T000263", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SBE sensor data check used to diagnose problems. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000222/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000222/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000222/2/" + }, + "dce:identifier": "SDN:R14::T000222", + "pav:version": "2", + "skos:notation": "SDN:R14::T000222", + "skos:altLabel": "222", + "dc:date": "2025-12-11 11:04:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesReceivedOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000222", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames received on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000328/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000328/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000328/2/" + }, + "dce:identifier": "SDN:R14::T000328", + "pav:version": "2", + "skos:notation": "SDN:R14::T000328", + "skos:altLabel": "328", + "dc:date": "2025-12-11 11:04:43.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SBE43NullArgumentDetectedDuringPTSMeasurement_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000328", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SBE43 : Null argument detected during PTS measurement (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T700271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T700271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T700271/2/" + }, + "dce:identifier": "SDN:R14::T700271", + "pav:version": "2", + "skos:notation": "SDN:R14::T700271", + "skos:altLabel": "271.7", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterXmitFail_bit" + }, + "dc:identifier": "SDN:R14::T700271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the Argos transmitter transmission attempt has failed. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000500/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000500/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000500/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Battery Current measured at park pressure with no load, incorrect unit in prefLabel and duplicate of CURRENT_BatteryParkNoLoad_mA - ID 499. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R14::T000500", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryParkNoLoad_volts" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-12 11:39:43.0", + "skos:altLabel": "500", + "skos:notation": "SDN:R14::T000500", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000500", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000500/3/" + }, + "pav:authoredOn": "2025-12-12 11:39:43.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000246/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000246/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000246/2/" + }, + "dce:identifier": "SDN:R14::T000246", + "pav:version": "2", + "skos:notation": "SDN:R14::T000246", + "skos:altLabel": "246", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentPTMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000246", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of ascent PT messages. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000524/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000524/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000524/2/" + }, + "dce:identifier": "SDN:R14::T000524", + "pav:version": "2", + "skos:notation": "SDN:R14::T000524", + "skos:altLabel": "524", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryCPUDepth_volts" + }, + "dc:identifier": "SDN:R14::T000524", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CPU battery voltage at (unspecified) depth. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000083/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000083/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000083/2/" + }, + "dce:identifier": "SDN:R14::T000083", + "pav:version": "2", + "skos:notation": "SDN:R14::T000083", + "skos:altLabel": "83", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TimeOfFirstEmergencyAscent_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of first emergency ascent. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300520/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300520/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300520/2/" + }, + "dce:identifier": "SDN:R14::T300520", + "pav:version": "2", + "skos:notation": "SDN:R14::T300520", + "skos:altLabel": "520.3", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery7VStartDescentToPark_volts" + }, + "dc:identifier": "SDN:R14::T300520", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 7V system when float starts descending to park. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000483/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000483/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000483/2/" + }, + "dce:identifier": "SDN:R14::T000483", + "pav:version": "2", + "skos:notation": "SDN:R14::T000483", + "skos:altLabel": "483", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_ToAscend_seconds" + }, + "dc:identifier": "SDN:R14::T000483", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time taken to reach the surface. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000148/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000148/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000148/2/" + }, + "dce:identifier": "SDN:R14::T000148", + "pav:version": "2", + "skos:notation": "SDN:R14::T000148", + "skos:altLabel": "148", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClass0_COUNT" + }, + "dc:identifier": "SDN:R14::T000148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class 0 - accuracy >1500m radius. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000214/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000214/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000214/2/" + }, + "dce:identifier": "SDN:R14::T000214", + "pav:version": "2", + "skos:notation": "SDN:R14::T000214", + "skos:altLabel": "214", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesCrcOkOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000214", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames received with crc ok on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000242/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000242/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000242/2/" + }, + "dce:identifier": "SDN:R14::T000242", + "pav:version": "2", + "skos:notation": "SDN:R14::T000242", + "skos:altLabel": "242", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesReceived_COUNT" + }, + "dc:identifier": "SDN:R14::T000242", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - Received. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000238/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000238/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000238/2/" + }, + "dce:identifier": "SDN:R14::T000238", + "pav:version": "2", + "skos:notation": "SDN:R14::T000238", + "skos:altLabel": "238", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkGapOrder_COUNT" + }, + "dc:identifier": "SDN:R14::T000238", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Park float control - Gap order. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000516/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000516/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000516/2/" + }, + "dce:identifier": "SDN:R14::T000516", + "pav:version": "2", + "skos:notation": "SDN:R14::T000516", + "skos:altLabel": "516", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery7V_volts" + }, + "dc:identifier": "SDN:R14::T000516", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 7v system. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000307/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000307/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000307/2/" + }, + "dce:identifier": "SDN:R14::T000307", + "pav:version": "2", + "skos:notation": "SDN:R14::T000307", + "skos:altLabel": "307", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ProfileTerminationFlag#1_byte" + }, + "dc:identifier": "SDN:R14::T000307", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "See description in manufacturer manual. Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000197/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000197/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000197/2/" + }, + "dce:identifier": "SDN:R14::T000197", + "pav:version": "2", + "skos:notation": "SDN:R14::T000197", + "skos:altLabel": "197", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingPRESSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number pressure measurements in descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900009/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900009/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900009/2/" + }, + "dce:identifier": "SDN:R14::T900009", + "pav:version": "2", + "skos:notation": "SDN:R14::T900009", + "skos:altLabel": "900009", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentStartToPark_dbar" + }, + "dc:identifier": "SDN:R14::T900009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure taken at the end of piston retraction. JULD_PARK_START and JULD with MC = 250. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000401/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000401/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000401/2/" + }, + "dce:identifier": "SDN:R14::T000401", + "pav:version": "2", + "skos:notation": "SDN:R14::T000401", + "skos:altLabel": "401", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_PlusTwoseconds_dbar" + }, + "dc:identifier": "SDN:R14::T000401", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRES measured 2 seconds after PRES_AscentStart_dbar. This can also be placed into the traj files with MC-10 depending on the timing event (often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000475/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000475/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000475/2/" + }, + "dce:identifier": "SDN:R14::T000475", + "pav:version": "2", + "skos:notation": "SDN:R14::T000475", + "skos:altLabel": "475", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SampleFrequencyDuringAscent_seconds" + }, + "dc:identifier": "SDN:R14::T000475", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD ascent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000206/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000206/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000206/2/" + }, + "dce:identifier": "SDN:R14::T000206", + "pav:version": "2", + "skos:notation": "SDN:R14::T000206", + "skos:altLabel": "206", + "dc:date": "2025-12-11 11:04:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FloatFramesOkOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000206", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Provor frames ok on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000564/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000564/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000564/2/" + }, + "dce:identifier": "SDN:R14::T000564", + "pav:version": "2", + "skos:notation": "SDN:R14::T000564", + "skos:altLabel": "564", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringProfileDrift_COUNT" + }, + "dc:identifier": "SDN:R14::T000564", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions during drift at profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000141/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000141/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000141/2/" + }, + "dce:identifier": "SDN:R14::T000141", + "pav:version": "2", + "skos:notation": "SDN:R14::T000141", + "skos:altLabel": "141", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FltnuAscentSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000141", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent: Flntu profile length. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200083/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200083/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200083/2/" + }, + "dce:identifier": "SDN:R14::T200083", + "pav:version": "2", + "skos:notation": "SDN:R14::T200083", + "skos:altLabel": "83.2", + "dc:date": "2025-12-11 11:04:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_PressureActivationStop_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T200083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure activation scrutation end date. The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000211/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000211/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000211/2/" + }, + "dce:identifier": "SDN:R14::T000211", + "pav:version": "2", + "skos:notation": "SDN:R14::T000211", + "skos:altLabel": "211", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesCompleteOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000211", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames complete on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200361/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200361/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200361/2/" + }, + "dce:identifier": "SDN:R14::T200361", + "pav:version": "2", + "skos:notation": "SDN:R14::T200361", + "skos:altLabel": "361.2", + "dc:date": "2025-12-11 11:04:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_TimeOutIridium_dbar" + }, + "dc:identifier": "SDN:R14::T200361", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when iridium communications timed out. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000499/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000499/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000499/2/" + }, + "dce:identifier": "SDN:R14::T000499", + "pav:version": "2", + "skos:notation": "SDN:R14::T000499", + "skos:altLabel": "499", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryParkNoLoad_mA" + }, + "dc:identifier": "SDN:R14::T000499", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery Current measured at park pressure with no load, same as BOTTOM battery current (older floats). Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000374/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000374/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000374/2/" + }, + "dce:identifier": "SDN:R14::T000374", + "pav:version": "2", + "skos:notation": "SDN:R14::T000374", + "skos:altLabel": "374", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescendingProfileReductionSeparation_dbar" + }, + "dc:identifier": "SDN:R14::T000374", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descending profile reduction Shallow / Deep pressure threshold - PRSEP. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000508/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000508/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000508/2/" + }, + "dce:identifier": "SDN:R14::T000508", + "pav:version": "2", + "skos:notation": "SDN:R14::T000508", + "skos:altLabel": "508", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryPumpLastValueAsAscends_mA" + }, + "dc:identifier": "SDN:R14::T000508", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Current measured in the last portion of pumping as the float ascends. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000165/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000165/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000165/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Shallow total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000165", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesShallowTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "165", + "skos:notation": "SDN:R14::T000165", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000165", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000165/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000443/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000443/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000443/2/" + }, + "dce:identifier": "SDN:R14::T000443", + "pav:version": "2", + "skos:notation": "SDN:R14::T000443", + "skos:altLabel": "443", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "STATUS_LimitSwitchOUTAtStartAscent_NUMBER" + }, + "dc:identifier": "SDN:R14::T000443", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Binary reporting of piston position (0=IN, 1=OUT, IDG Var=LIMsw). Not the same LIMsw as in Cy0. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000021/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000021/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000021/2/" + }, + "dce:identifier": "SDN:R14::T000021", + "pav:version": "2", + "skos:notation": "SDN:R14::T000021", + "skos:altLabel": "21", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "IRRADIANCE_W1_MeanBeforeAscent_uW/cm^2/nm" + }, + "dc:identifier": "SDN:R14::T000021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[uW/cm^2/nm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400112/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400112/2/" + }, + "dce:identifier": "SDN:R14::T400112", + "pav:version": "2", + "skos:notation": "SDN:R14::T400112", + "skos:altLabel": "112.4", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_InAirSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T400112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "In air measurements (Internal counter). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000189/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000189/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000189/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Depth total. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000189", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesDeepTotal_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "189", + "skos:notation": "SDN:R14::T000189", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000189", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000189/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000467/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000467/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000467/2/" + }, + "dce:identifier": "SDN:R14::T000467", + "pav:version": "2", + "skos:notation": "SDN:R14::T000467", + "skos:altLabel": "467", + "dc:date": "2025-12-11 11:04:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_OptiqueSampleFrequencyDuringPark_hours" + }, + "dc:identifier": "SDN:R14::T000467", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optique drift acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400271/2/" + }, + "dce:identifier": "SDN:R14::T400271", + "pav:version": "2", + "skos:notation": "SDN:R14::T400271", + "skos:altLabel": "271.4", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterRebootDetected_bit" + }, + "dc:identifier": "SDN:R14::T400271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether an Argos transmitter reboot was detected. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000533/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000533/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000533/2/" + }, + "dce:identifier": "SDN:R14::T000533", + "pav:version": "2", + "skos:notation": "SDN:R14::T000533", + "skos:altLabel": "533", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryParkNoLoad_volts" + }, + "dc:identifier": "SDN:R14::T000533", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage during inactive park phase. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200418/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200418/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200418/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Pressure when buoyancy is max during sending messages. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T200418", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DuringMaximumBuoyancyAndIridiumTransmission_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 11:04:33.0", + "skos:altLabel": "418.2", + "skos:notation": "SDN:R14::T200418", + "pav:version": "3", + "dce:identifier": "SDN:R14::T200418", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200418/3/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000202/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000202/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000202/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on descending profile. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000202", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnDescendingProfile_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "202", + "skos:notation": "SDN:R14::T000202", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000202", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000202/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000411/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000411/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000411/2/" + }, + "dce:identifier": "SDN:R14::T000411", + "pav:version": "2", + "skos:notation": "SDN:R14::T000411", + "skos:altLabel": "411", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_TUR3ProfileReductionSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000411", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 profile reduction Number of slices in shallow zone - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000343/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000343/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000343/2/" + }, + "dce:identifier": "SDN:R14::T000343", + "pav:version": "2", + "skos:notation": "SDN:R14::T000343", + "skos:altLabel": "343", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_WakeUpByWatchDogAlarm_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000343", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Wake-up by watchdog alarm (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000259/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000259/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000259/2/" + }, + "dce:identifier": "SDN:R14::T000259", + "pav:version": "2", + "skos:notation": "SDN:R14::T000259", + "skos:altLabel": "259", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TEMPSampleErrorShallowZoneDuringAscending_COUNT" + }, + "dc:identifier": "SDN:R14::T000259", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Error of temperature measurements in deep shallow during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000157/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000157/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000157/2/" + }, + "dce:identifier": "SDN:R14::T000157", + "pav:version": "2", + "skos:notation": "SDN:R14::T000157", + "skos:altLabel": "157", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_GPSSatellites_COUNT" + }, + "dc:identifier": "SDN:R14::T000157", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of GPS satellites seen by the float. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000408/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000408/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000408/2/" + }, + "dce:identifier": "SDN:R14::T000408", + "pav:version": "2", + "skos:notation": "SDN:R14::T000408", + "skos:altLabel": "408", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceComplement_dbar" + }, + "dc:identifier": "SDN:R14::T000408", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure complement. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000435/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000435/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000435/2/" + }, + "dce:identifier": "SDN:R14::T000435", + "pav:version": "2", + "skos:notation": "SDN:R14::T000435", + "skos:altLabel": "435", + "dc:date": "2025-12-11 11:04:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumRange_mbar" + }, + "dc:identifier": "SDN:R14::T000435", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Range of internal vacuum reported by the float (e.g., <=725 or 726-750). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000153/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000153/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000153/2/" + }, + "dce:identifier": "SDN:R14::T000153", + "pav:version": "2", + "skos:notation": "SDN:R14::T000153", + "skos:altLabel": "153", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClassA_COUNT" + }, + "dc:identifier": "SDN:R14::T000153", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class A. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000370/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000370/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000370/2/" + }, + "dce:identifier": "SDN:R14::T000370", + "pav:version": "2", + "skos:notation": "SDN:R14::T000370", + "skos:altLabel": "370", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_CTDProfileReductionBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000370", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD profile reduction Deep zone slices thickness - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000069/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000069/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000069/2/" + }, + "dce:identifier": "SDN:R14::T000069", + "pav:version": "2", + "skos:notation": "SDN:R14::T000069", + "skos:altLabel": "69", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FloatDayOfYear_days" + }, + "dc:identifier": "SDN:R14::T000069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal float day of year. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000353/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000353/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000353/2/" + }, + "dce:identifier": "SDN:R14::T000353", + "pav:version": "2", + "skos:notation": "SDN:R14::T000353", + "skos:altLabel": "353", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonParkStart_COUNT" + }, + "dc:identifier": "SDN:R14::T000353", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Plunger position at parking start. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000218/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000218/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000218/2/" + }, + "dce:identifier": "SDN:R14::T000218", + "pav:version": "2", + "skos:notation": "SDN:R14::T000218", + "skos:altLabel": "218", + "dc:date": "2025-12-11 11:04:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesOkOnAscendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000218", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames ok on ascending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000502/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000502/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000502/2/" + }, + "dce:identifier": "SDN:R14::T000502", + "pav:version": "2", + "skos:notation": "SDN:R14::T000502", + "skos:altLabel": "502", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryPumpOn_mA" + }, + "dc:identifier": "SDN:R14::T000502", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current when buoyancy pump is on. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000459/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000459/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000459/2/" + }, + "dce:identifier": "SDN:R14::T000459", + "pav:version": "2", + "skos:notation": "SDN:R14::T000459", + "skos:altLabel": "459", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_GroundingRelativeToCycleBeginning_hours" + }, + "dc:identifier": "SDN:R14::T000459", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Gounding day relative to cycle beginning. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000418/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000418/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000418/2/" + }, + "dce:identifier": "SDN:R14::T000418", + "pav:version": "2", + "skos:notation": "SDN:R14::T000418", + "skos:altLabel": "418", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_BladderNow_dbar" + }, + "dc:identifier": "SDN:R14::T000418", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Current pressure of the air bladder now. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500104/2/" + }, + "dce:identifier": "SDN:R14::T500104", + "pav:version": "2", + "skos:notation": "SDN:R14::T500104", + "skos:altLabel": "104.5", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RemoteControlCommandKO_COUNT" + }, + "dc:identifier": "SDN:R14::T500104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of remote control commands rejected by the float. See also ID 309. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000125/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000125/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000125/2/" + }, + "dce:identifier": "SDN:R14::T000125", + "pav:version": "2", + "skos:notation": "SDN:R14::T000125", + "skos:altLabel": "125", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ValveActionsDuringDescentToProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000125", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of valve actions during descent to start profile pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000403/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000403/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000403/2/" + }, + "dce:identifier": "SDN:R14::T000403", + "pav:version": "2", + "skos:notation": "SDN:R14::T000403", + "skos:altLabel": "403", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_Settling1_dbar" + }, + "dc:identifier": "SDN:R14::T000403", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRES_Settling1. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000060/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000060/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000060/2/" + }, + "dce:identifier": "SDN:R14::T000060", + "pav:version": "2", + "skos:notation": "SDN:R14::T000060", + "skos:altLabel": "60", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FloatTime_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float internal clock time. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM, days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000312/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000312/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000312/2/" + }, + "dce:identifier": "SDN:R14::T000312", + "pav:version": "2", + "skos:notation": "SDN:R14::T000312", + "skos:altLabel": "312", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SatlanticStatus_NUMBER" + }, + "dc:identifier": "SDN:R14::T000312", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the Satlantic optical sensor. Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000427/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000427/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000427/2/" + }, + "dce:identifier": "SDN:R14::T000427", + "pav:version": "2", + "skos:notation": "SDN:R14::T000427", + "skos:altLabel": "427", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAtLaunch_inHg" + }, + "dc:identifier": "SDN:R14::T000427", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal vacuum when float launched. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900014/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900014/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900014/2/" + }, + "dce:identifier": "SDN:R14::T900014", + "pav:version": "2", + "skos:notation": "SDN:R14::T900014", + "skos:altLabel": "900014", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentToProfileMaxPressure_dbar" + }, + "dc:identifier": "SDN:R14::T900014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum pressure during descent to profile. MC minus 2. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000362/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000362/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000362/2/" + }, + "dce:identifier": "SDN:R14::T000362", + "pav:version": "2", + "skos:notation": "SDN:R14::T000362", + "skos:altLabel": "362", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_1HourIntoDescentToProfile_dbar" + }, + "dc:identifier": "SDN:R14::T000362", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure taken 1 hour after the beginning of descent. If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000038/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000038/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000038/2/" + }, + "dce:identifier": "SDN:R14::T000038", + "pav:version": "2", + "skos:notation": "SDN:R14::T000038", + "skos:altLabel": "38", + "dc:date": "2025-12-11 11:05:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetBeforeResetTruncated_dbar" + }, + "dc:identifier": "SDN:R14::T000038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure measurement which is then used to correct pressure on board the float. This is a cumulative offset and no further correction is required. Negative offsets truncated to 0. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required. NOTE: if the SPO is >40 for the Argo CTD, then the autocorrection is PARTIALLY applied (40 is subtracted, leaving the excess offset uncorrected) and the pressures may need to be adjusted in RT and DM. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000485/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000485/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000485/2/" + }, + "dce:identifier": "SDN:R14::T000485", + "pav:version": "2", + "skos:notation": "SDN:R14::T000485", + "skos:altLabel": "485", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_TUR3SampleFrequencyDuringAscent_seconds" + }, + "dc:identifier": "SDN:R14::T000485", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 ascent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000386/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000386/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000386/2/" + }, + "dce:identifier": "SDN:R14::T000386", + "pav:version": "2", + "skos:notation": "SDN:R14::T000386", + "skos:altLabel": "386", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DOXYProfileReductionSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000386", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY profile reduction Number of slices in shallow zone - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000132/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000132/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000132/2/" + }, + "dce:identifier": "SDN:R14::T000132", + "pav:version": "2", + "skos:notation": "SDN:R14::T000132", + "skos:altLabel": "132", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorActionsDuringAscentToSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000132", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of motor actions between start and end of descent to profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900024/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900024/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:55.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900024/2/" + }, + "dce:identifier": "SDN:R14::T900024", + "pav:version": "2", + "skos:notation": "SDN:R14::T900024", + "skos:altLabel": "900024", + "dc:date": "2025-12-11 11:04:55.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ParkMaximum_dbar" + }, + "dc:identifier": "SDN:R14::T900024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum pressure during park phase. MC minus 2 or 298. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000117/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000117/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000117/2/" + }, + "dce:identifier": "SDN:R14::T000117", + "pav:version": "2", + "skos:notation": "SDN:R14::T000117", + "skos:altLabel": "117", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsAtSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000117", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions at emergence before transmission. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000052/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000052/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000052/2/" + }, + "dce:identifier": "SDN:R14::T000052", + "pav:version": "2", + "skos:notation": "SDN:R14::T000052", + "skos:altLabel": "52", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_StartDescentToPark_hours" + }, + "dc:identifier": "SDN:R14::T000052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time after the crossing the gap threshold. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000295/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000295/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000295/2/" + }, + "dce:identifier": "SDN:R14::T000295", + "pav:version": "2", + "skos:notation": "SDN:R14::T000295", + "skos:altLabel": "295", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_NextPressureTimeout_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000295", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "FLAG_NextPressureTimeout. Different from ascent timeout since it refers to a single pressure point timeout. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000330/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000330/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000330/2/" + }, + "dce:identifier": "SDN:R14::T000330", + "pav:version": "2", + "skos:notation": "SDN:R14::T000330", + "skos:altLabel": "330", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ShallowWaterTrapDetected_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000330", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Shallow water trap detected (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400557/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400557/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400557/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the parking depth to profile depth phase. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T400557", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToProfileSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "557.4", + "skos:notation": "SDN:R14::T400557", + "pav:version": "3", + "dce:identifier": "SDN:R14::T400557", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400557/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000076/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000076/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000076/2/" + }, + "dce:identifier": "SDN:R14::T000076", + "pav:version": "2", + "skos:notation": "SDN:R14::T000076", + "skos:altLabel": "76", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_BuoyancyInversionStart_FloatDay" + }, + "dc:identifier": "SDN:R14::T000076", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when the float starts the buoyancy inversion phase when ice was detected during ascent. When the ascent profile is aborted because of the Ice detection algorithm, the float starts a buoyancy inversion phase. The current label reports the start time of this phase and NUMBER_BuoyancyInversionValveActions_COUNT the number of valve actions needed to invert float buoyancy. See 132.1. Template_Values:{unit:[FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100529/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100529/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100529/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured by the individual sensors. Template_Values:{unit:[COUNT, volts, mV];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100529", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery_volts" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "529.1", + "skos:notation": "SDN:R14::T100529", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100529", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100529/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000354/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000354/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000354/2/" + }, + "dce:identifier": "SDN:R14::T000354", + "pav:version": "2", + "skos:notation": "SDN:R14::T000354", + "skos:altLabel": "354", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "POSITION_PistonProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000354", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Piston position at maximum profile pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000560/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000560/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000560/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the drift at parking depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000560", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "560", + "skos:notation": "SDN:R14::T000560", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000560", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000560/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000020/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000020/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000020/2/" + }, + "dce:identifier": "SDN:R14::T000020", + "pav:version": "2", + "skos:notation": "SDN:R14::T000020", + "skos:altLabel": "20", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CHLT_MeanBeforeAscent_mg/m^3" + }, + "dc:identifier": "SDN:R14::T000020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[mmol/L, umol/L, umol/kg, ug/L, kg/m^3, mg/m^3, ml/L]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000101/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000101/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000101/2/" + }, + "dce:identifier": "SDN:R14::T000101", + "pav:version": "2", + "skos:notation": "SDN:R14::T000101", + "skos:altLabel": "101", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentIridiumMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Iridium messages with descent data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100488/2/" + }, + "dce:identifier": "SDN:R14::T100488", + "pav:version": "2", + "skos:notation": "SDN:R14::T100488", + "skos:altLabel": "488.1", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredAtSurfaceDuringDescent_cm^3" + }, + "dc:identifier": "SDN:R14::T100488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume transferred from the external bladder during the descent to park (between the surface and the second threshold of the buoyancy reduction phase). This is the oil volume tranferred during the NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT valve actions (Id 126). Reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000109/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000109/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000109/2/" + }, + "dce:identifier": "SDN:R14::T000109", + "pav:version": "2", + "skos:notation": "SDN:R14::T000109", + "skos:altLabel": "109", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_BinsWithBadData_COUNT" + }, + "dc:identifier": "SDN:R14::T000109", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pressure bins with bad data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000017/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000017/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000017/2/" + }, + "dce:identifier": "SDN:R14::T000017", + "pav:version": "2", + "skos:notation": "SDN:R14::T000017", + "skos:altLabel": "17", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_MotorMeanOfProfile_amps" + }, + "dc:identifier": "SDN:R14::T000017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Mean of motor current during upcast. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900020/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900020/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900020/2/" + }, + "dce:identifier": "SDN:R14::T900020", + "pav:version": "2", + "skos:notation": "SDN:R14::T900020", + "skos:altLabel": "900020", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_MaximumDuringProfileDrift_dbar" + }, + "dc:identifier": "SDN:R14::T900020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum pressure during drifting at profile depth. MC minus 2. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000264/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000264/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000264/2/" + }, + "dce:identifier": "SDN:R14::T000264", + "pav:version": "2", + "skos:notation": "SDN:R14::T000264", + "skos:altLabel": "264", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ExceptionProgramCounter_NUMBER" + }, + "dc:identifier": "SDN:R14::T000264", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Exception Program Counter (EPC) used to store the address of the instruction that was executing when the exception was generated. The new Emergency Apex-APF11 float message provide a 4 bytes information called PC: The exception program counter. Customers would report emergency messages to Teledyne, and from that TWR will identify the source of the problem. Actual instruction addresses in the running program change for every version of code released. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000044/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000044/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000044/2/" + }, + "dce:identifier": "SDN:R14::T000044", + "pav:version": "2", + "skos:notation": "SDN:R14::T000044", + "skos:altLabel": "44", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetAfterReset_5cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.5db resolution - may be used for other floats as well. This is a relative offset and no further correction is required. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000322/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000322/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000322/2/" + }, + "dce:identifier": "SDN:R14::T000322", + "pav:version": "2", + "skos:notation": "SDN:R14::T000322", + "skos:altLabel": "322", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PTSNoResponse_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000322", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : PTS No response (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000329/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000329/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000329/2/" + }, + "dce:identifier": "SDN:R14::T000329", + "pav:version": "2", + "skos:notation": "SDN:R14::T000329", + "skos:altLabel": "329", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SeabirdStringLengthError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000329", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is a Seabird string length error (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000068/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000068/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000068/2/" + }, + "dce:identifier": "SDN:R14::T000068", + "pav:version": "2", + "skos:notation": "SDN:R14::T000068", + "skos:altLabel": "68", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TransmissionStart_HHMMSS" + }, + "dc:identifier": "SDN:R14::T000068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of the first transmission for this cycle. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. TRANSMISSION_START_TIME and in JULD with MC=700. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000346/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000346/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000346/2/" + }, + "dce:identifier": "SDN:R14::T000346", + "pav:version": "2", + "skos:notation": "SDN:R14::T000346", + "skos:altLabel": "346", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "REFERENCE_BlueFlntuSurface_COUNT" + }, + "dc:identifier": "SDN:R14::T000346", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu BlueReference at surface. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000274/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000274/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000274/2/" + }, + "dce:identifier": "SDN:R14::T000274", + "pav:version": "2", + "skos:notation": "SDN:R14::T000274", + "skos:altLabel": "274", + "dc:date": "2025-12-11 11:04:39.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_AscendingProfile_NUMBER" + }, + "dc:identifier": "SDN:R14::T000274", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Status of profile upcast. 0=UPCAST_BUSY 1=UPCST_DONE 2=UPCAST_TIMEOUT 3=UPCAST_ICE_DETECTION. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000423/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000423/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000423/2/" + }, + "dce:identifier": "SDN:R14::T000423", + "pav:version": "2", + "skos:notation": "SDN:R14::T000423", + "skos:altLabel": "423", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumDuringDescent50dbar_inHg" + }, + "dc:identifier": "SDN:R14::T000423", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal Vacuum at 50 dbar as float is sinking towards drift depth. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000281/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000281/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000281/2/" + }, + "dce:identifier": "SDN:R14::T000281", + "pav:version": "2", + "skos:notation": "SDN:R14::T000281", + "skos:altLabel": "281", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_DeepProfile_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000281", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the current profile is a deep profile (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000339/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000339/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000339/2/" + }, + "dce:identifier": "SDN:R14::T000339", + "pav:version": "2", + "skos:notation": "SDN:R14::T000339", + "skos:altLabel": "339", + "dc:date": "2025-12-11 11:04:29.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_SystemAtDepth_hex" + }, + "dc:identifier": "SDN:R14::T000339", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "System flags at depth. See Manual for more information. Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300407/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300407/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300407/2/" + }, + "dce:identifier": "SDN:R14::T300407", + "pav:version": "2", + "skos:notation": "SDN:R14::T300407", + "skos:altLabel": "407.3", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_IceAvoidance_dbar" + }, + "dc:identifier": "SDN:R14::T300407", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure when float avoids ice. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000084/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000084/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000084/2/" + }, + "dce:identifier": "SDN:R14::T000084", + "pav:version": "2", + "skos:notation": "SDN:R14::T000084", + "skos:altLabel": "84", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsOnFirstEmergencyAscent_COUNT" + }, + "dc:identifier": "SDN:R14::T000084", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Emergency ascent - pump actions at emergency depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900012/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900012/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900012/2/" + }, + "dce:identifier": "SDN:R14::T900012", + "pav:version": "2", + "skos:notation": "SDN:R14::T900012", + "skos:altLabel": "900012", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentToParkMaxPressure_dbar" + }, + "dc:identifier": "SDN:R14::T900012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Maximum pressure during descent to park. MC minus 2. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000036/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000036/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000036/2/" + }, + "dce:identifier": "SDN:R14::T000036", + "pav:version": "2", + "skos:notation": "SDN:R14::T000036", + "skos:altLabel": "36", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetCorrectedNotResetNegative_1cBarResolution_dbar" + }, + "dc:identifier": "SDN:R14::T000036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent but data is corrected on board the float. This is a cumulative NEGATIVE offset (real offset * -1) but no further correction required. Autocorrected. Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000149/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000149/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000149/2/" + }, + "dce:identifier": "SDN:R14::T000149", + "pav:version": "2", + "skos:notation": "SDN:R14::T000149", + "skos:altLabel": "149", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClass1_COUNT" + }, + "dc:identifier": "SDN:R14::T000149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class 1 - accuracy better than 1500m radius. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000314/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000314/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000314/2/" + }, + "dce:identifier": "SDN:R14::T000314", + "pav:version": "2", + "skos:notation": "SDN:R14::T000314", + "skos:altLabel": "314", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ExceptionDetectedWhileParsingThePNonpedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000314", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Exception detected while parsing the P nonpedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000243/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000243/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000243/2/" + }, + "dce:identifier": "SDN:R14::T000243", + "pav:version": "2", + "skos:notation": "SDN:R14::T000243", + "skos:altLabel": "243", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesRecombined_COUNT" + }, + "dc:identifier": "SDN:R14::T000243", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - Recombined. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000490/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000490/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000490/2/" + }, + "dce:identifier": "SDN:R14::T000490", + "pav:version": "2", + "skos:notation": "SDN:R14::T000490", + "skos:altLabel": "490", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryAvgPumpOnStartAscent_mA" + }, + "dc:identifier": "SDN:R14::T000490", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Average pump motor current taken at start of ascent. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000338/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000338/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000338/2/" + }, + "dce:identifier": "SDN:R14::T000338", + "pav:version": "2", + "skos:notation": "SDN:R14::T000338", + "skos:altLabel": "338", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_System_NUMBER" + }, + "dc:identifier": "SDN:R14::T000338", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "FLAG_System. Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000273/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000273/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000273/2/" + }, + "dce:identifier": "SDN:R14::T000273", + "pav:version": "2", + "skos:notation": "SDN:R14::T000273", + "skos:altLabel": "273", + "dc:date": "2025-12-11 11:04:38.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_AirInflationSystemByPassedExcessiveEnergyConsumption_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000273", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Air inflation system by-passed excessive energy consumption (1/Yes or 0/No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200558/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200558/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200558/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the drift at park depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T200558", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "558.2", + "skos:notation": "SDN:R14::T200558", + "pav:version": "3", + "dce:identifier": "SDN:R14::T200558", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200558/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000308/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000308/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000308/2/" + }, + "dce:identifier": "SDN:R14::T000308", + "pav:version": "2", + "skos:notation": "SDN:R14::T000308", + "skos:altLabel": "308", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ProfileTerminationFlag#2_byte" + }, + "dc:identifier": "SDN:R14::T000308", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "See description in manufacturer manual. Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000053/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000053/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000053/2/" + }, + "dce:identifier": "SDN:R14::T000053", + "pav:version": "2", + "skos:notation": "SDN:R14::T000053", + "skos:altLabel": "53", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_EndDescentToProfile_hours" + }, + "dc:identifier": "SDN:R14::T000053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when float reaches profile pressure. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_DEEP_DESCENT_END or JULD_DEEP_PARK_START and JULD with MC=400 or JULD with MC=450. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100112/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100112/2/" + }, + "dce:identifier": "SDN:R14::T100112", + "pav:version": "2", + "skos:notation": "SDN:R14::T100112", + "skos:altLabel": "112.1", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToParkAndToProfEntriesInParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T100112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Cumulated numbers of entries in both parking zones (at park and profile depth). Specifically, how many times the float enters the band of pressure surrounding the target park/profile pressure (thus 2 is the nominal value for a float which never experienced stabilization issues). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000297/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000297/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000297/2/" + }, + "dce:identifier": "SDN:R14::T000297", + "pav:version": "2", + "skos:notation": "SDN:R14::T000297", + "skos:altLabel": "297", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_OptodeNoResponse_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000297", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optode : No response (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000118/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000118/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000118/2/" + }, + "dce:identifier": "SDN:R14::T000118", + "pav:version": "2", + "skos:notation": "SDN:R14::T000118", + "skos:altLabel": "118", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000118", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions while at park depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900004/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900004/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900004/2/" + }, + "dce:identifier": "SDN:R14::T900004", + "pav:version": "2", + "skos:notation": "SDN:R14::T900004", + "skos:altLabel": "900004", + "dc:date": "2025-12-11 11:04:53.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_DateGrounded_DDMMYYYY" + }, + "dc:identifier": "SDN:R14::T900004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Date the float grounded. MC901 references grounding information. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000402/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000402/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000402/2/" + }, + "dce:identifier": "SDN:R14::T000402", + "pav:version": "2", + "skos:notation": "SDN:R14::T000402", + "skos:altLabel": "402", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_Settling0_dbar" + }, + "dc:identifier": "SDN:R14::T000402", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRES_Settling0. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000028/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000028/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:15.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000028/2/" + }, + "dce:identifier": "SDN:R14::T000028", + "pav:version": "2", + "skos:notation": "SDN:R14::T000028", + "skos:altLabel": "28", + "dc:date": "2025-12-11 11:04:15.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetTruncatedPlus3dbar_dbar" + }, + "dc:identifier": "SDN:R14::T000028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure recorded just before the previous descent. This is a cumulative offset, negative offsets truncated to 0, 3dbar added. Not autocorrected. Subtract 3 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000306/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000306/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000306/2/" + }, + "dce:identifier": "SDN:R14::T000306", + "pav:version": "2", + "skos:notation": "SDN:R14::T000306", + "skos:altLabel": "306", + "dc:date": "2025-12-11 11:04:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ProfileTermination_hex" + }, + "dc:identifier": "SDN:R14::T000306", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating the status of the profile termination (see manual). Template_Values:{unit:[hex, bit, byte, kbyte, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200248/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200248/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200248/2/" + }, + "dce:identifier": "SDN:R14::T200248", + "pav:version": "2", + "skos:notation": "SDN:R14::T200248", + "skos:altLabel": "248.2", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkDriftExitsFromParkMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T200248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Drift at park pressure: number of exits from margin around park pressure target. Specifically, it indicates how many times the float exits the band of pressure surrounding the target park pressure (generally +/- 30db). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000565/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000565/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000565/2/" + }, + "dce:identifier": "SDN:R14::T000565", + "pav:version": "2", + "skos:notation": "SDN:R14::T000565", + "skos:altLabel": "565", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SBEFPCommandTimeouts_COUNT" + }, + "dc:identifier": "SDN:R14::T000565", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of timeouts while measuring pressure with the SBE sensor using a Fast Pressure command. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000241/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000241/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000241/2/" + }, + "dce:identifier": "SDN:R14::T000241", + "pav:version": "2", + "skos:notation": "SDN:R14::T000241", + "skos:altLabel": "241", + "dc:date": "2025-12-11 11:05:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesCrcOk_COUNT" + }, + "dc:identifier": "SDN:R14::T000241", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - CRC OK. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900028/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900028/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900028/2/" + }, + "dce:identifier": "SDN:R14::T900028", + "pav:version": "2", + "skos:notation": "SDN:R14::T900028", + "skos:altLabel": "900028", + "dc:date": "2025-12-11 11:04:52.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_WhenMaximumTemperatureAtPark_dbar" + }, + "dc:identifier": "SDN:R14::T900028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Pressure where the maximum temperature was measured during park phase. MC minus 12 or 288. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000212/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000212/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000212/2/" + }, + "dce:identifier": "SDN:R14::T000212", + "pav:version": "2", + "skos:notation": "SDN:R14::T000212", + "skos:altLabel": "212", + "dc:date": "2025-12-11 11:04:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesCompleteOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000212", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames complete on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000375/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000375/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000375/2/" + }, + "dce:identifier": "SDN:R14::T000375", + "pav:version": "2", + "skos:notation": "SDN:R14::T000375", + "skos:altLabel": "375", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescendingProfileReductionSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000375", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descending profile reduction Surface slices thickness - ETS. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000543/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000543/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000543/2/" + }, + "dce:identifier": "SDN:R14::T000543", + "pav:version": "2", + "skos:notation": "SDN:R14::T000543", + "skos:altLabel": "543", + "dc:date": "2025-12-11 11:04:28.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatterySurfaceAirPumpOn_volts" + }, + "dc:identifier": "SDN:R14::T000543", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Voltage measured when AIR PUMP is switched on at the surface for extra buoyancy. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000022/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000022/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000022/2/" + }, + "dce:identifier": "SDN:R14::T000022", + "pav:version": "2", + "skos:notation": "SDN:R14::T000022", + "skos:altLabel": "22", + "dc:date": "2025-12-11 11:04:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "IRRADIANCE_W2_MeanBeforeAscent_uW/cm^2/nm" + }, + "dc:identifier": "SDN:R14::T000022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[uW/cm^2/nm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000289/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000289/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000289/2/" + }, + "dce:identifier": "SDN:R14::T000289", + "pav:version": "2", + "skos:notation": "SDN:R14::T000289", + "skos:altLabel": "289", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_GPSStatus_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000289", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flag indicating whether GPS is valid (1) or not valid (0). Template_Values:{unit:[LOGICAL, hex, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000567/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000567/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000567/2/" + }, + "dce:identifier": "SDN:R14::T000567", + "pav:version": "2", + "skos:notation": "SDN:R14::T000567", + "skos:altLabel": "567", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SUNAAPFErrorCounter_COUNT" + }, + "dc:identifier": "SDN:R14::T000567", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Incremented each time an error is encountered. The APF interface provides a mechanism to access error messages. If the error counter increases between frames, the operator or control system can retrieve the accumulated error message(s). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000534/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000534/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000534/2/" + }, + "dce:identifier": "SDN:R14::T000534", + "pav:version": "2", + "skos:notation": "SDN:R14::T000534", + "skos:altLabel": "534", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryPistonPumpOn_volts" + }, + "dc:identifier": "SDN:R14::T000534", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Buoyancy pump voltage. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100065/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100065/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100065/2/" + }, + "dce:identifier": "SDN:R14::T100065", + "pav:version": "2", + "skos:notation": "SDN:R14::T100065", + "skos:altLabel": "65.1", + "dc:date": "2025-12-11 11:04:46.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_ValveActionsAtSurface_minutes" + }, + "dc:identifier": "SDN:R14::T100065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the basic valve actions which is computed by the float from preceding cycles. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000233/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000233/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000233/2/" + }, + "dce:identifier": "SDN:R14::T000233", + "pav:version": "2", + "skos:notation": "SDN:R14::T000233", + "skos:altLabel": "233", + "dc:date": "2025-12-11 11:04:24.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SpyFramesEmitted_COUNT" + }, + "dc:identifier": "SDN:R14::T000233", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct spy frames emitted. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000511/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000511/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000511/2/" + }, + "dce:identifier": "SDN:R14::T000511", + "pav:version": "2", + "skos:notation": "SDN:R14::T000511", + "skos:altLabel": "511", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_MotorStartProfile_amps" + }, + "dc:identifier": "SDN:R14::T000511", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Motor current in profile depth. Template_Values:{unit:[amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000195/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000195/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000195/2/" + }, + "dce:identifier": "SDN:R14::T000195", + "pav:version": "2", + "skos:notation": "SDN:R14::T000195", + "skos:altLabel": "195", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PRESSamplesDuringDescentToPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pressure samples collected as the float descends from the Shallow to the park pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000344/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000344/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000344/2/" + }, + "dce:identifier": "SDN:R14::T000344", + "pav:version": "2", + "skos:notation": "SDN:R14::T000344", + "skos:altLabel": "344", + "dc:date": "2025-12-11 11:04:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_ArgosTransmitterExceptionStatus_bit" + }, + "dc:identifier": "SDN:R14::T000344", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether an Argos transmitter exception has been detected. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000257/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000257/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000257/2/" + }, + "dce:identifier": "SDN:R14::T000257", + "pav:version": "2", + "skos:notation": "SDN:R14::T000257", + "skos:altLabel": "257", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TEMPSampleErrorDeepZoneDuringAscending_COUNT" + }, + "dc:identifier": "SDN:R14::T000257", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Error of temperature measurements in deep zone during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000409/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000409/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000409/2/" + }, + "dce:identifier": "SDN:R14::T000409", + "pav:version": "2", + "skos:notation": "SDN:R14::T000409", + "skos:altLabel": "409", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_TUR3ProfileReductionBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000409", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 profile reduction Deep zone slices thickness - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000535/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000535/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000535/2/" + }, + "dce:identifier": "SDN:R14::T000535", + "pav:version": "2", + "skos:notation": "SDN:R14::T000535", + "skos:altLabel": "535", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryProfileNoLoad_volts" + }, + "dc:identifier": "SDN:R14::T000535", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage just before the profile begins, no load on the batteries. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000192/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000192/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000192/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Surface relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000192", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesShallowRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "192", + "skos:notation": "SDN:R14::T000192", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000192", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000192/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000154/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000154/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000154/2/" + }, + "dce:identifier": "SDN:R14::T000154", + "pav:version": "2", + "skos:notation": "SDN:R14::T000154", + "skos:altLabel": "154", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositioningClassB_COUNT" + }, + "dc:identifier": "SDN:R14::T000154", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Positioning (ARGOS message) - Class B. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000470/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000470/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000470/2/" + }, + "dce:identifier": "SDN:R14::T000470", + "pav:version": "2", + "skos:notation": "SDN:R14::T000470", + "skos:altLabel": "470", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpActionsAtSurface_seconds" + }, + "dc:identifier": "SDN:R14::T000470", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of pump actions at the surface. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000201/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000201/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000201/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on ascending profile. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000201", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnAscendingProfile_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "201", + "skos:notation": "SDN:R14::T000201", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000201", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000201/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100311/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100311/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100311/2/" + }, + "dce:identifier": "SDN:R14::T100311", + "pav:version": "2", + "skos:notation": "SDN:R14::T100311", + "skos:altLabel": "311.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_TelonicsPTTStatus_byte" + }, + "dc:identifier": "SDN:R14::T100311", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Implemented a status byte for the Telonics ST21 PTT to facilitate diagnostics. This byte records the state of 8 status bits for the Telonics PTT. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000219/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000219/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000219/2/" + }, + "dce:identifier": "SDN:R14::T000219", + "pav:version": "2", + "skos:notation": "SDN:R14::T000219", + "skos:altLabel": "219", + "dc:date": "2025-12-11 11:04:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesOkOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000219", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames ok on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000559/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000559/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000559/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium messages used to transmit data collected during the drift at profile depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000559", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileDriftIridiumMessages_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "559", + "skos:notation": "SDN:R14::T000559", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000559", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000559/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000001/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000001/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000001/2/" + }, + "dce:identifier": "SDN:R14::T000001", + "pav:version": "2", + "skos:notation": "SDN:R14::T000001", + "skos:altLabel": "1", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_GreyListPSAL_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Y=YES, N=NO or field is absent. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000494/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000494/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000494/2/" + }, + "dce:identifier": "SDN:R14::T000494", + "pav:version": "2", + "skos:notation": "SDN:R14::T000494", + "skos:altLabel": "494", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryInitialAtProfileDepth_mA" + }, + "dc:identifier": "SDN:R14::T000494", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery Current measured at bottom (park or pressure) at initial pump extension completion. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000225/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000225/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:20.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000225/2/" + }, + "dce:identifier": "SDN:R14::T000225", + "pav:version": "2", + "skos:notation": "SDN:R14::T000225", + "skos:altLabel": "225", + "dc:date": "2025-12-11 11:04:20.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesRecombinedOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000225", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frames recombined on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000503/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000503/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:45.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000503/2/" + }, + "dce:identifier": "SDN:R14::T000503", + "pav:version": "2", + "skos:notation": "SDN:R14::T000503", + "skos:altLabel": "503", + "dc:date": "2025-12-11 11:04:45.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatterySampledbyFlntu_mA" + }, + "dc:identifier": "SDN:R14::T000503", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Flntu sampled battery current. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000313/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000313/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000313/2/" + }, + "dce:identifier": "SDN:R14::T000313", + "pav:version": "2", + "skos:notation": "SDN:R14::T000313", + "skos:altLabel": "313", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41ExceptionDetectedWhileParsingPPedanticRegex_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000313", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : Exception detected while parsing the P pedantic regex (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600271/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600271/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600271/2/" + }, + "dce:identifier": "SDN:R14::T600271", + "pav:version": "2", + "skos:notation": "SDN:R14::T600271", + "skos:altLabel": "271.6", + "dc:date": "2025-12-11 11:04:50.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_ArgosTransmitterIncommunicado_bit" + }, + "dc:identifier": "SDN:R14::T600271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether the Argos transmitter attempt to communicate failed. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100470/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100470/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100470/2/" + }, + "dce:identifier": "SDN:R14::T100470", + "pav:version": "2", + "skos:notation": "SDN:R14::T100470", + "skos:altLabel": "470.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_PumpActionsAdditionalAtSurfaceForGPSAcquisition_seconds" + }, + "dc:identifier": "SDN:R14::T100470", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of additional pump actions at the surface performed during GPS acquisition in case of insufficient buoyancy. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000476/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000476/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000476/2/" + }, + "dce:identifier": "SDN:R14::T000476", + "pav:version": "2", + "skos:notation": "SDN:R14::T000476", + "skos:altLabel": "476", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SampleFrequencyDuringDescent_seconds" + }, + "dc:identifier": "SDN:R14::T000476", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CTD descent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000249/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000249/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:37.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000249/2/" + }, + "dce:identifier": "SDN:R14::T000249", + "pav:version": "2", + "skos:notation": "SDN:R14::T000249", + "skos:altLabel": "249", + "dc:date": "2025-12-11 11:04:37.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DOXYErrorsAscending_COUNT" + }, + "dc:identifier": "SDN:R14::T000249", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of DOXY Optode errors during profile. Zero if no sensor installed. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000527/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000527/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000527/2/" + }, + "dce:identifier": "SDN:R14::T000527", + "pav:version": "2", + "skos:notation": "SDN:R14::T000527", + "skos:altLabel": "527", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_BatteryFlntuParkEnd_volts" + }, + "dc:identifier": "SDN:R14::T000527", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage measured by Flntu at end of park. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000184/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000184/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000184/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Profile relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000184", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "184", + "skos:notation": "SDN:R14::T000184", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000184", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000184/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900015/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900015/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900015/2/" + }, + "dce:identifier": "SDN:R14::T900015", + "pav:version": "2", + "skos:notation": "SDN:R14::T900015", + "skos:altLabel": "900015", + "dc:date": "2025-12-11 11:04:54.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentToProfileMinPressure_dbar" + }, + "dc:identifier": "SDN:R14::T900015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Minimum pressure during descent to profile. MC minus 3. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100557/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100557/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100557/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the ascent to surface phase. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100557", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "557.1", + "skos:notation": "SDN:R14::T100557", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100557", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100557/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000462/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000462/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000462/2/" + }, + "dce:identifier": "SDN:R14::T000462", + "pav:version": "2", + "skos:notation": "SDN:R14::T000462", + "skos:altLabel": "462", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_TransmissionLastHousekeepingMessage_seconds" + }, + "dc:identifier": "SDN:R14::T000462", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time required to transmit the last housekeeping message. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000039/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000039/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000039/2/" + }, + "dce:identifier": "SDN:R14::T000039", + "pav:version": "2", + "skos:notation": "SDN:R14::T000039", + "skos:altLabel": "39", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_SurfaceOffsetAfterReset_dbar" + }, + "dc:identifier": "SDN:R14::T000039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface pressure measured after pressure has been corrected on board the float. This is a relative measurement and no further correction is required. Autocorrected. Autocorrecting so no adjustment in either RT or DM typically required. This value used as a check on the autocorrecting of pressure onboard the float. Significant values may indicate a need for additional correction. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000323/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000323/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:42.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000323/2/" + }, + "dce:identifier": "SDN:R14::T000323", + "pav:version": "2", + "skos:notation": "SDN:R14::T000323", + "skos:altLabel": "323", + "dc:date": "2025-12-11 11:04:42.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_Sbe41PUnreliable_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000323", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sbe41 : P unreliable (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000570/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000570/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000570/2/" + }, + "dce:identifier": "SDN:R14::T000570", + "pav:version": "2", + "skos:notation": "SDN:R14::T000570", + "skos:altLabel": "570", + "dc:date": "2025-12-11 11:05:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_SUNAAPFSupplyVoltage_volts" + }, + "dc:identifier": "SDN:R14::T000570", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Voltage measured inside SUNA via ADC. The voltage available to the SUNA just outside its power regulators. SUNA can operate on 6 to 18 VDC. This voltage allows the operator to monitor supply voltage, and in the case of a drop to make decisions on the continued operation of the SUNA. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000486/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000486/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000486/2/" + }, + "dce:identifier": "SDN:R14::T000486", + "pav:version": "2", + "skos:notation": "SDN:R14::T000486", + "skos:altLabel": "486", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_TUR3SampleFrequencyDuringDescent_seconds" + }, + "dc:identifier": "SDN:R14::T000486", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TUR3 descent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000133/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000133/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000133/2/" + }, + "dce:identifier": "SDN:R14::T000133", + "pav:version": "2", + "skos:notation": "SDN:R14::T000133", + "skos:altLabel": "133", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples_COUNT" + }, + "dc:identifier": "SDN:R14::T000133", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total number of samples collected during ascent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900025/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900025/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900025/2/" + }, + "dce:identifier": "SDN:R14::T900025", + "pav:version": "2", + "skos:notation": "SDN:R14::T900025", + "skos:altLabel": "900025", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ParkMean_dbar" + }, + "dc:identifier": "SDN:R14::T900025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Mean pressure during the park phase. MC minus 4 or 296. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000217/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000217/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000217/2/" + }, + "dce:identifier": "SDN:R14::T000217", + "pav:version": "2", + "skos:notation": "SDN:R14::T000217", + "skos:altLabel": "217", + "dc:date": "2025-12-11 11:04:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesEmittedOnPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000217", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames emitted on immersion profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100290/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100290/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100290/2/" + }, + "dce:identifier": "SDN:R14::T100290", + "pav:version": "2", + "skos:notation": "SDN:R14::T100290", + "skos:altLabel": "290.1", + "dc:date": "2025-12-11 11:04:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_FirstGroundingCyclePhase_NUMBER" + }, + "dc:identifier": "SDN:R14::T100290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Phase of the float life or cycle when the first grounding occurred. See the manual for phase definition - this will vary with float type. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000152/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000152/1/" + }, + "pav:authoredOn": "2025-12-11 11:05:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000152/2/" + }, + "dce:identifier": "SDN:R14::T000152", + "pav:version": "2", + "skos:notation": "SDN:R14::T000152", + "skos:altLabel": "152", + "dc:date": "2025-12-11 11:05:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ArgosPositions_COUNT" + }, + "dc:identifier": "SDN:R14::T000152", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total number of Argos positions received. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000296/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000296/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000296/2/" + }, + "dce:identifier": "SDN:R14::T000296", + "pav:version": "2", + "skos:notation": "SDN:R14::T000296", + "skos:altLabel": "296", + "dc:date": "2025-12-11 11:03:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_OptodeFailed_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000296", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optode : Failed (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000580/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000580/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000580/2/" + }, + "dce:identifier": "SDN:R14::T000580", + "pav:version": "2", + "skos:notation": "SDN:R14::T000580", + "skos:altLabel": "580", + "dc:date": "2025-12-11 11:04:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_SubCyclesDoneSinceDeployment_COUNT" + }, + "dc:identifier": "SDN:R14::T000580", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NUMBER_SubCyclesDoneSinceDeployment. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000430/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000430/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000430/2/" + }, + "dce:identifier": "SDN:R14::T000430", + "pav:version": "2", + "skos:notation": "SDN:R14::T000430", + "skos:altLabel": "430", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumBeforeFill_inHg" + }, + "dc:identifier": "SDN:R14::T000430", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumBeforeFill. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000519/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000519/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000519/2/" + }, + "dce:identifier": "SDN:R14::T000519", + "pav:version": "2", + "skos:notation": "SDN:R14::T000519", + "skos:altLabel": "519", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLTAGE_Battery18V_volts" + }, + "dc:identifier": "SDN:R14::T000519", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery voltage of 18v system. Template_Values:{unit:[COUNT, volts, mV]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000454/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000454/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000454/2/" + }, + "dce:identifier": "SDN:R14::T000454", + "pav:version": "2", + "skos:notation": "SDN:R14::T000454", + "skos:altLabel": "454", + "dc:date": "2025-12-11 11:04:30.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_DOXYSampleFrequencyDuringAscent_seconds" + }, + "dc:identifier": "SDN:R14::T000454", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY ascent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000277/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000277/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000277/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "When is ice detection active - months in reverse order. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000277", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_BitMaskMonthsIceDetectionActive_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 11:03:58.0", + "skos:altLabel": "277", + "skos:notation": "SDN:R14::T000277", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000277", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000277/3/" + }, + "pav:authoredOn": "2025-12-11 11:03:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000561/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000561/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000561/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples acquired by during the drift at profile depth. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000561", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ProfileDriftSamples_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:35.0", + "skos:altLabel": "561", + "skos:notation": "SDN:R14::T000561", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000561", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000561/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:35.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100564/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100564/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100564/2/" + }, + "dce:identifier": "SDN:R14::T100564", + "pav:version": "2", + "skos:notation": "SDN:R14::T100564", + "skos:altLabel": "564.1", + "dc:date": "2025-12-11 11:04:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsToLeaveReleasingSystem_COUNT" + }, + "dc:identifier": "SDN:R14::T100564", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions needed to leave the releasing system for floats deployed in Autonomous System for Argo float Release (ASFAR) mode. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200127/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200127/2/" + }, + "dce:identifier": "SDN:R14::T200127", + "pav:version": "2", + "skos:notation": "SDN:R14::T200127", + "skos:altLabel": "127.2", + "dc:date": "2025-12-11 11:04:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsWhenGroundedAtProfilePressure_COUNT" + }, + "dc:identifier": "SDN:R14::T200127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions needed to leave the sea bottom when grounded at profile pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000455/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000455/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000455/2/" + }, + "dce:identifier": "SDN:R14::T000455", + "pav:version": "2", + "skos:notation": "SDN:R14::T000455", + "skos:altLabel": "455", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_DOXYSampleFrequencyDuringDescent_seconds" + }, + "dc:identifier": "SDN:R14::T000455", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DOXY descent acquisition frequency. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000120/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000120/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:17.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000120/2/" + }, + "dce:identifier": "SDN:R14::T000120", + "pav:version": "2", + "skos:notation": "SDN:R14::T000120", + "skos:altLabel": "120", + "dc:date": "2025-12-11 11:04:17.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringDescentToProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000120", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions during descent to start profile pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000102/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000102/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000102/2/" + }, + "dce:identifier": "SDN:R14::T000102", + "pav:version": "2", + "skos:notation": "SDN:R14::T000102", + "skos:altLabel": "102", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_ParkIridiumMessages_COUNT" + }, + "dc:identifier": "SDN:R14::T000102", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of transmitted Iridium messages with park data. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000478/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000478/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000478/2/" + }, + "dce:identifier": "SDN:R14::T000478", + "pav:version": "2", + "skos:notation": "SDN:R14::T000478", + "skos:altLabel": "478", + "dc:date": "2025-12-11 11:04:31.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_Settling0_seconds" + }, + "dc:identifier": "SDN:R14::T000478", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_Settling0. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000209/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000209/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000209/2/" + }, + "dce:identifier": "SDN:R14::T000209", + "pav:version": "2", + "skos:notation": "SDN:R14::T000209", + "skos:altLabel": "209", + "dc:date": "2025-12-11 11:04:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FloatPTOrPTCFrames_COUNT" + }, + "dc:identifier": "SDN:R14::T000209", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - PT or PTC frames. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000265/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000265/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000265/2/" + }, + "dce:identifier": "SDN:R14::T000265", + "pav:version": "2", + "skos:notation": "SDN:R14::T000265", + "skos:altLabel": "265", + "dc:date": "2025-12-11 11:04:38.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "DIAGNOSTICbit_CPUBatteryVoltage_bit" + }, + "dc:identifier": "SDN:R14::T000265", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bit indicating the status of the CPU battery voltage. Template_Values:{unit:[hex, bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000144/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000144/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000144/2/" + }, + "dce:identifier": "SDN:R14::T000144", + "pav:version": "2", + "skos:notation": "SDN:R14::T000144", + "skos:altLabel": "144", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DeepSamplesDuringDescent_COUNT" + }, + "dc:identifier": "SDN:R14::T000144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples collected in deep area during descent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000422/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000422/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000422/2/" + }, + "dce:identifier": "SDN:R14::T000422", + "pav:version": "2", + "skos:notation": "SDN:R14::T000422", + "skos:altLabel": "422", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumAirBladderFull_inHg" + }, + "dc:identifier": "SDN:R14::T000422", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal Vacuum when air (sleeve) bladder is full (IDG Var=VACa). Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000075/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000075/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:19.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000075/2/" + }, + "dce:identifier": "SDN:R14::T000075", + "pav:version": "2", + "skos:notation": "SDN:R14::T000075", + "skos:altLabel": "75", + "dc:date": "2025-12-11 11:04:19.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TimeGrounded_HHMM" + }, + "dc:identifier": "SDN:R14::T000075", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time the float grounded. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000168/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000168/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000168/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Profile relative. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000168", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesRelative_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "168", + "skos:notation": "SDN:R14::T000168", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000168", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000168/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100278/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100278/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:47.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100278/2/" + }, + "dce:identifier": "SDN:R14::T100278", + "pav:version": "2", + "skos:notation": "SDN:R14::T100278", + "skos:altLabel": "278.1", + "dc:date": "2025-12-11 11:04:47.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_CTDFastPressureError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T100278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether there is an error on CTD fast pressure command. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000446/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000446/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000446/2/" + }, + "dce:identifier": "SDN:R14::T000446", + "pav:version": "2", + "skos:notation": "SDN:R14::T000446", + "skos:altLabel": "446", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_Ascent1900DB_seconds" + }, + "dc:identifier": "SDN:R14::T000446", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TIME_Ascent1900DB. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100556/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100556/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100556/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T100556", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentIridiumPackets_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "556.1", + "skos:notation": "SDN:R14::T100556", + "pav:version": "3", + "dce:identifier": "SDN:R14::T100556", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100556/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000424/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000424/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000424/2/" + }, + "dce:identifier": "SDN:R14::T000424", + "pav:version": "2", + "skos:notation": "SDN:R14::T000424", + "skos:altLabel": "424", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRESSURE_InternalVacuumOilBladderEmpty_inHg" + }, + "dc:identifier": "SDN:R14::T000424", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal vacuum when all oil is inside pressure case. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg, PercentAtm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000112/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000112/2/" + }, + "dce:identifier": "SDN:R14::T000112", + "pav:version": "2", + "skos:notation": "SDN:R14::T000112", + "skos:altLabel": "112", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescentToProfileEntriesInProfileMargin_COUNT" + }, + "dc:identifier": "SDN:R14::T000112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent to profile pressure: number of entries in margin around profile pressure target - specifically, how many times the float enters the band of pressure surrounding the target profile pressure (generally +/- 30db). Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000191/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000191/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000191/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Descending profile measurements - Surface absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000191", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_DescendingSamplesShallowAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:33.0", + "skos:altLabel": "191", + "skos:notation": "SDN:R14::T000191", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000191", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000191/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000085/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000085/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000085/2/" + }, + "dce:identifier": "SDN:R14::T000085", + "pav:version": "2", + "skos:notation": "SDN:R14::T000085", + "skos:altLabel": "85", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_FirstEmergencyAscent_dbar" + }, + "dc:identifier": "SDN:R14::T000085", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure that triggered the first emergency ascent. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100391/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100391/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100391/2/" + }, + "dce:identifier": "SDN:R14::T100391", + "pav:version": "2", + "skos:notation": "SDN:R14::T100391", + "skos:altLabel": "391.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ExceededMaximumProfileDepth_dbar" + }, + "dc:identifier": "SDN:R14::T100391", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure where the float exceeds its maximum profile depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000136/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000136/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000136/2/" + }, + "dce:identifier": "SDN:R14::T000136", + "pav:version": "2", + "skos:notation": "SDN:R14::T000136", + "skos:altLabel": "136", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscentSamples3rdBounceProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000136", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce profile length for this bounce. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000414/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000414/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000414/2/" + }, + "dce:identifier": "SDN:R14::T000414", + "pav:version": "2", + "skos:notation": "SDN:R14::T000414", + "skos:altLabel": "414", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_WhenInWaterSensed_degC" + }, + "dc:identifier": "SDN:R14::T000414", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature from P,T,S when in water sensed. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000071/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000071/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000071/2/" + }, + "dce:identifier": "SDN:R14::T000071", + "pav:version": "2", + "skos:notation": "SDN:R14::T000071", + "skos:altLabel": "71", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_FloatDateTimeDownTimeExpired_YYYYMMDDHHMMSS" + }, + "dc:identifier": "SDN:R14::T000071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of expiry of the descent time and beginning of ascent. Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400488/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400488/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400488/2/" + }, + "dce:identifier": "SDN:R14::T400488", + "pav:version": "2", + "skos:notation": "SDN:R14::T400488", + "skos:altLabel": "488.4", + "dc:date": "2025-12-11 11:04:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "VOLUME_OilVolumeTransferredDuringDescentToProfile_cm^3" + }, + "dc:identifier": "SDN:R14::T400488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Oil volume transferred from the external bladder during the descent to start profile pressure. This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToProfile_COUNT valve actions (Id 125). Reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000244/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000244/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000244/2/" + }, + "dce:identifier": "SDN:R14::T000244", + "pav:version": "2", + "skos:notation": "SDN:R14::T000244", + "skos:altLabel": "244", + "dc:date": "2025-12-11 11:04:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_TransmissionFloatFramesTechnical_COUNT" + }, + "dc:identifier": "SDN:R14::T000244", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission (PROVOR frames) - Technical frames. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000491/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000491/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000491/2/" + }, + "dce:identifier": "SDN:R14::T000491", + "pav:version": "2", + "skos:notation": "SDN:R14::T000491", + "skos:altLabel": "491", + "dc:date": "2025-12-11 11:04:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CURRENT_BatteryFlntu_mA" + }, + "dc:identifier": "SDN:R14::T000491", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Battery current measured when Flntu sampled at unspecified time in profile. Template_Values:{unit:[COUNT, amps, mA]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000438/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000438/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:57.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000438/2/" + }, + "dce:identifier": "SDN:R14::T000438", + "pav:version": "2", + "skos:notation": "SDN:R14::T000438", + "skos:altLabel": "438", + "dc:date": "2025-12-11 11:04:57.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMPERATURE_InternalVacuumProfileStart_degC" + }, + "dc:identifier": "SDN:R14::T000438", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal tube temperature at the profile depth. Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000095/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000095/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000095/2/" + }, + "dce:identifier": "SDN:R14::T000095", + "pav:version": "2", + "skos:notation": "SDN:R14::T000095", + "skos:altLabel": "95", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_LastAscentPumpedRawSample_dbar" + }, + "dc:identifier": "SDN:R14::T000095", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last (shallowest) pumped raw pressure sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped). This may be duplicated in the traj files with MC599. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600104/2/" + }, + "dce:identifier": "SDN:R14::T600104", + "pav:version": "2", + "skos:notation": "SDN:R14::T600104", + "skos:altLabel": "104.6", + "dc:date": "2025-12-11 11:04:51.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_RemoteControlCommandOK_COUNT" + }, + "dc:identifier": "SDN:R14::T600104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of remote control commands successfully considered. The float can receive message with multiple remote commands. It reports the number of received messages (in FLAG_RemoteControlMessageOK_COUNT and FLAG_RemoteControlMessageKO_COUNT) and also the the number of received commands (in these 2 new labels). See ID 310. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100303/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100303/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100303/2/" + }, + "dce:identifier": "SDN:R14::T100303", + "pav:version": "2", + "skos:notation": "SDN:R14::T100303", + "skos:altLabel": "303.1", + "dc:date": "2025-12-11 11:04:33.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_InitialCheckError_LOGICAL" + }, + "dc:identifier": "SDN:R14::T100303", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Auto-test is performed at the beginning of the mission (Either 0 = Problem, 1 = OK, or detailed auto-test for float hardware resulting in a detailed code for each tested sub-part). Template_Values:{unit:[LOGICAL, NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000373/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000373/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000373/2/" + }, + "dce:identifier": "SDN:R14::T000373", + "pav:version": "2", + "skos:notation": "SDN:R14::T000373", + "skos:altLabel": "373", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescendingProfileReductionBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000373", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descending profile reduction Deep zone slices thickness - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000160/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000160/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000160/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ascending profile measurements - Deep absolute. Template_Values:{unit:[COUNT];short_sensor_name:[Crover, Ctd, CTD, Cyc, Eco, Flbb, Flntu, Mcoms, Ocr, Optode, Ph, Sfet, Stm, Suna]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R14::T000160", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_AscendingSamplesDeepAbsolute_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-01-19 15:35:34.0", + "skos:altLabel": "160", + "skos:notation": "SDN:R14::T000160", + "pav:version": "3", + "dce:identifier": "SDN:R14::T000160", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000160/3/" + }, + "pav:authoredOn": "2026-01-19 15:35:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000309/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000309/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000309/2/" + }, + "dce:identifier": "SDN:R14::T000309", + "pav:version": "2", + "skos:notation": "SDN:R14::T000309", + "skos:altLabel": "309", + "dc:date": "2025-12-11 11:04:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_RemoteControlMessageKO_COUNT" + }, + "dc:identifier": "SDN:R14::T000309", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of received messages which have been rejected by the float. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900030/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900030/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900030/2/" + }, + "dce:identifier": "SDN:R14::T900030", + "pav:version": "2", + "skos:notation": "SDN:R14::T900030", + "skos:altLabel": "900030", + "dc:date": "2025-12-11 11:04:54.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PSAL_LastAscentPumpedRawSample_psu" + }, + "dc:identifier": "SDN:R14::T900030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated - Last (shallowest) pumped raw salinity sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped). MC599. Template_Values:{unit:[psu, mpsu]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000104/2/" + }, + "dce:identifier": "SDN:R14::T000104", + "pav:version": "2", + "skos:notation": "SDN:R14::T000104", + "skos:altLabel": "104", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_IridiumPacketsReceivedPreviousSession_COUNT" + }, + "dc:identifier": "SDN:R14::T000104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Incoming Iridium Packets Received during previous session. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000054/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000054/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000054/2/" + }, + "dce:identifier": "SDN:R14::T000054", + "pav:version": "2", + "skos:notation": "SDN:R14::T000054", + "skos:altLabel": "54", + "dc:date": "2025-12-11 11:04:16.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_StartDescentToProfile_hours" + }, + "dc:identifier": "SDN:R14::T000054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time when descent to profile pressure starts. The raw values can be in the tech file only if it is not possible to calculate the final JULD in real time. JULD_PARK_END and JULD with MC=300. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000119/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000119/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000119/2/" + }, + "dce:identifier": "SDN:R14::T000119", + "pav:version": "2", + "skos:notation": "SDN:R14::T000119", + "skos:altLabel": "119", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_PumpActionsDuringDescentToPark_COUNT" + }, + "dc:identifier": "SDN:R14::T000119", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of pump actions between the crossing of the gap threshold and the end of descent at park pressure. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000128/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000128/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000128/2/" + }, + "dce:identifier": "SDN:R14::T000128", + "pav:version": "2", + "skos:notation": "SDN:R14::T000128", + "skos:altLabel": "128", + "dc:date": "2025-12-11 11:04:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_MotorActionsDuringProfileDrift_COUNT" + }, + "dc:identifier": "SDN:R14::T000128", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of motor actions while drifting at profile depth. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000406/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000406/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000406/2/" + }, + "dce:identifier": "SDN:R14::T000406", + "pav:version": "2", + "skos:notation": "SDN:R14::T000406", + "skos:altLabel": "406", + "dc:date": "2025-12-11 11:04:26.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_ShallowestInProfile_dbar" + }, + "dc:identifier": "SDN:R14::T000406", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Shallowest profile point. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000063/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000063/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000063/2/" + }, + "dce:identifier": "SDN:R14::T000063", + "pav:version": "2", + "skos:notation": "SDN:R14::T000063", + "skos:altLabel": "63", + "dc:date": "2025-12-11 11:04:34.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CLOCK_TimeFirstParkSample_hours" + }, + "dc:identifier": "SDN:R14::T000063", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float internal clock time of the first park sample. Template_Values:{unit:[days, hours, minutes, seconds, FloatDay, YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000566/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000566/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000566/2/" + }, + "dce:identifier": "SDN:R14::T000566", + "pav:version": "2", + "skos:notation": "SDN:R14::T000566", + "skos:altLabel": "566", + "dc:date": "2025-12-11 11:04:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_VectorToSensorBoardsDialogErrors_COUNT" + }, + "dc:identifier": "SDN:R14::T000566", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of dialog errors between vector and sensor boards. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000341/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000341/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000341/2/" + }, + "dce:identifier": "SDN:R14::T000341", + "pav:version": "2", + "skos:notation": "SDN:R14::T000341", + "skos:altLabel": "341", + "dc:date": "2025-12-11 11:04:44.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_TimerDone_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000341", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Timer done (Yes or No). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400104/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400104/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400104/2/" + }, + "dce:identifier": "SDN:R14::T400104", + "pav:version": "2", + "skos:notation": "SDN:R14::T400104", + "skos:altLabel": "104.4", + "dc:date": "2025-12-11 11:04:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_InAirIridiumPackets_COUNT" + }, + "dc:identifier": "SDN:R14::T400104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Iridium packets used to transmit sensor data collected during the in air measurement phase. Internal counter measured by the float. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000213/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000213/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000213/2/" + }, + "dce:identifier": "SDN:R14::T000213", + "pav:version": "2", + "skos:notation": "SDN:R14::T000213", + "skos:altLabel": "213", + "dc:date": "2025-12-11 11:04:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "NUMBER_FramesCrcOkOnDescendingProfile_COUNT" + }, + "dc:identifier": "SDN:R14::T000213", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Distinct frames received with crc ok on descending profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000460/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000460/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000460/2/" + }, + "dce:identifier": "SDN:R14::T000460", + "pav:version": "2", + "skos:notation": "SDN:R14::T000460", + "skos:altLabel": "460", + "dc:date": "2025-12-11 11:04:00.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "TIME_SinceLastIridiumGPSFix_DD" + }, + "dc:identifier": "SDN:R14::T000460", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Days since the last GPS fix/Hours since the Last GPS Fix (HH). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000087/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000087/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000087/2/" + }, + "dce:identifier": "SDN:R14::T000087", + "pav:version": "2", + "skos:notation": "SDN:R14::T000087", + "skos:altLabel": "87", + "dc:date": "2025-12-11 11:04:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "FLAG_EmergencyAscent_LOGICAL" + }, + "dc:identifier": "SDN:R14::T000087", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicate whether an emergency ascent was performed. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000376/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000376/1/" + }, + "pav:authoredOn": "2025-12-11 11:03:59.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000376/2/" + }, + "dce:identifier": "SDN:R14::T000376", + "pav:version": "2", + "skos:notation": "SDN:R14::T000376", + "skos:altLabel": "376", + "dc:date": "2025-12-11 11:03:59.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_DescentStartAfterReset_dbar" + }, + "dc:identifier": "SDN:R14::T000376", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure after pressure reset just prior to descent (IDG VAR=PFS). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000365/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000365/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000365/2/" + }, + "dce:identifier": "SDN:R14::T000365", + "pav:version": "2", + "skos:notation": "SDN:R14::T000365", + "skos:altLabel": "365", + "dc:date": "2025-12-11 11:04:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PRES_AscendingProfileReductionBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R14::T000365", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending profile reduction Deep zone slices thickness - ETF. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000023/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000023/1/" + }, + "pav:authoredOn": "2025-12-11 11:04:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000023/2/" + }, + "dce:identifier": "SDN:R14::T000023", + "pav:version": "2", + "skos:notation": "SDN:R14::T000023", + "skos:altLabel": "23", + "dc:date": "2025-12-11 11:04:23.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "IRRADIANCE_W3_MeanBeforeAscent_uW/cm^2/nm" + }, + "dc:identifier": "SDN:R14::T000023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio parameter statistic. Template_Values:{unit:[uW/cm^2/nm]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000506/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000360/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000155/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000215/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000492/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000231/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000457/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000204/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000441/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000541/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000425/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100260/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000489/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000220/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000554/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000268/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000134/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100546/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000163/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000228/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000110/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000331/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000473/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000538/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000158/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000347/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000252/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000282/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000317/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000315/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000250/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000384/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000552/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100115/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000449/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000298/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000520/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000266/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T120127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000363/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000568/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000428/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000522/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000536/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000193/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000471/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000495/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000226/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000142/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000161/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000504/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000528/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000301/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000487/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000284/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000433/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000121/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000479/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000169/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000447/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000234/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200556/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000105/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000395/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000544/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000107/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000174/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200554/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000239/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000571/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000333/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000302/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000465/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000318/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000253/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100118/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000285/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000221/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000245/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400520/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000180/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000523/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000444/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000509/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000269/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100123/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000129/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000172/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000223/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000539/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000474/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000557/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000229/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000507/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000164/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000442/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000355/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000410/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100520/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000514/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000156/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000434/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000458/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000334/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000497/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000426/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000166/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000385/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000466/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000113/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000276/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000123/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000345/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000280/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000369/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000255/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000404/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000171/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000236/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100287/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200557/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000550/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000387/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000481/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000546/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000542/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100105/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200260/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100407/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000232/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000450/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000510/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000366/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000515/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000260/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000325/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000525/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000558/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100398/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000493/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000224/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100492/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000498/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000526/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000183/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000461/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100571/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000216/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000304/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000151/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000124/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000477/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000371/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000208/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000287/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000143/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000436/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000167/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000530/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000445/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000111/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000256/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100245/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000413/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000350/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000237/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000159/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000415/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000578/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000103/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000396/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000405/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000340/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000482/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000429/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000364/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000547/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000292/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000388/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000357/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000332/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000356/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000291/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100132/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000326/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000300/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200520/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000420/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000324/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100330/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000336/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000348/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000283/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100124/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000240/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000316/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000305/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000251/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100361/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000468/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100527/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000115/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000275/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T210407/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000562/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000299/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000372/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000288/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000437/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000521/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000267/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000247/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000531/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000545/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000480/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000569/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000235/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000513/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000170/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000537/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000472/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000579/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000310/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000496/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100554/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000227/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000505/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000162/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300557/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000440/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000320/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000529/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000464/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000293/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000130/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000358/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000432/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000452/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000368/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000517/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100288/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000456/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000391/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000178/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000122/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000272/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000421/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000337/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000448/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100558/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T110127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000431/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100493/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000114/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000351/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100461/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200571/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000469/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000116/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000400/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100273/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000106/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000279/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000563/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000210/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000399/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200407/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000367/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000342/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000258/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000407/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000335/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000270/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000352/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000501/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000417/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000303/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000311/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000327/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000262/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000321/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000540/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000484/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000286/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000131/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000549/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000294/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000230/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000359/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000319/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100418/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000254/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100364/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000453/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000518/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000556/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000263/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000222/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000328/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T700271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000500/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000246/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000524/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300520/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000483/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000214/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000242/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000238/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000516/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000307/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000401/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000475/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000206/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000564/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000141/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000211/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200361/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000499/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000374/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000508/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000165/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000467/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000533/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200418/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000202/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000411/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000343/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000259/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000157/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000408/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000435/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000153/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000370/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000353/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000218/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000502/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000459/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000418/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T500104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000125/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000403/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000312/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000427/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000362/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000485/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000386/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000132/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000117/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000295/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000330/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400557/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100529/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000354/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000560/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000109/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000264/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000322/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000329/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000346/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000274/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000423/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000281/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000339/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T300407/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000314/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000243/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000338/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000273/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200558/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000308/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000297/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000118/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000402/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000306/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000565/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000241/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000212/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000375/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000543/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000289/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000567/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000534/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000233/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000511/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000344/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000257/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000409/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000535/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000192/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000154/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000201/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100311/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000219/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000559/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000494/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000225/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000503/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000313/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000476/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000249/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000527/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000184/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100557/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000462/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000323/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000570/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000486/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000133/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000217/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000152/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000296/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000580/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000430/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000519/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000454/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000277/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000561/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100564/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T200127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000455/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000120/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000102/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000478/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000209/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000265/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000422/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000168/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000446/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100556/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000424/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000191/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100391/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000414/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000244/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000491/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000438/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T600104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T100303/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000373/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000160/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000309/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T900030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000119/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000128/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000406/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000566/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000341/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T400104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000213/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000460/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000376/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R14/current/T000365/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of technical parameters reported by a float at every cycle. Technical parameter names are stored in the float 'tech.nc' file, under TECHNICAL_PARAMETER_NAME, which is populated by R14 prefLabel. Detailed information (incl. Template_Values explanation) is in the user manual (https://dx.doi.org/10.13155/29825), in the Reference Table 14 section.", + "dc:title": "Argo technical parameter names", + "skos:prefLabel": "Argo technical parameter names", + "owl:versionInfo": "6", + "dc:date": "2026-03-27 02:00:00.0", + "skos:altLabel": "TECHNICAL_PARAMETER_NAME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "TECHNICAL_PARAMETER_NAME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R15.jsonld b/file_checker_spec/NVS/R15.jsonld new file mode 100644 index 0000000..819a526 --- /dev/null +++ b/file_checker_spec/NVS/R15.jsonld @@ -0,0 +1,6329 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/687/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/687/1/" + }, + "dce:identifier": "SDN:R15::687", + "pav:version": "1", + "skos:notation": "SDN:R15::687", + "skos:altLabel": "687", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-13" + }, + "dc:identifier": "SDN:R15::687", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (TST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/435/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/435/1/" + }, + "dce:identifier": "SDN:R15::435", + "pav:version": "1", + "skos:notation": "SDN:R15::435", + "skos:altLabel": "435", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-15" + }, + "dc:identifier": "SDN:R15::435", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DPST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/810/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/810/1/" + }, + "dce:identifier": "SDN:R15::810", + "pav:version": "1", + "skos:notation": "SDN:R15::810", + "skos:altLabel": "810", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET+10" + }, + "dc:identifier": "SDN:R15::810", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/690/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/690/1/" + }, + "dce:identifier": "SDN:R15::690", + "pav:version": "1", + "skos:notation": "SDN:R15::690", + "skos:altLabel": "690", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-10" + }, + "dc:identifier": "SDN:R15::690", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards TST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/499/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/499/1/" + }, + "dce:identifier": "SDN:R15::499", + "pav:version": "1", + "skos:notation": "SDN:R15::499", + "skos:altLabel": "499", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-1" + }, + "dc:identifier": "SDN:R15::499", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards AST (see AST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/248/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/248/1/" + }, + "dce:identifier": "SDN:R15::248", + "pav:version": "1", + "skos:notation": "SDN:R15::248", + "skos:altLabel": "248", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-2" + }, + "dc:identifier": "SDN:R15::248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards PST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/239/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/239/1/" + }, + "dce:identifier": "SDN:R15::239", + "pav:version": "1", + "skos:notation": "SDN:R15::239", + "skos:altLabel": "239", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-11" + }, + "dc:identifier": "SDN:R15::239", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/444/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/444/1/" + }, + "dce:identifier": "SDN:R15::444", + "pav:version": "1", + "skos:notation": "SDN:R15::444", + "skos:altLabel": "444", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-6" + }, + "dc:identifier": "SDN:R15::444", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DPST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/148/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/148/1/" + }, + "dce:identifier": "SDN:R15::148", + "pav:version": "1", + "skos:notation": "SDN:R15::148", + "skos:altLabel": "148", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-2" + }, + "dc:identifier": "SDN:R15::148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards FST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/289/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/289/1/" + }, + "dce:identifier": "SDN:R15::289", + "pav:version": "1", + "skos:notation": "SDN:R15::289", + "skos:altLabel": "289", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-11" + }, + "dc:identifier": "SDN:R15::289", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/485/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/485/1/" + }, + "dce:identifier": "SDN:R15::485", + "pav:version": "1", + "skos:notation": "SDN:R15::485", + "skos:altLabel": "485", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-15" + }, + "dc:identifier": "SDN:R15::485", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (AST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/696/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/696/1/" + }, + "dce:identifier": "SDN:R15::696", + "pav:version": "1", + "skos:notation": "SDN:R15::696", + "skos:altLabel": "696", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-4" + }, + "dc:identifier": "SDN:R15::696", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to TST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/600/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/600/1/" + }, + "dce:identifier": "SDN:R15::600", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/AET/" + }, + "skos:notation": "SDN:R15::600", + "skos:altLabel": "600", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET" + }, + "dc:identifier": "SDN:R15::600", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at the end of ascent." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/790/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/790/1/" + }, + "dce:identifier": "SDN:R15::790", + "pav:version": "1", + "skos:notation": "SDN:R15::790", + "skos:altLabel": "790", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-10" + }, + "dc:identifier": "SDN:R15::790", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards TET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/90/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/90/1/" + }, + "dce:identifier": "SDN:R15::90", + "pav:version": "1", + "skos:notation": "SDN:R15::90", + "skos:altLabel": "90", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-10" + }, + "dc:identifier": "SDN:R15::90", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/140/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/140/1/" + }, + "dce:identifier": "SDN:R15::140", + "pav:version": "1", + "skos:notation": "SDN:R15::140", + "skos:altLabel": "140", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-10" + }, + "dc:identifier": "SDN:R15::140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards FST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/538/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/538/1/" + }, + "dce:identifier": "SDN:R15::538", + "pav:version": "1", + "skos:notation": "SDN:R15::538", + "skos:altLabel": "538", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-12" + }, + "dc:identifier": "SDN:R15::538", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DAST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/394/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/394/1/" + }, + "dce:identifier": "SDN:R15::394", + "pav:version": "1", + "skos:notation": "SDN:R15::394", + "skos:altLabel": "394", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-6" + }, + "dc:identifier": "SDN:R15::394", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DDET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/494/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/494/1/" + }, + "dce:identifier": "SDN:R15::494", + "pav:version": "1", + "skos:notation": "SDN:R15::494", + "skos:altLabel": "494", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-6" + }, + "dc:identifier": "SDN:R15::494", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards AST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/110/", + "pav:authoredOn": "2025-09-02 12:51:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/110/1/" + }, + "dce:identifier": "SDN:R15::110", + "pav:version": "1", + "skos:notation": "SDN:R15::110", + "skos:altLabel": "110", + "dc:date": "2025-09-02 12:51:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST+10" + }, + "dc:identifier": "SDN:R15::110", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/146/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/146/1/" + }, + "dce:identifier": "SDN:R15::146", + "pav:version": "1", + "skos:notation": "SDN:R15::146", + "skos:altLabel": "146", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-4" + }, + "dc:identifier": "SDN:R15::146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to FST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/0/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/0/1/" + }, + "dce:identifier": "SDN:R15::0", + "pav:version": "1", + "skos:notation": "SDN:R15::0", + "skos:altLabel": "0", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Launch time" + }, + "dc:identifier": "SDN:R15::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Launch time and location of the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/385/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/385/1/" + }, + "dce:identifier": "SDN:R15::385", + "pav:version": "1", + "skos:notation": "SDN:R15::385", + "skos:altLabel": "385", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-15" + }, + "dc:identifier": "SDN:R15::385", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DDET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/688/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/688/1/" + }, + "dce:identifier": "SDN:R15::688", + "pav:version": "1", + "skos:notation": "SDN:R15::688", + "skos:altLabel": "688", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-12" + }, + "dc:identifier": "SDN:R15::688", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (TST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/298/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/298/1/" + }, + "dce:identifier": "SDN:R15::298", + "pav:version": "1", + "skos:notation": "SDN:R15::298", + "skos:altLabel": "298", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-2" + }, + "dc:identifier": "SDN:R15::298", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards PET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/187/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/187/1/" + }, + "dce:identifier": "SDN:R15::187", + "pav:version": "1", + "skos:notation": "SDN:R15::187", + "skos:altLabel": "187", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-13" + }, + "dc:identifier": "SDN:R15::187", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/711/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/711/1/" + }, + "dce:identifier": "SDN:R15::711", + "pav:version": "1", + "skos:notation": "SDN:R15::711", + "skos:altLabel": "711", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "LMT+11" + }, + "dc:identifier": "SDN:R15::711", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/96/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/96/1/" + }, + "dce:identifier": "SDN:R15::96", + "pav:version": "1", + "skos:notation": "SDN:R15::96", + "skos:altLabel": "96", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-4" + }, + "dc:identifier": "SDN:R15::96", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/550/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/550/1/" + }, + "dce:identifier": "SDN:R15::550", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DAST/" + }, + "skos:notation": "SDN:R15::550", + "skos:altLabel": "550", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST" + }, + "dc:identifier": "SDN:R15::550", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at the start of the float's ascent from profile pressure to drift pressure. Used for floats that profile on descent and then move back up to drift pressure." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/149/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/149/1/" + }, + "dce:identifier": "SDN:R15::149", + "pav:version": "1", + "skos:notation": "SDN:R15::149", + "skos:altLabel": "149", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-1" + }, + "dc:identifier": "SDN:R15::149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards FST (see FST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/811/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/811/1/" + }, + "dce:identifier": "SDN:R15::811", + "pav:version": "1", + "skos:notation": "SDN:R15::811", + "skos:altLabel": "811", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET+11" + }, + "dc:identifier": "SDN:R15::811", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/389/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/389/1/" + }, + "dce:identifier": "SDN:R15::389", + "pav:version": "1", + "skos:notation": "SDN:R15::389", + "skos:altLabel": "389", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-11" + }, + "dc:identifier": "SDN:R15::389", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/702/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Earliest time of all messages received by telecommunications system - may or may not have a location fix." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R15::702", + "skos:prefLabel": { + "@language": "en", + "@value": "FMT" + }, + "owl:versionInfo": "1", + "dc:date": "2021-11-30 09:53:34.0", + "skos:altLabel": "702", + "skos:notation": "SDN:R15::702", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/RMC/current/RSPEC/" + }, + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FMT/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R15::702", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/702/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/87/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/87/1/" + }, + "dce:identifier": "SDN:R15::87", + "pav:version": "1", + "skos:notation": "SDN:R15::87", + "skos:altLabel": "87", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-13" + }, + "dc:identifier": "SDN:R15::87", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/500/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/500/1/" + }, + "dce:identifier": "SDN:R15::500", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/AST/" + }, + "skos:notation": "SDN:R15::500", + "skos:altLabel": "500", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST" + }, + "dc:identifier": "SDN:R15::500", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at the start of the float's ascent to the surface." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/198/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/198/1/" + }, + "dce:identifier": "SDN:R15::198", + "pav:version": "1", + "skos:notation": "SDN:R15::198", + "skos:altLabel": "198", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-2" + }, + "dc:identifier": "SDN:R15::198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/436/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/436/1/" + }, + "dce:identifier": "SDN:R15::436", + "pav:version": "1", + "skos:notation": "SDN:R15::436", + "skos:altLabel": "436", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-14" + }, + "dc:identifier": "SDN:R15::436", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DPST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/275/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/275/1/" + }, + "dce:identifier": "SDN:R15::275", + "pav:version": "1", + "skos:notation": "SDN:R15::275", + "skos:altLabel": "275", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RAFOS" + }, + "dc:identifier": "SDN:R15::275", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "RAFOS positions and times determined during drift." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/697/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/697/1/" + }, + "dce:identifier": "SDN:R15::697", + "pav:version": "1", + "skos:notation": "SDN:R15::697", + "skos:altLabel": "697", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-3" + }, + "dc:identifier": "SDN:R15::697", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards TST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/700/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/700/1/" + }, + "dce:identifier": "SDN:R15::700", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/TST/" + }, + "skos:notation": "SDN:R15::700", + "skos:altLabel": "700", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST" + }, + "dc:identifier": "SDN:R15::700", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time and location of the start of transmission for the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/196/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/196/1/" + }, + "dce:identifier": "SDN:R15::196", + "pav:version": "1", + "skos:notation": "SDN:R15::196", + "skos:altLabel": "196", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-4" + }, + "dc:identifier": "SDN:R15::196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/189/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/189/1/" + }, + "dce:identifier": "SDN:R15::189", + "pav:version": "1", + "skos:notation": "SDN:R15::189", + "skos:altLabel": "189", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-11" + }, + "dc:identifier": "SDN:R15::189", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/545/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/545/1/" + }, + "dce:identifier": "SDN:R15::545", + "pav:version": "1", + "skos:notation": "SDN:R15::545", + "skos:altLabel": "545", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-5" + }, + "dc:identifier": "SDN:R15::545", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DAST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/799/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/799/1/" + }, + "dce:identifier": "SDN:R15::799", + "pav:version": "1", + "skos:notation": "SDN:R15::799", + "skos:altLabel": "799", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-1" + }, + "dc:identifier": "SDN:R15::799", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards TET (see TET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/85/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/85/1/" + }, + "dce:identifier": "SDN:R15::85", + "pav:version": "1", + "skos:notation": "SDN:R15::85", + "skos:altLabel": "85", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-15" + }, + "dc:identifier": "SDN:R15::85", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/902/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/902/1/" + }, + "dce:identifier": "SDN:R15::902", + "pav:version": "1", + "skos:notation": "SDN:R15::902", + "skos:altLabel": "902", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Time before recovery" + }, + "dc:identifier": "SDN:R15::902", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last time before float recovery. For floats that have been recovered, it is important to know when this occurred. This time in the JULD array will be the last time before the float was recovered. Determined by inspection of data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/597/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/597/1/" + }, + "dce:identifier": "SDN:R15::597", + "pav:version": "1", + "skos:notation": "SDN:R15::597", + "skos:altLabel": "597", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-3" + }, + "dc:identifier": "SDN:R15::597", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards AET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/398/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/398/1/" + }, + "dce:identifier": "SDN:R15::398", + "pav:version": "1", + "skos:notation": "SDN:R15::398", + "skos:altLabel": "398", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-2" + }, + "dc:identifier": "SDN:R15::398", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DDET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/400/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/400/1/" + }, + "dce:identifier": "SDN:R15::400", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DDET/" + }, + "skos:notation": "SDN:R15::400", + "skos:altLabel": "400", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET" + }, + "dc:identifier": "SDN:R15::400", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float first approaches within 3% of the eventual deep drift/profile pressure. This variable is based on pressure only and can be measured or estimated." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/539/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/539/1/" + }, + "dce:identifier": "SDN:R15::539", + "pav:version": "1", + "skos:notation": "SDN:R15::539", + "skos:altLabel": "539", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-11" + }, + "dc:identifier": "SDN:R15::539", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/395/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/395/1/" + }, + "dce:identifier": "SDN:R15::395", + "pav:version": "1", + "skos:notation": "SDN:R15::395", + "skos:altLabel": "395", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-5" + }, + "dc:identifier": "SDN:R15::395", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DDET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/586/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/586/1/" + }, + "dce:identifier": "SDN:R15::586", + "pav:version": "1", + "skos:notation": "SDN:R15::586", + "skos:altLabel": "586", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-14" + }, + "dc:identifier": "SDN:R15::586", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (AET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/111/", + "pav:authoredOn": "2025-09-02 12:51:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/111/1/" + }, + "dce:identifier": "SDN:R15::111", + "pav:version": "1", + "skos:notation": "SDN:R15::111", + "skos:altLabel": "111", + "dc:date": "2025-09-02 12:51:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST+11" + }, + "dc:identifier": "SDN:R15::111", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/249/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/249/1/" + }, + "dce:identifier": "SDN:R15::249", + "pav:version": "1", + "skos:notation": "SDN:R15::249", + "skos:altLabel": "249", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-1" + }, + "dc:identifier": "SDN:R15::249", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards PST (see PST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/547/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/547/1/" + }, + "dce:identifier": "SDN:R15::547", + "pav:version": "1", + "skos:notation": "SDN:R15::547", + "skos:altLabel": "547", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-3" + }, + "dc:identifier": "SDN:R15::547", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DAST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/588/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/588/1/" + }, + "dce:identifier": "SDN:R15::588", + "pav:version": "1", + "skos:notation": "SDN:R15::588", + "skos:altLabel": "588", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-12" + }, + "dc:identifier": "SDN:R15::588", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (AET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/445/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/445/1/" + }, + "dce:identifier": "SDN:R15::445", + "pav:version": "1", + "skos:notation": "SDN:R15::445", + "skos:altLabel": "445", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-5" + }, + "dc:identifier": "SDN:R15::445", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DPST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/386/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/386/1/" + }, + "dce:identifier": "SDN:R15::386", + "pav:version": "1", + "skos:notation": "SDN:R15::386", + "skos:altLabel": "386", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-14" + }, + "dc:identifier": "SDN:R15::386", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DDET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/788/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/788/1/" + }, + "dce:identifier": "SDN:R15::788", + "pav:version": "1", + "skos:notation": "SDN:R15::788", + "skos:altLabel": "788", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-12" + }, + "dc:identifier": "SDN:R15::788", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (TET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/135/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/135/1/" + }, + "dce:identifier": "SDN:R15::135", + "pav:version": "1", + "skos:notation": "SDN:R15::135", + "skos:altLabel": "135", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-15" + }, + "dc:identifier": "SDN:R15::135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (FST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/486/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/486/1/" + }, + "dce:identifier": "SDN:R15::486", + "pav:version": "1", + "skos:notation": "SDN:R15::486", + "skos:altLabel": "486", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-14" + }, + "dc:identifier": "SDN:R15::486", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (AST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/138/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/138/1/" + }, + "dce:identifier": "SDN:R15::138", + "pav:version": "1", + "skos:notation": "SDN:R15::138", + "skos:altLabel": "138", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-12" + }, + "dc:identifier": "SDN:R15::138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (FST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/94/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/94/1/" + }, + "dce:identifier": "SDN:R15::94", + "pav:version": "1", + "skos:notation": "SDN:R15::94", + "skos:altLabel": "94", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-6" + }, + "dc:identifier": "SDN:R15::94", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/97/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/97/1/" + }, + "dce:identifier": "SDN:R15::97", + "pav:version": "1", + "skos:notation": "SDN:R15::97", + "skos:altLabel": "97", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-3" + }, + "dc:identifier": "SDN:R15::97", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/447/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/447/1/" + }, + "dce:identifier": "SDN:R15::447", + "pav:version": "1", + "skos:notation": "SDN:R15::447", + "skos:altLabel": "447", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-3" + }, + "dc:identifier": "SDN:R15::447", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DPST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/488/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/488/1/" + }, + "dce:identifier": "SDN:R15::488", + "pav:version": "1", + "skos:notation": "SDN:R15::488", + "skos:altLabel": "488", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-12" + }, + "dc:identifier": "SDN:R15::488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (AST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/LLT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FLT/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Surface times and locations (if available) during surface drift. Should be listed in chronological order." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R15::703", + "skos:prefLabel": { + "@language": "en", + "@value": "FMT+1" + }, + "owl:versionInfo": "1", + "dc:date": "2021-11-30 09:53:34.0", + "skos:altLabel": "703", + "skos:notation": "SDN:R15::703", + "pav:version": "1", + "dce:identifier": "SDN:R15::703", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/595/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/595/1/" + }, + "dce:identifier": "SDN:R15::595", + "pav:version": "1", + "skos:notation": "SDN:R15::595", + "skos:altLabel": "595", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-5" + }, + "dc:identifier": "SDN:R15::595", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards AET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/88/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/88/1/" + }, + "dce:identifier": "SDN:R15::88", + "pav:version": "1", + "skos:notation": "SDN:R15::88", + "skos:altLabel": "88", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-12" + }, + "dc:identifier": "SDN:R15::88", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/245/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/245/1/" + }, + "dce:identifier": "SDN:R15::245", + "pav:version": "1", + "skos:notation": "SDN:R15::245", + "skos:altLabel": "245", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-5" + }, + "dc:identifier": "SDN:R15::245", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards PST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/785/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/785/1/" + }, + "dce:identifier": "SDN:R15::785", + "pav:version": "1", + "skos:notation": "SDN:R15::785", + "skos:altLabel": "785", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-15" + }, + "dc:identifier": "SDN:R15::785", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (TET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/286/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/286/1/" + }, + "dce:identifier": "SDN:R15::286", + "pav:version": "1", + "skos:notation": "SDN:R15::286", + "skos:altLabel": "286", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-14" + }, + "dc:identifier": "SDN:R15::286", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (PET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/100/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/100/1/" + }, + "dce:identifier": "SDN:R15::100", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DST/" + }, + "skos:notation": "SDN:R15::100", + "skos:altLabel": "100", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST" + }, + "dc:identifier": "SDN:R15::100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made when float leaves the surface, beginning descent." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/501/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/501/1/" + }, + "dce:identifier": "SDN:R15::501", + "pav:version": "1", + "skos:notation": "SDN:R15::501", + "skos:altLabel": "501", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST+1" + }, + "dc:identifier": "SDN:R15::501", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Down-time end time: end date of the down-time parameter reported by APEX floats." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/199/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/199/1/" + }, + "dce:identifier": "SDN:R15::199", + "pav:version": "1", + "skos:notation": "SDN:R15::199", + "skos:altLabel": "199", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-1" + }, + "dc:identifier": "SDN:R15::199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DET (see DET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/496/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/496/1/" + }, + "dce:identifier": "SDN:R15::496", + "pav:version": "1", + "skos:notation": "SDN:R15::496", + "skos:altLabel": "496", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-4" + }, + "dc:identifier": "SDN:R15::496", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to AST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/794/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/794/1/" + }, + "dce:identifier": "SDN:R15::794", + "pav:version": "1", + "skos:notation": "SDN:R15::794", + "skos:altLabel": "794", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-6" + }, + "dc:identifier": "SDN:R15::794", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards TET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/438/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/438/1/" + }, + "dce:identifier": "SDN:R15::438", + "pav:version": "1", + "skos:notation": "SDN:R15::438", + "skos:altLabel": "438", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-12" + }, + "dc:identifier": "SDN:R15::438", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DPST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/293/", + "pav:authoredOn": "2025-09-02 12:51:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/293/1/" + }, + "dce:identifier": "SDN:R15::293", + "pav:version": "1", + "skos:notation": "SDN:R15::293", + "skos:altLabel": "293", + "dc:date": "2025-09-02 12:51:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-7" + }, + "dc:identifier": "SDN:R15::293", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Used to report PMEAN (Mean of pressure differences of park-level PT samples)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/797/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/797/1/" + }, + "dce:identifier": "SDN:R15::797", + "pav:version": "1", + "skos:notation": "SDN:R15::797", + "skos:altLabel": "797", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-3" + }, + "dc:identifier": "SDN:R15::797", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards TET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/296/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/296/1/" + }, + "dce:identifier": "SDN:R15::296", + "pav:version": "1", + "skos:notation": "SDN:R15::296", + "skos:altLabel": "296", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-4" + }, + "dc:identifier": "SDN:R15::296", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to PET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/236/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/236/1/" + }, + "dce:identifier": "SDN:R15::236", + "pav:version": "1", + "skos:notation": "SDN:R15::236", + "skos:altLabel": "236", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-14" + }, + "dc:identifier": "SDN:R15::236", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (PST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/299/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/299/1/" + }, + "dce:identifier": "SDN:R15::299", + "pav:version": "1", + "skos:notation": "SDN:R15::299", + "skos:altLabel": "299", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-1" + }, + "dc:identifier": "SDN:R15::299", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards PET (see PET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/495/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/495/1/" + }, + "dce:identifier": "SDN:R15::495", + "pav:version": "1", + "skos:notation": "SDN:R15::495", + "skos:altLabel": "495", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-5" + }, + "dc:identifier": "SDN:R15::495", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards AST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/147/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/147/1/" + }, + "dce:identifier": "SDN:R15::147", + "pav:version": "1", + "skos:notation": "SDN:R15::147", + "skos:altLabel": "147", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-3" + }, + "dc:identifier": "SDN:R15::147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards FST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/685/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/685/1/" + }, + "dce:identifier": "SDN:R15::685", + "pav:version": "1", + "skos:notation": "SDN:R15::685", + "skos:altLabel": "685", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-15" + }, + "dc:identifier": "SDN:R15::685", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (TST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/598/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/598/1/" + }, + "dce:identifier": "SDN:R15::598", + "pav:version": "1", + "skos:notation": "SDN:R15::598", + "skos:altLabel": "598", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-2" + }, + "dc:identifier": "SDN:R15::598", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards AET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/611/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/611/1/" + }, + "dce:identifier": "SDN:R15::611", + "pav:version": "1", + "skos:notation": "SDN:R15::611", + "skos:altLabel": "611", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET+11" + }, + "dc:identifier": "SDN:R15::611", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/240/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/240/1/" + }, + "dce:identifier": "SDN:R15::240", + "pav:version": "1", + "skos:notation": "SDN:R15::240", + "skos:altLabel": "240", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-10" + }, + "dc:identifier": "SDN:R15::240", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards PST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/610/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/610/1/" + }, + "dce:identifier": "SDN:R15::610", + "pav:version": "1", + "skos:notation": "SDN:R15::610", + "skos:altLabel": "610", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET+10" + }, + "dc:identifier": "SDN:R15::610", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/689/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/689/1/" + }, + "dce:identifier": "SDN:R15::689", + "pav:version": "1", + "skos:notation": "SDN:R15::689", + "skos:altLabel": "689", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-11" + }, + "dc:identifier": "SDN:R15::689", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/188/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/188/1/" + }, + "dce:identifier": "SDN:R15::188", + "pav:version": "1", + "skos:notation": "SDN:R15::188", + "skos:altLabel": "188", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-12" + }, + "dc:identifier": "SDN:R15::188", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/548/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/548/1/" + }, + "dce:identifier": "SDN:R15::548", + "pav:version": "1", + "skos:notation": "SDN:R15::548", + "skos:altLabel": "548", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-2" + }, + "dc:identifier": "SDN:R15::548", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DAST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/450/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/450/1/" + }, + "dce:identifier": "SDN:R15::450", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DPST/" + }, + "skos:notation": "SDN:R15::450", + "skos:altLabel": "450", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST" + }, + "dc:identifier": "SDN:R15::450", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float transitions to a deep park drift mission. This variable is only defined if the float enters a deep drift phase (i.e. DPST not defined in cases of constant deep pressure due to bottom hits, or buoyancy issues)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/589/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/589/1/" + }, + "dce:identifier": "SDN:R15::589", + "pav:version": "1", + "skos:notation": "SDN:R15::589", + "skos:altLabel": "589", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-11" + }, + "dc:identifier": "SDN:R15::589", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/537/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/537/1/" + }, + "dce:identifier": "SDN:R15::537", + "pav:version": "1", + "skos:notation": "SDN:R15::537", + "skos:altLabel": "537", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-13" + }, + "dc:identifier": "SDN:R15::537", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DAST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/387/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/387/1/" + }, + "dce:identifier": "SDN:R15::387", + "pav:version": "1", + "skos:notation": "SDN:R15::387", + "skos:altLabel": "387", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-13" + }, + "dc:identifier": "SDN:R15::387", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DDET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/144/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/144/1/" + }, + "dce:identifier": "SDN:R15::144", + "pav:version": "1", + "skos:notation": "SDN:R15::144", + "skos:altLabel": "144", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-6" + }, + "dc:identifier": "SDN:R15::144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards FST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/150/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/150/1/" + }, + "dce:identifier": "SDN:R15::150", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FST/" + }, + "skos:notation": "SDN:R15::150", + "skos:altLabel": "150", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST" + }, + "dc:identifier": "SDN:R15::150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when a float first becomes water-neutral." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/800/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/800/1/" + }, + "dce:identifier": "SDN:R15::800", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/TET/" + }, + "skos:notation": "SDN:R15::800", + "skos:altLabel": "800", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET" + }, + "dc:identifier": "SDN:R15::800", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time and location of the end of transmission for the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/185/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/185/1/" + }, + "dce:identifier": "SDN:R15::185", + "pav:version": "1", + "skos:notation": "SDN:R15::185", + "skos:altLabel": "185", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-15" + }, + "dc:identifier": "SDN:R15::185", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/235/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/235/1/" + }, + "dce:identifier": "SDN:R15::235", + "pav:version": "1", + "skos:notation": "SDN:R15::235", + "skos:altLabel": "235", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-15" + }, + "dc:identifier": "SDN:R15::235", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (PST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/238/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/238/1/" + }, + "dce:identifier": "SDN:R15::238", + "pav:version": "1", + "skos:notation": "SDN:R15::238", + "skos:altLabel": "238", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-12" + }, + "dc:identifier": "SDN:R15::238", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (PST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/535/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/535/1/" + }, + "dce:identifier": "SDN:R15::535", + "pav:version": "1", + "skos:notation": "SDN:R15::535", + "skos:altLabel": "535", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-15" + }, + "dc:identifier": "SDN:R15::535", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DAST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/448/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/448/1/" + }, + "dce:identifier": "SDN:R15::448", + "pav:version": "1", + "skos:notation": "SDN:R15::448", + "skos:altLabel": "448", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-2" + }, + "dc:identifier": "SDN:R15::448", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DPST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/489/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/489/1/" + }, + "dce:identifier": "SDN:R15::489", + "pav:version": "1", + "skos:notation": "SDN:R15::489", + "skos:altLabel": "489", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-11" + }, + "dc:identifier": "SDN:R15::489", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/695/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/695/1/" + }, + "dce:identifier": "SDN:R15::695", + "pav:version": "1", + "skos:notation": "SDN:R15::695", + "skos:altLabel": "695", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-5" + }, + "dc:identifier": "SDN:R15::695", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards TST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/194/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/194/1/" + }, + "dce:identifier": "SDN:R15::194", + "pav:version": "1", + "skos:notation": "SDN:R15::194", + "skos:altLabel": "194", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-6" + }, + "dc:identifier": "SDN:R15::194", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/437/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/437/1/" + }, + "dce:identifier": "SDN:R15::437", + "pav:version": "1", + "skos:notation": "SDN:R15::437", + "skos:altLabel": "437", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-13" + }, + "dc:identifier": "SDN:R15::437", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DPST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/246/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/246/1/" + }, + "dce:identifier": "SDN:R15::246", + "pav:version": "1", + "skos:notation": "SDN:R15::246", + "skos:altLabel": "246", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-4" + }, + "dc:identifier": "SDN:R15::246", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to PST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/699/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/699/1/" + }, + "dce:identifier": "SDN:R15::699", + "pav:version": "1", + "skos:notation": "SDN:R15::699", + "skos:altLabel": "699", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-1" + }, + "dc:identifier": "SDN:R15::699", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards TST (see TST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/701/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/701/1/" + }, + "dce:identifier": "SDN:R15::701", + "pav:version": "1", + "skos:notation": "SDN:R15::701", + "skos:altLabel": "701", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST+1" + }, + "dc:identifier": "SDN:R15::701", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission start time directly transmitted by an APEX float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/540/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/540/1/" + }, + "dce:identifier": "SDN:R15::540", + "pav:version": "1", + "skos:notation": "SDN:R15::540", + "skos:altLabel": "540", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-10" + }, + "dc:identifier": "SDN:R15::540", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DAST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/287/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/287/1/" + }, + "dce:identifier": "SDN:R15::287", + "pav:version": "1", + "skos:notation": "SDN:R15::287", + "skos:altLabel": "287", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-13" + }, + "dc:identifier": "SDN:R15::287", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (PET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/502/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/502/1/" + }, + "dce:identifier": "SDN:R15::502", + "pav:version": "1", + "skos:notation": "SDN:R15::502", + "skos:altLabel": "502", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST+2" + }, + "dc:identifier": "SDN:R15::502", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent start time directly transmitted by APEX floats." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/698/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/698/1/" + }, + "dce:identifier": "SDN:R15::698", + "pav:version": "1", + "skos:notation": "SDN:R15::698", + "skos:altLabel": "698", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-2" + }, + "dc:identifier": "SDN:R15::698", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards TST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/197/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/197/1/" + }, + "dce:identifier": "SDN:R15::197", + "pav:version": "1", + "skos:notation": "SDN:R15::197", + "skos:altLabel": "197", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-3" + }, + "dc:identifier": "SDN:R15::197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/704/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Latest time of all messages received by telecommunications system - may or may not have a location fix." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R15::704", + "skos:prefLabel": { + "@language": "en", + "@value": "LMT" + }, + "owl:versionInfo": "1", + "dc:date": "2021-11-30 09:53:34.0", + "skos:altLabel": "704", + "skos:notation": "SDN:R15::704", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/RMC/current/RSPEC/" + }, + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/LMT/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R15::704", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/704/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/203/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/203/1/" + }, + "dce:identifier": "SDN:R15::203", + "pav:version": "1", + "skos:notation": "SDN:R15::203", + "skos:altLabel": "203", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET+3" + }, + "dc:identifier": "SDN:R15::203", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest bin reached during descending profile." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/390/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/390/1/" + }, + "dce:identifier": "SDN:R15::390", + "pav:version": "1", + "skos:notation": "SDN:R15::390", + "skos:altLabel": "390", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-10" + }, + "dc:identifier": "SDN:R15::390", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DDET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/497/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/497/1/" + }, + "dce:identifier": "SDN:R15::497", + "pav:version": "1", + "skos:notation": "SDN:R15::497", + "skos:altLabel": "497", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-3" + }, + "dc:identifier": "SDN:R15::497", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards AST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/546/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/546/1/" + }, + "dce:identifier": "SDN:R15::546", + "pav:version": "1", + "skos:notation": "SDN:R15::546", + "skos:altLabel": "546", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-4" + }, + "dc:identifier": "SDN:R15::546", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DAST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/439/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/439/1/" + }, + "dce:identifier": "SDN:R15::439", + "pav:version": "1", + "skos:notation": "SDN:R15::439", + "skos:altLabel": "439", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-11" + }, + "dc:identifier": "SDN:R15::439", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/396/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/396/1/" + }, + "dce:identifier": "SDN:R15::396", + "pav:version": "1", + "skos:notation": "SDN:R15::396", + "skos:altLabel": "396", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-4" + }, + "dc:identifier": "SDN:R15::396", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DDET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/295/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/295/1/" + }, + "dce:identifier": "SDN:R15::295", + "pav:version": "1", + "skos:notation": "SDN:R15::295", + "skos:altLabel": "295", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-5" + }, + "dc:identifier": "SDN:R15::295", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards PET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/237/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/237/1/" + }, + "dce:identifier": "SDN:R15::237", + "pav:version": "1", + "skos:notation": "SDN:R15::237", + "skos:altLabel": "237", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-13" + }, + "dc:identifier": "SDN:R15::237", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (PST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/86/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/86/1/" + }, + "dce:identifier": "SDN:R15::86", + "pav:version": "1", + "skos:notation": "SDN:R15::86", + "skos:altLabel": "86", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-14" + }, + "dc:identifier": "SDN:R15::86", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/903/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/903/1/" + }, + "dce:identifier": "SDN:R15::903", + "pav:version": "1", + "skos:notation": "SDN:R15::903", + "skos:altLabel": "903", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX pressure offset" + }, + "dc:identifier": "SDN:R15::903", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure offset used to correct APEX pressure measurements." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/399/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/399/1/" + }, + "dce:identifier": "SDN:R15::399", + "pav:version": "1", + "skos:notation": "SDN:R15::399", + "skos:altLabel": "399", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-1" + }, + "dc:identifier": "SDN:R15::399", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DDET (see DDET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/89/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/89/1/" + }, + "dce:identifier": "SDN:R15::89", + "pav:version": "1", + "skos:notation": "SDN:R15::89", + "skos:altLabel": "89", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-11" + }, + "dc:identifier": "SDN:R15::89", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/244/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/244/1/" + }, + "dce:identifier": "SDN:R15::244", + "pav:version": "1", + "skos:notation": "SDN:R15::244", + "skos:altLabel": "244", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-6" + }, + "dc:identifier": "SDN:R15::244", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards PST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/587/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/587/1/" + }, + "dce:identifier": "SDN:R15::587", + "pav:version": "1", + "skos:notation": "SDN:R15::587", + "skos:altLabel": "587", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-13" + }, + "dc:identifier": "SDN:R15::587", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (AET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/686/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/686/1/" + }, + "dce:identifier": "SDN:R15::686", + "pav:version": "1", + "skos:notation": "SDN:R15::686", + "skos:altLabel": "686", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-14" + }, + "dc:identifier": "SDN:R15::686", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (TST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/901/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/901/1/" + }, + "dce:identifier": "SDN:R15::901", + "pav:version": "1", + "skos:notation": "SDN:R15::901", + "skos:altLabel": "901", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded" + }, + "dc:identifier": "SDN:R15::901", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Grounded flag. Configuration phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/440/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/440/1/" + }, + "dce:identifier": "SDN:R15::440", + "pav:version": "1", + "skos:notation": "SDN:R15::440", + "skos:altLabel": "440", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-10" + }, + "dc:identifier": "SDN:R15::440", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DPST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/397/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/397/1/" + }, + "dce:identifier": "SDN:R15::397", + "pav:version": "1", + "skos:notation": "SDN:R15::397", + "skos:altLabel": "397", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-3" + }, + "dc:identifier": "SDN:R15::397", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DDET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/200/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/200/1/" + }, + "dce:identifier": "SDN:R15::200", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DET/" + }, + "skos:notation": "SDN:R15::200", + "skos:altLabel": "200", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET" + }, + "dc:identifier": "SDN:R15::200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float first approaches within 3% of the eventual drift pressure. Float may be transitioning from the surface or from a deep profile. This variable is based on measured or estimated pressure only In the case of a float that overshoots the drift pressure on descent, DET is the time of the overshoot." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/786/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/786/1/" + }, + "dce:identifier": "SDN:R15::786", + "pav:version": "1", + "skos:notation": "SDN:R15::786", + "skos:altLabel": "786", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-14" + }, + "dc:identifier": "SDN:R15::786", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (TET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/446/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/446/1/" + }, + "dce:identifier": "SDN:R15::446", + "pav:version": "1", + "skos:notation": "SDN:R15::446", + "skos:altLabel": "446", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-4" + }, + "dc:identifier": "SDN:R15::446", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DPST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/285/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/285/1/" + }, + "dce:identifier": "SDN:R15::285", + "pav:version": "1", + "skos:notation": "SDN:R15::285", + "skos:altLabel": "285", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-15" + }, + "dc:identifier": "SDN:R15::285", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (PET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/710/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/710/1/" + }, + "dce:identifier": "SDN:R15::710", + "pav:version": "1", + "skos:notation": "SDN:R15::710", + "skos:altLabel": "710", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "LMT+10" + }, + "dc:identifier": "SDN:R15::710", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/694/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/694/1/" + }, + "dce:identifier": "SDN:R15::694", + "pav:version": "1", + "skos:notation": "SDN:R15::694", + "skos:altLabel": "694", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-6" + }, + "dc:identifier": "SDN:R15::694", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards TST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/789/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/789/1/" + }, + "dce:identifier": "SDN:R15::789", + "pav:version": "1", + "skos:notation": "SDN:R15::789", + "skos:altLabel": "789", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-11" + }, + "dc:identifier": "SDN:R15::789", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/195/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/195/1/" + }, + "dce:identifier": "SDN:R15::195", + "pav:version": "1", + "skos:notation": "SDN:R15::195", + "skos:altLabel": "195", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-5" + }, + "dc:identifier": "SDN:R15::195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/549/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/549/1/" + }, + "dce:identifier": "SDN:R15::549", + "pav:version": "1", + "skos:notation": "SDN:R15::549", + "skos:altLabel": "549", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-1" + }, + "dc:identifier": "SDN:R15::549", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DAST (see DAST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/137/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/137/1/" + }, + "dce:identifier": "SDN:R15::137", + "pav:version": "1", + "skos:notation": "SDN:R15::137", + "skos:altLabel": "137", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-13" + }, + "dc:identifier": "SDN:R15::137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (FST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/136/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/136/1/" + }, + "dce:identifier": "SDN:R15::136", + "pav:version": "1", + "skos:notation": "SDN:R15::136", + "skos:altLabel": "136", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-14" + }, + "dc:identifier": "SDN:R15::136", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (FST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/388/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/388/1/" + }, + "dce:identifier": "SDN:R15::388", + "pav:version": "1", + "skos:notation": "SDN:R15::388", + "skos:altLabel": "388", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-12" + }, + "dc:identifier": "SDN:R15::388", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DDET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/290/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/290/1/" + }, + "dce:identifier": "SDN:R15::290", + "pav:version": "1", + "skos:notation": "SDN:R15::290", + "skos:altLabel": "290", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-10" + }, + "dc:identifier": "SDN:R15::290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards PET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/487/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/487/1/" + }, + "dce:identifier": "SDN:R15::487", + "pav:version": "1", + "skos:notation": "SDN:R15::487", + "skos:altLabel": "487", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-13" + }, + "dc:identifier": "SDN:R15::487", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (AST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/139/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/139/1/" + }, + "dce:identifier": "SDN:R15::139", + "pav:version": "1", + "skos:notation": "SDN:R15::139", + "skos:altLabel": "139", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-11" + }, + "dc:identifier": "SDN:R15::139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/95/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/95/1/" + }, + "dce:identifier": "SDN:R15::95", + "pav:version": "1", + "skos:notation": "SDN:R15::95", + "skos:altLabel": "95", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-5" + }, + "dc:identifier": "SDN:R15::95", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/1100/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/1100/1/" + }, + "pav:authoredOn": "2025-09-29 14:51:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/1100/2/" + }, + "dce:identifier": "SDN:R15::1100", + "pav:version": "2", + "skos:notation": "SDN:R15::1100", + "skos:altLabel": "1100", + "dc:date": "2025-09-29 14:51:43.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "1100" + }, + "dc:identifier": "SDN:R15::1100", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This is a deprecated MC concerning DO measures, in air or near surface. It was replaced and should be updated to 599, 710 or 711 depending on the parameter and the in-air/near-surface status." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/590/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/590/1/" + }, + "dce:identifier": "SDN:R15::590", + "pav:version": "1", + "skos:notation": "SDN:R15::590", + "skos:altLabel": "590", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-10" + }, + "dc:identifier": "SDN:R15::590", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards AET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/250/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/250/1/" + }, + "dce:identifier": "SDN:R15::250", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/PST/" + }, + "skos:notation": "SDN:R15::250", + "skos:altLabel": "250", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST" + }, + "dc:identifier": "SDN:R15::250", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float transitions to its Park or Drift mission. This variable is based on float logic based on a descent timer (i.e. SOLO), or be based on measurements of pressure (i.e. PROVOR)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/186/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/186/1/" + }, + "dce:identifier": "SDN:R15::186", + "pav:version": "1", + "skos:notation": "SDN:R15::186", + "skos:altLabel": "186", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-14" + }, + "dc:identifier": "SDN:R15::186", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/98/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/98/1/" + }, + "dce:identifier": "SDN:R15::98", + "pav:version": "1", + "skos:notation": "SDN:R15::98", + "skos:altLabel": "98", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-2" + }, + "dc:identifier": "SDN:R15::98", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/593/", + "pav:authoredOn": "2025-09-02 12:51:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/593/1/" + }, + "dce:identifier": "SDN:R15::593", + "pav:version": "1", + "skos:notation": "SDN:R15::593", + "skos:altLabel": "593", + "dc:date": "2025-09-02 12:51:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-7" + }, + "dc:identifier": "SDN:R15::593", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent aborted time due to the ICE algorithm (with pressure if available, with shallowest PRES measurement if not)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/99/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/99/1/" + }, + "dce:identifier": "SDN:R15::99", + "pav:version": "1", + "skos:notation": "SDN:R15::99", + "skos:altLabel": "99", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-1" + }, + "dc:identifier": "SDN:R15::99", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DST (see DST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/796/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/796/1/" + }, + "dce:identifier": "SDN:R15::796", + "pav:version": "1", + "skos:notation": "SDN:R15::796", + "skos:altLabel": "796", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-4" + }, + "dc:identifier": "SDN:R15::796", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to TET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/596/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/596/1/" + }, + "dce:identifier": "SDN:R15::596", + "pav:version": "1", + "skos:notation": "SDN:R15::596", + "skos:altLabel": "596", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-4" + }, + "dc:identifier": "SDN:R15::596", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to AET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/599/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/599/1/" + }, + "dce:identifier": "SDN:R15::599", + "pav:version": "1", + "skos:notation": "SDN:R15::599", + "skos:altLabel": "599", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-1" + }, + "dc:identifier": "SDN:R15::599", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards AET (see AET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/602/", + "pav:authoredOn": "2025-09-02 12:51:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/602/1/" + }, + "dce:identifier": "SDN:R15::602", + "pav:version": "1", + "skos:notation": "SDN:R15::602", + "skos:altLabel": "602", + "dc:date": "2025-09-02 12:51:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET+2" + }, + "dc:identifier": "SDN:R15::602", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of MC=701 minus 10 minutes." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/594/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/594/1/" + }, + "dce:identifier": "SDN:R15::594", + "pav:version": "1", + "skos:notation": "SDN:R15::594", + "skos:altLabel": "594", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-6" + }, + "dc:identifier": "SDN:R15::594", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards AET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/101/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/101/1/" + }, + "dce:identifier": "SDN:R15::101", + "pav:version": "1", + "skos:notation": "SDN:R15::101", + "skos:altLabel": "101", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Delayed-mode trajectory file measurement code ID" + }, + "dc:identifier": "SDN:R15::101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This measurement code is used in the delayed-mode trajectory (TRAJ) file when new cycles have been recovered during delayed-mode operations. This is because the technical (TECH) file, where surface pressure measurements usually belong, is not updated during delayed-mode operations on the TRAJ file. The pressure variable (PRES) should contain the measurement provided by the float (after 5dbar subtraction when needed). For APEX floats, this measurement is used to compute a pressure offset applied to all pressure measurements (see procedure 3.2.1 of Argo QC manual). This offset should be stored in the PRES_ADJUSTED variable. No information should be stored with this measurement code in real-time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/536/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/536/1/" + }, + "dce:identifier": "SDN:R15::536", + "pav:version": "1", + "skos:notation": "SDN:R15::536", + "skos:altLabel": "536", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-14" + }, + "dc:identifier": "SDN:R15::536", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DAST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/449/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/449/1/" + }, + "dce:identifier": "SDN:R15::449", + "pav:version": "1", + "skos:notation": "SDN:R15::449", + "skos:altLabel": "449", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-1" + }, + "dc:identifier": "SDN:R15::449", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DPST (see DPST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/795/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/795/1/" + }, + "dce:identifier": "SDN:R15::795", + "pav:version": "1", + "skos:notation": "SDN:R15::795", + "skos:altLabel": "795", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-5" + }, + "dc:identifier": "SDN:R15::795", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards TET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/294/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/294/1/" + }, + "dce:identifier": "SDN:R15::294", + "pav:version": "1", + "skos:notation": "SDN:R15::294", + "skos:altLabel": "294", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-6" + }, + "dc:identifier": "SDN:R15::294", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards PET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/247/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/247/1/" + }, + "dce:identifier": "SDN:R15::247", + "pav:version": "1", + "skos:notation": "SDN:R15::247", + "skos:altLabel": "247", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-3" + }, + "dc:identifier": "SDN:R15::247", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards PST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/787/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/787/1/" + }, + "dce:identifier": "SDN:R15::787", + "pav:version": "1", + "skos:notation": "SDN:R15::787", + "skos:altLabel": "787", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-13" + }, + "dc:identifier": "SDN:R15::787", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (TET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/798/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/798/1/" + }, + "dce:identifier": "SDN:R15::798", + "pav:version": "1", + "skos:notation": "SDN:R15::798", + "skos:altLabel": "798", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-2" + }, + "dc:identifier": "SDN:R15::798", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards TET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/297/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/297/1/" + }, + "dce:identifier": "SDN:R15::297", + "pav:version": "1", + "skos:notation": "SDN:R15::297", + "skos:altLabel": "297", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-3" + }, + "dc:identifier": "SDN:R15::297", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards PET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/503/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/503/1/" + }, + "dce:identifier": "SDN:R15::503", + "pav:version": "1", + "skos:notation": "SDN:R15::503", + "skos:altLabel": "503", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST+3" + }, + "dc:identifier": "SDN:R15::503", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest bin reached during ascending profile." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/300/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/300/1/" + }, + "dce:identifier": "SDN:R15::300", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/PET/" + }, + "skos:notation": "SDN:R15::300", + "skos:altLabel": "300", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET" + }, + "dc:identifier": "SDN:R15::300", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float exits from its Park or Drift mission. It may next rise to the surface (AST) or sink to profile depth." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/190/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/190/1/" + }, + "dce:identifier": "SDN:R15::190", + "pav:version": "1", + "skos:notation": "SDN:R15::190", + "skos:altLabel": "190", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-10" + }, + "dc:identifier": "SDN:R15::190", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/288/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/288/1/" + }, + "dce:identifier": "SDN:R15::288", + "pav:version": "1", + "skos:notation": "SDN:R15::288", + "skos:altLabel": "288", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-12" + }, + "dc:identifier": "SDN:R15::288", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (PET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/544/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/544/1/" + }, + "dce:identifier": "SDN:R15::544", + "pav:version": "1", + "skos:notation": "SDN:R15::544", + "skos:altLabel": "544", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-6" + }, + "dc:identifier": "SDN:R15::544", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DAST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/490/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/490/1/" + }, + "dce:identifier": "SDN:R15::490", + "pav:version": "1", + "skos:notation": "SDN:R15::490", + "skos:altLabel": "490", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-10" + }, + "dc:identifier": "SDN:R15::490", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards AST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/585/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/585/1/" + }, + "dce:identifier": "SDN:R15::585", + "pav:version": "1", + "skos:notation": "SDN:R15::585", + "skos:altLabel": "585", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-15" + }, + "dc:identifier": "SDN:R15::585", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (AET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/498/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/498/1/" + }, + "dce:identifier": "SDN:R15::498", + "pav:version": "1", + "skos:notation": "SDN:R15::498", + "skos:altLabel": "498", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-2" + }, + "dc:identifier": "SDN:R15::498", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards AST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/301/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/301/1/" + }, + "dce:identifier": "SDN:R15::301", + "pav:version": "1", + "skos:notation": "SDN:R15::301", + "skos:altLabel": "301", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET+1" + }, + "dc:identifier": "SDN:R15::301", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Representative Park found either from measurements taken during drift or from metafile information." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/145/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/145/1/" + }, + "dce:identifier": "SDN:R15::145", + "pav:version": "1", + "skos:notation": "SDN:R15::145", + "skos:altLabel": "145", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-5" + }, + "dc:identifier": "SDN:R15::145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards FST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/687/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/435/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/810/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/690/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/499/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/239/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/444/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/289/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/485/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/696/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/600/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/790/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/90/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/538/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/394/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/494/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/110/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/385/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/688/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/298/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/711/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/96/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/550/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/811/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/389/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/702/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/87/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/500/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/436/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/275/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/697/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/545/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/799/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/902/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/597/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/398/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/400/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/539/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/395/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/586/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/111/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/249/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/547/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/588/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/445/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/386/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/788/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/486/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/94/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/97/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/447/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/595/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/88/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/245/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/785/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/286/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/501/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/496/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/794/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/438/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/293/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/797/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/296/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/236/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/299/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/495/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/685/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/598/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/611/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/240/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/610/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/689/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/548/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/450/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/589/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/537/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/387/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/800/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/235/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/238/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/535/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/448/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/489/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/695/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/194/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/437/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/246/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/699/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/701/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/540/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/287/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/502/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/698/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/704/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/390/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/497/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/546/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/439/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/396/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/295/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/237/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/86/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/903/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/399/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/89/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/244/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/587/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/686/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/901/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/440/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/397/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/786/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/446/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/285/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/710/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/694/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/789/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/549/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/388/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/487/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/95/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/1100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/590/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/250/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/186/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/98/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/593/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/99/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/796/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/596/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/599/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/602/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/594/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/536/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/449/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/795/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/294/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/247/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/787/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/798/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/297/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/503/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/300/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/190/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/288/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/544/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/585/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/498/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/301/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Measurement code IDs used in Argo Trajectory netCDF files. Argo netCDF variable MEASUREMENT_CODE is populated by R15 altLabel.", + "dc:title": "Argo trajectory measurement code identifiers", + "skos:prefLabel": "Argo trajectory measurement code identifiers", + "owl:versionInfo": "3", + "dc:date": "2025-09-30 03:00:01.0", + "skos:altLabel": "MEASUREMENT_CODE_ID", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "MEASUREMENT_CODE_ID", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R16.jsonld b/file_checker_spec/NVS/R16.jsonld new file mode 100644 index 0000000..2fc3d95 --- /dev/null +++ b/file_checker_spec/NVS/R16.jsonld @@ -0,0 +1,558 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXUP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXUP/1/" + }, + "dce:identifier": "SDN:R16::NSMIXUP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSMIXUP", + "skos:altLabel": "NSMIXUP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: mixed, unpumped" + }, + "dc:identifier": "SDN:R16::NSMIXUP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'mixed' sampling method was used, and measurements obtained from an unpumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECDIS/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECDIS/1/" + }, + "dce:identifier": "SDN:R16::SECDIS", + "pav:version": "1", + "skos:notation": "SDN:R16::SECDIS", + "skos:altLabel": "SECDIS", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Secondary sampling: discrete" + }, + "dc:identifier": "SDN:R16::SECDIS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Secondary sampling scheme for which the 'discrete' sampling method was used. The secondary sampling profile has N_PROF>1, and is composed of measurements that are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Measurements can be taken by the Primary CTD or by auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGP/1/" + }, + "dce:identifier": "SDN:R16::NSAVGP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSAVGP", + "skos:altLabel": "NSAVGP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: averaged, pumped" + }, + "dc:identifier": "SDN:R16::NSAVGP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'averaged' sampling method was used, and measurements obtained from a pumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXP/1/" + }, + "dce:identifier": "SDN:R16::NSMIXP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSMIXP", + "skos:altLabel": "NSMIXP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: mixed, pumped" + }, + "dc:identifier": "SDN:R16::NSMIXP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'mixed' sampling method was used, and measurements obtained from a pumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOAVE/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOAVE/1/" + }, + "dce:identifier": "SDN:R16::BOAVE", + "pav:version": "1", + "skos:notation": "SDN:R16::BOAVE", + "skos:altLabel": "BOAVE", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bounce sampling: averaged" + }, + "dc:identifier": "SDN:R16::BOAVE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce sampling scheme for which the 'averaged' sampling method was used. The bounce sampling scheme is composed of profiles with N_PROF>1 collected on multiple rises and falls during a single cycle. The profiles are temporally offset from each other and/or the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Bounce sampling scheme profiles can be sampled with the Primary CTD or with auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BODIS/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BODIS/1/" + }, + "dce:identifier": "SDN:R16::BODIS", + "pav:version": "1", + "skos:notation": "SDN:R16::BODIS", + "skos:altLabel": "BODIS", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bounce sampling: discrete" + }, + "dc:identifier": "SDN:R16::BODIS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce sampling scheme for which the 'discrete' sampling method was used. The bounce sampling scheme is composed of profiles with N_PROF>1 collected on multiple rises and falls during a single cycle. The profiles are temporally offset from each other and/or the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Bounce sampling scheme profiles can be sampled with the Primary CTD or with auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGUP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGUP/1/" + }, + "dce:identifier": "SDN:R16::NSAVGUP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSAVGUP", + "skos:altLabel": "NSAVGUP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: averaged, unpumped" + }, + "dc:identifier": "SDN:R16::NSAVGUP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'averaged' sampling method was used, and measurements obtained from an unpumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISUP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISUP/1/" + }, + "dce:identifier": "SDN:R16::NSDISUP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSDISUP", + "skos:altLabel": "NSDISUP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: discrete, unpumped" + }, + "dc:identifier": "SDN:R16::NSDISUP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'discrete' sampling method was used, and measurements obtained from an unpumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECAVG/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECAVG/1/" + }, + "dce:identifier": "SDN:R16::SECAVG", + "pav:version": "1", + "skos:notation": "SDN:R16::SECAVG", + "skos:altLabel": "SECAVG", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Secondary sampling: averaged" + }, + "dc:identifier": "SDN:R16::SECAVG", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Secondary sampling scheme for which the 'averaged' sampling method was used. The secondary sampling profile has N_PROF>1, and is composed of measurements that are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Measurements can be taken by the Primary CTD or by auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISP/1/" + }, + "dce:identifier": "SDN:R16::NSDISP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSDISP", + "skos:altLabel": "NSDISP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: discrete, pumped" + }, + "dc:identifier": "SDN:R16::NSDISP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'discrete' sampling method was used, and measurements obtained from a pumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRAVG/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRAVG/1/" + }, + "dce:identifier": "SDN:R16::PRAVG", + "pav:version": "1", + "skos:notation": "SDN:R16::PRAVG", + "skos:altLabel": "PRAVG", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Primary sampling: averaged" + }, + "dc:identifier": "SDN:R16::PRAVG", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Primary sampling scheme for which the 'averaged' sampling method was used. The primary sampling profile has N_PROF=1, and is composed of primary CTD measurements. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. This sampling scheme can also be applied to measurements from auxiliary sensors obtained by the 'averaged' sampling method and taken at the same pressure levels as the Primary CTD profile. For auxiliary sensor measurements it is not required that all pressure levels contain data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRDIS/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRDIS/1/" + }, + "dce:identifier": "SDN:R16::PRDIS", + "pav:version": "1", + "skos:notation": "SDN:R16::PRDIS", + "skos:altLabel": "PRDIS", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Primary sampling: discrete" + }, + "dc:identifier": "SDN:R16::PRDIS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Primary sampling scheme for which the 'discrete' sampling method was used. The primary sampling profile has N_PROF=1, and is composed of primary CTD measurements. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. This sampling scheme can also be applied to measurements from auxiliary sensors obtained by the 'discrete' sampling method and taken at the same pressure levels as the Primary CTD profile. For auxiliary sensor measurements it is not required that all pressure levels contain data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECMIX/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECMIX/1/" + }, + "dce:identifier": "SDN:R16::SECMIX", + "pav:version": "1", + "skos:notation": "SDN:R16::SECMIX", + "skos:altLabel": "SECMIX", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Secondary sampling: mixed" + }, + "dc:identifier": "SDN:R16::SECMIX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Secondary sampling scheme for which the 'mixed' sampling method was used. The secondary sampling profile has N_PROF>1, and is composed of measurements that are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Measurements can be taken by the Primary CTD or by auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRMIX/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRMIX/1/" + }, + "dce:identifier": "SDN:R16::PRMIX", + "pav:version": "1", + "skos:notation": "SDN:R16::PRMIX", + "skos:altLabel": "PRMIX", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Primary sampling: mixed" + }, + "dc:identifier": "SDN:R16::PRMIX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Primary sampling scheme for which the 'mixed' sampling method was used. The primary sampling profile has N_PROF=1, and is composed of primary CTD measurements. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. This sampling scheme can also be applied to measurements from auxiliary sensors obtained by the 'mixed' sampling method and taken at the same pressure levels as the Primary CTD profile. For auxiliary sensor measurements it is not required that all pressure levels contain data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOMIX/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOMIX/1/" + }, + "dce:identifier": "SDN:R16::BOMIX", + "pav:version": "1", + "skos:notation": "SDN:R16::BOMIX", + "skos:altLabel": "BOMIX", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bounce sampling: mixed" + }, + "dc:identifier": "SDN:R16::BOMIX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce sampling scheme for which the 'mixed' sampling method was used. The bounce sampling scheme is composed of profiles with N_PROF>1 collected on multiple rises and falls during a single cycle. The profiles are temporally offset from each other and/or the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Bounce sampling scheme profiles can be sampled with the Primary CTD or with auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXUP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECDIS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOAVE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BODIS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGUP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISUP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECAVG/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRAVG/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRDIS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECMIX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOMIX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRMIX/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Profile sampling schemes and sampling methods. Argo netCDF variable VERTICAL_SAMPLING_SCHEME is populated by R16 prefLabel, optionally appended by free text in brackets: e.g. \"Primary sampling: averaged [nominal 2 dbar binned data sampled at 0.5 Hz from a SBE41CP]\".", + "dc:title": "Argo vertical sampling schemes", + "skos:prefLabel": "Argo vertical sampling schemes", + "owl:versionInfo": "1", + "dc:date": "2020-05-04 03:00:04.0", + "skos:altLabel": "VERTICAL_SAMPLING_SCHEME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "VERTICAL_SAMPLING_SCHEME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R18.jsonld b/file_checker_spec/NVS/R18.jsonld new file mode 100644 index 0000000..11e0cf5 --- /dev/null +++ b/file_checker_spec/NVS/R18.jsonld @@ -0,0 +1,13088 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/2/" + }, + "dce:identifier": "SDN:R18::CC00068", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00068", + "skos:altLabel": "Core Config 68", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_HyperRetractionStopPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For Apex APF11 Iridium floats, Hyper Retraction is used to pull in an amount of oil to temporarily increase a float density as it leaves the ocean surface. The result of the increased float density allows a float to move through a mixed density layer more easily or allows a float to descend at a faster rate. In particular, the HyperRetractPressure is the pressure that the float uses to restore the piston back to the ParkDescentCount. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/2/" + }, + "dce:identifier": "SDN:R18::CC00041", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00041", + "skos:altLabel": "Core Config 41", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentSpeed_mm/s" + }, + "dc:identifier": "SDN:R18::CC00041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent speed during downcast. It can be used to estimate the time to descent from parking pressure to profile pressure. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/2/" + }, + "dce:identifier": "SDN:R18::CC00081", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00081", + "skos:altLabel": "Core Config 81", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionOilVolumeMinForGroundingDetection_cm^3" + }, + "dc:identifier": "SDN:R18::CC00081", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Similar to CONFIG_OilVolumeMinForGroundingDetection_cm^3 but for a float in a buoyancy inversion phase. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The maximum buoyancy position in counts. The buoyancy pump will shut off if the buoyancy position reaches this maximum value. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00133", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonFullExtension_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 133", + "skos:notation": "SDN:R18::CC00133", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00133", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Flntu turbidity measurements. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00037", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FlntuMaxTransmittedTurbidity_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 37", + "skos:notation": "SDN:R18::CB00037", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00037", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Use last piston position until this profile number. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00180", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileWhereChangePistonPosition_NUMBER" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 180", + "skos:notation": "SDN:R18::CC00180", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00180", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of Beta # measurements. Template_Values:{short_sensor_name:[Eco, Flbb];I:[1..9999];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00050", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BetaBandwidth_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 50", + "skos:notation": "SDN:R18::CB00050", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00050", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/2/" + }, + "dce:identifier": "SDN:R18::CC00154", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00154", + "skos:altLabel": "Core Config 154", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureOffsetDelayBeforeResetCommand_minutes" + }, + "dc:identifier": "SDN:R18::CC00154", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float waiting period between the end of the transmission and the surface ResetOffset CTD command. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Angle of Beta measurements. Template_Values:{short_sensor_name:[Eco, Flbb];unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00062", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BetaAngle_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 62", + "skos:notation": "SDN:R18::CB00062", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00062", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/2/" + }, + "dce:identifier": "SDN:R18::CC00064", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00064", + "skos:altLabel": "Core Config 64", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModeMinPresThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If in grounding mode 0, the float changes its drift pressure only if its current pressure is greater than this value. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Vrs_pH measurements. Template_Values:{unit:[volts, mV]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00098", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SfetMinTransmittedVrsPh_volts" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 98", + "skos:notation": "SDN:R18::CB00098", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00098", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted beta measurements. Template_Values:{short_sensor_name:[Eco, Flbb];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00033", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MinTransmittedBeta_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 33", + "skos:notation": "SDN:R18::CB00033", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00033", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode for the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00083", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemePowerAcquisitionMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 83", + "skos:notation": "SDN:R18::CB00083", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00083", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/2/" + }, + "dce:identifier": "SDN:R18::CC00199", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00199", + "skos:altLabel": "Core Config 199", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceWaitPeriodAfterEmergencyAscent_minutes" + }, + "dc:identifier": "SDN:R18::CC00199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the specific surface phase that occurs after an emergency ascent of the float. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Isobar that divides shallow depths from deep depths for the purpose of data reduction, for floats with 2 depth zones. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00166", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureThresholdDataReduction_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 166", + "skos:notation": "SDN:R18::CC00166", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00166", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/2/" + }, + "dce:identifier": "SDN:R18::CC00126", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00126", + "skos:altLabel": "Core Config 126", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Park pressure. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode C2 phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00021", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedC2Phase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 21", + "skos:notation": "SDN:R18::CB00021", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00021", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/2/" + }, + "dce:identifier": "SDN:R18::CC00028", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00028", + "skos:altLabel": "Core Config 28", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ConnectionTimeOut_seconds" + }, + "dc:identifier": "SDN:R18::CC00028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum transmission period for one telemetry session (if overcrossed, the float disconnects, starts a new cycle and will transmit the remaining stored data at the next transmission session). Template_Values:{unit:[hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/2/" + }, + "dce:identifier": "SDN:R18::CC00207", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00207", + "skos:altLabel": "Core Config 207", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryRetryInterval_minutes" + }, + "dc:identifier": "SDN:R18::CC00207", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Amount of time the float waits before trying to retransmit. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/2/" + }, + "dce:identifier": "SDN:R18::CC00178", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00178", + "skos:altLabel": "Core Config 178", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileSurfaceBinInterval_cbar" + }, + "dc:identifier": "SDN:R18::CC00178", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth intervals for shallow depth (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/2/" + }, + "dce:identifier": "SDN:R18::CC00012", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00012", + "skos:altLabel": "Core Config 12", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentVerticalThresholdForBuoyancyAction_dbar" + }, + "dc:identifier": "SDN:R18::CC00012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold: during CONFIG_PressureCheckTimeAscent_minutes, if the float vertical motion is less than this threshold, then the float performs buoyancy adjustments. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Connection time out allowed for initial connection to the RUDICS server. Default value is 30 minutes. Template_Values:{unit:[hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00027", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ConnectionInitialTimeOut_seconds" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 27", + "skos:notation": "SDN:R18::CC00027", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00027", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/2/" + }, + "dce:identifier": "SDN:R18::CC00219", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00219", + "skos:altLabel": "Core Config 219", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_UpTime_hours" + }, + "dc:identifier": "SDN:R18::CC00219", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset duration of the up time (from start of ascent to start of descent). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Ascent end time of Profile 1 (expected time at the surface of Profile 1). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00019", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentEndTimeProfile1_HHMM" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 19", + "skos:notation": "SDN:R18::CC00019", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00019", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/2/" + }, + "dce:identifier": "SDN:R18::CC00101", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00101", + "skos:altLabel": "Core Config 101", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleTime_hours" + }, + "dc:identifier": "SDN:R18::CC00101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal cycle duration # (in hours). is a number denoting the internal cycle label. Template_Values:{D:[1..9999];unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/2/" + }, + "dce:identifier": "SDN:R18::CC00191", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00191", + "skos:altLabel": "Core Config 191", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SeeksToParkPeriods_COUNT" + }, + "dc:identifier": "SDN:R18::CC00191", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of SEEKS (settles) that can be done by the float after descent as it settles towards the drift target. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of Beta # measurements. Template_Values:{short_sensor_name:[Eco, Flbb];I:[1..9999];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00049", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BetaWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 49", + "skos:notation": "SDN:R18::CB00049", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00049", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode of the Sensor defined by . Input options for CTD (1 : continuous, 2 : pulsed). Input options for Optode (0: none, 1 : continuous, 2 : pulsed). Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB10008", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PowerAcquisitionMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 8.1", + "skos:notation": "SDN:R18::CB10008", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB10008", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/2/" + }, + "dce:identifier": "SDN:R18::CC00024", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00024", + "skos:altLabel": "Core Config 24", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockStartCycle_minutes" + }, + "dc:identifier": "SDN:R18::CC00024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset time to start the cycle, in minutes after midnight. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Is the sensor board show mode ON? (Yes/No). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00045", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SensorBoardShowModeOn_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 45", + "skos:notation": "SDN:R18::CB00045", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00045", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/2/" + }, + "dce:identifier": "SDN:R18::CC00174", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00174", + "skos:altLabel": "Core Config 174", + "dc:date": "2025-12-12 11:41:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileIntermediateBinInterval_cbar" + }, + "dc:identifier": "SDN:R18::CC00174", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth intervals for intermediate depth (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/2/" + }, + "dce:identifier": "SDN:R18::CC00036", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00036", + "skos:altLabel": "Core Config 36", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DeepestPressureDescendingProfile_dbar" + }, + "dc:identifier": "SDN:R18::CC00036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest pressure sampled in the descending profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of for excitation of fluorescence measurements. Template_Values:{short_sensor_name:[Cyc, Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00057", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceExcitationWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 57", + "skos:notation": "SDN:R18::CB00057", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00057", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/2/" + }, + "dce:identifier": "SDN:R18::CC00186", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00186", + "skos:altLabel": "Core Config 186", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionTimeBuoyancyAcquisitionForInAirMeasCycle_csec" + }, + "dc:identifier": "SDN:R18::CC00186", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration or volume transfer of the last pump action of the buoyancy acquisition phase when a in air measurement phase is programmed. For a cycle without in air measurement phase, it is CONFIG_PumpActionTimeBuoyancyAcquisition_csec. Template_Values:{unit:[seconds, dsec, csec, msec, usec, cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Scenario followed by the float when a grounding is detected. Values and possibilities vary according to float types, check specific manuals for details. Template_Values:{unit:[LOGICAL, NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00061", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:33.0", + "skos:altLabel": "Core Config 61", + "skos:notation": "SDN:R18::CC00061", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00061", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00082", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 82", + "skos:notation": "SDN:R18::CB00082", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00082", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/2/" + }, + "dce:identifier": "SDN:R18::CC00097", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00097", + "skos:altLabel": "Core Config 97", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementTime_minutes" + }, + "dc:identifier": "SDN:R18::CC00097", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the in air measurement phase. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00224/", + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00224/1/" + }, + "dce:identifier": "SDN:R18::CC00224", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00224", + "skos:altLabel": "Core Config 224", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkDurationPhase_seconds" + }, + "dc:identifier": "SDN:R18::CC00224", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the park phase # in multi-parking mode. Template_Values:{D:[1..5];unit:[days, hours, minutes, seconds, dsec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/2/" + }, + "dce:identifier": "SDN:R18::CC00110", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00110", + "skos:altLabel": "Core Config 110", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MinValveActionForSurfaceGroundingDetection_COUNT" + }, + "dc:identifier": "SDN:R18::CC00110", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum number of surface valve attempts without change in pressure to set the surface grounding flag. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/2/" + }, + "dce:identifier": "SDN:R18::CC00203", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00203", + "skos:altLabel": "Core Config 203", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryMaxRetry_COUNT" + }, + "dc:identifier": "SDN:R18::CC00203", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum number of telemetry session retries. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the drift at parking pressure. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB10004", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DriftAtParkPresSamplingPeriod_minutes" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 4.1", + "skos:notation": "SDN:R18::CB10004", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB10004", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/2/" + }, + "dce:identifier": "SDN:R18::CC00150", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00150", + "skos:altLabel": "Core Config 150", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeDescentToProfileDepth_seconds" + }, + "dc:identifier": "SDN:R18::CC00150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Interval between float samples of the pressure to determine if the Profile depth has been reached. Template_Values:{unit:[minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/2/" + }, + "dce:identifier": "SDN:R18::CC00138", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00138", + "skos:altLabel": "Core Config 138", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPositionPressureActivation_COUNT" + }, + "dc:identifier": "SDN:R18::CC00138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset piston position for pressure activation. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bio Argo sensors can either be mounted separately to the Ctd or mounted within the Ctd pumped stream (1=YES, 0=NO). Template_Values:{short_sensor_name:[Crover, Isus];unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00054", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InPumpedStream_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 54", + "skos:notation": "SDN:R18::CB00054", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00054", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/2/" + }, + "dce:identifier": "SDN:R18::CC00117", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00117", + "skos:altLabel": "Core Config 117", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeLastPumpActionBuoyancyAcquisition_cm^3" + }, + "dc:identifier": "SDN:R18::CC00117", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Volume of the last pump action of the buoyancy acquisition phase. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/2/" + }, + "dce:identifier": "SDN:R18::CC00006", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00006", + "skos:altLabel": "Core Config 6", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeed_mm/s" + }, + "dc:identifier": "SDN:R18::CC00006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent speed during upcast. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/2/" + }, + "dce:identifier": "SDN:R18::CC00146", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00146", + "skos:altLabel": "Core Config 146", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeAscent_minutes" + }, + "dc:identifier": "SDN:R18::CC00146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float ascent to surface. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/2/" + }, + "dce:identifier": "SDN:R18::CC00129", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00129", + "skos:altLabel": "Core Config 129", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingNumberValsReported_COUNT" + }, + "dc:identifier": "SDN:R18::CC00129", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of values reported during a single park period. For example, a float may perform hourly sampling for 105 hrs and report this as two averaged samples for that park period. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sample rate for the ascent depth zone # of the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];N:[1..5];unit:[hertz]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00094", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneSampleRate_hertz" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 94", + "skos:notation": "SDN:R18::CB00094", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00094", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/2/" + }, + "dce:identifier": "SDN:R18::CC00018", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00018", + "skos:altLabel": "Core Config 18", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyReductionSecondThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Second threshold of the buoyancy reduction phase. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Ignore sample measurements acquired while the hydraulic pump is running (1 = YES, 0 = NO). Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00066", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IgnoreSamplesWhenPumpActive_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 66", + "skos:notation": "SDN:R18::CB00066", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00066", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data processing rate for the subsampling # of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];SubS:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00078", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSubSamplingDataProcessingRate_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 78", + "skos:notation": "SDN:R18::CB00078", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00078", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Pressure threshold to start the acoustic ice detection test. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00070", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionAcousticStartPressureThreshold_dbar" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 70", + "skos:notation": "SDN:R18::CC00070", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00070", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/2/" + }, + "dce:identifier": "SDN:R18::CC00122", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00122", + "skos:altLabel": "Core Config 122", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumePerPumpActionAscent_cm^3" + }, + "dc:identifier": "SDN:R18::CC00122", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Nominal oil volume of each pump action during ascent. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/2/" + }, + "dce:identifier": "SDN:R18::CC00158", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00158", + "skos:altLabel": "Core Config 158", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceBeforeReposition_dbar" + }, + "dc:identifier": "SDN:R18::CC00158", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/2/" + }, + "dce:identifier": "SDN:R18::CC00162", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00162", + "skos:altLabel": "Core Config 162", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisation_dbar" + }, + "dc:identifier": "SDN:R18::CC00162", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation at parking or profile depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Threshold between depth zone # and depth zone # for . Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];N:[1..4];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00001", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneDepthZonePressureThreshold_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 1", + "skos:notation": "SDN:R18::CB00001", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00001", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048b/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048b/1/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048b/2/" + }, + "dce:identifier": "SDN:R18::CB00048b", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00048b", + "skos:altLabel": "BGC Config 48bis", + "dc:date": "2025-12-11 09:34:52.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_VerticalPressureOffset_dbar" + }, + "dc:identifier": "SDN:R18::CB00048b", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Vertical pressure offset due to the fact that the sensor is not exactly at the Ctd pressure for the th duplicate . Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];N:[2..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Cycle to start at a preset time (0 = Disabled, 1 = Enabled). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00023", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockPresetStartCycle_LOGICAL" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 23", + "skos:notation": "SDN:R18::CC00023", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00023", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/2/" + }, + "dce:identifier": "SDN:R18::CC00073", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00073", + "skos:altLabel": "Core Config 73", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionConsecutiveDetectionBeforeFloatSurfaceInhibition_Number" + }, + "dc:identifier": "SDN:R18::CC00073", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of consecutive ISA detections before float surface inhibition. If fewer consecutive ice detections are made, then the float will immediately seek the surface if mixed layer temp is warm. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Vrs_pH measurements. Template_Values:{unit:[volts, mV]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00099", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SfetMaxTransmittedVrsPh_volts" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 99", + "skos:notation": "SDN:R18::CB00099", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00099", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ctd pressure measurements. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00013", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMinTransmittedPressure_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 13", + "skos:notation": "SDN:R18::CB00013", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00013", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/2/" + }, + "dce:identifier": "SDN:R18::CC00211", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00211", + "skos:altLabel": "Core Config 211", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeStartFirstDescentToStartFirstAscent_hours" + }, + "dc:identifier": "SDN:R18::CC00211", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time between 1st descent and 1st ascent (period between mission prelude and start of first profile). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/2/" + }, + "dce:identifier": "SDN:R18::CC00085", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00085", + "skos:altLabel": "Core Config 85", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionSalinityCoefficient_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00085", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Coefficient used when Salinity is considered in the ice evasion criteria (i.e. median(TEMP) < CONFIG_IceDetection_degC+CONFIG_IceDetectionSalinityCoefficient_NUMBER*median(PSAL)). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/2/" + }, + "dce:identifier": "SDN:R18::CC00047", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00047", + "skos:altLabel": "Core Config 47", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_Direction_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiling direction(s) with 1 = Ascending, 2 = Descending and 3 = Ascending and Descending. Template_Values:{unit:[NUMBER, LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/2/" + }, + "dce:identifier": "SDN:R18::CC00195", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00195", + "skos:altLabel": "Core Config 195", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceTime_HH" + }, + "dc:identifier": "SDN:R18::CC00195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of day of float surfacing. It could be hour of the float surfacing or could be stored as seconds when set as hh:mm:ss (e.g. for PROVOR CTS5). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the descent to profile pressure. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00005", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToProfilePresSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 5", + "skos:notation": "SDN:R18::CB00005", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00005", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ctd salinity measurements. Template_Values:{unit:[psu, mpsu]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00017", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMinTransmittedSalinity_mpsu" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 17", + "skos:notation": "SDN:R18::CB00017", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00017", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode for the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00074", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZonePowerAcquisitionMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 74", + "skos:notation": "SDN:R18::CB00074", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00074", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Amount of time allowed for the float to complete telemetry. A setting of 0 disables IceTelemetryTimeout, and the time available is instead determined by the remaining UpTime of the Ascent phase. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00094", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionTelemetryTimeout_minutes" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 94", + "skos:notation": "SDN:R18::CC00094", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00094", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Type of transmitted data from te Suna sensor (0 : nitrate concentration, 1 : Apf frame spectrum). Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00041", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaDataType_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 41", + "skos:notation": "SDN:R18::CB00041", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00041", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/2/" + }, + "dce:identifier": "SDN:R18::CC00077", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00077", + "skos:altLabel": "Core Config 77", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMixedLayerPMax_dbar" + }, + "dc:identifier": "SDN:R18::CC00077", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum sampling pressure used by ice cover detection algorithm (i.e., start pressure threshold for ice detection algorithm). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ocr # measurements. Template_Values:{param:[DownIrr, DownRad, UpIrr, UpRad];I:[1..3];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00029", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMinTransmitted_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 29", + "skos:notation": "SDN:R18::CB00029", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00029", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/2/" + }, + "dce:identifier": "SDN:R18::CC00215", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00215", + "skos:altLabel": "Core Config 215", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionPeriodEndOfLife_minutes" + }, + "dc:identifier": "SDN:R18::CC00215", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the Iridium transmission when in End Of Life mode. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/2/" + }, + "dce:identifier": "SDN:R18::CC00059", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00059", + "skos:altLabel": "Core Config 59", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSSetClockSensorCard_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "When the float Real Time Clock is set, also set the clock of the measurement card. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/2/" + }, + "dce:identifier": "SDN:R18::CC00183", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00183", + "skos:altLabel": "Core Config 183", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionMaxTimeBuoyancyAcquisition_csec" + }, + "dc:identifier": "SDN:R18::CC00183", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of the last pump action of the buoyancy acquisition phase. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/2/" + }, + "dce:identifier": "SDN:R18::CC00052", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00052", + "skos:altLabel": "Core Config 52", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_EmergencyModeWaterLeakDetection_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Water leak emergency mode. If set to yes, the float will transition to the Emergency mode upon detection of an internal water leak. If set to no, the float will only log the condition to the system_log.txt file. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Tri profile option (1 = YES, 0 = NO). From the first generation of PROVOR floats for which a number of configurations are allowed, i.e. if tri profile is set to yes, it indicates a float which performs 1 deep profile followed by two shallower profiles. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00218", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TriProfileOption_LOGICAL" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 218", + "skos:notation": "SDN:R18::CC00218", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00218", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/2/" + }, + "dce:identifier": "SDN:R18::CC00105", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00105", + "skos:altLabel": "Core Config 105", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxAttemptsGPSAcquisitionBeforeResetGPS_COUNT" + }, + "dc:identifier": "SDN:R18::CC00105", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum number of GPS location acquisition retries before it resets the GPS. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode D phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00025", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedDPhase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 25", + "skos:notation": "SDN:R18::CB00025", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00025", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Specifies the time in minutes of the listening window for a sound source signal for underwater positioning, typically used in under ice applications (APF9 RAFOS variant firmware). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00187", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RafosSampling_minutes" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 187", + "skos:notation": "SDN:R18::CC00187", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00187", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data processing rate for the subsampling # of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];SubS:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00087", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeSubSamplingDataProcessingRate_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 87", + "skos:notation": "SDN:R18::CB00087", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00087", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/2/" + }, + "dce:identifier": "SDN:R18::CC00031", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00031", + "skos:altLabel": "Core Config 31", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CTDPumpStopPressureOffset_dbar" + }, + "dc:identifier": "SDN:R18::CC00031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure added to the most recently measured pressure at the surface, the sum of which is the pressure at which the conductivity, temperature and pressure sampling stops for a pumped type CTD. It is also the pressure at which the Surface phase begins. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/2/" + }, + "dce:identifier": "SDN:R18::CC00056", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00056", + "skos:altLabel": "Core Config 56", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSAcquisitionEndOfLife_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a GPS session to acquire a GPS fix in each End Of Life transmission (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of ascent depth zones defined for the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00090", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseNumberOfDepthZone_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 90", + "skos:notation": "SDN:R18::CB00090", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00090", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum delay in number of days of no transmission due to the ice detection algorithm. This parameter is used to disable the ice detection algorithm and force the float to surface even if ice is detected. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00076", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMaxDaysNoTransmission_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 76", + "skos:notation": "SDN:R18::CC00076", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00076", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of samples for the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00089", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneNumberOfSamples_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 89", + "skos:notation": "SDN:R18::CB00089", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00089", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Start pressure to define the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00071", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneStartPres_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 71", + "skos:notation": "SDN:R18::CB00071", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00071", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/2/" + }, + "dce:identifier": "SDN:R18::CC00043", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00043", + "skos:altLabel": "Core Config 43", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToParkPresSamplingTime_seconds" + }, + "dc:identifier": "SDN:R18::CC00043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the descent to parking pressure. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/2/" + }, + "dce:identifier": "SDN:R18::CC00109", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00109", + "skos:altLabel": "Core Config 109", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MeasureBattery_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00109", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Request a measure of the battery voltage and report it (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the ascending profile. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00007", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 7", + "skos:notation": "SDN:R18::CB00007", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00007", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/2/" + }, + "dce:identifier": "SDN:R18::CC00040", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00040", + "skos:altLabel": "Core Config 40", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentAdjustmentToBuoyancy_seconds" + }, + "dc:identifier": "SDN:R18::CC00040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Controls the descent rate, commonly cited as 'buoyancy nudge'. For SOLO-II it is seconds pump is run to adjust float descent rate from drift depth to profile depth; unit can also be in COUNT. The SOLO-II floats are ballasted for profile depth, if the floats are poorly ballasted, float will descend quite fast to profile depth. The more pumping that is done at 1000db that is unnecessary at 2000db will save energy and it can be used as an energy saving measure. Occasionally this means the float will stop short of profile depth but won't have grounded. Template_Values:{unit:[COUNT, days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/2/" + }, + "dce:identifier": "SDN:R18::CC00002", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00002", + "skos:altLabel": "Core Config 2", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_Offset_COUNT" + }, + "dc:identifier": "SDN:R18::CC00002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Offset used to pack the P, T and S data. Template_Values:{PARAM:[PRES,PSAL,TEMP];unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/2/" + }, + "dce:identifier": "SDN:R18::CC00007", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00007", + "skos:altLabel": "Core Config 7", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeedFactor_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This factor defines the speed of the ascent phase (between 0: nominal speed and 5: lowest speed). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00243/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00243/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00243/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Flag to manage the end-of-life-at-depth function (1 = YES, 0 = NO). This function consists of requesting to the float not to ascent at the end of his life if the battery is exhausted. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00243", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_EndOfLifeAtDepth_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-12 11:41:12.0", + "skos:altLabel": "Core Config 243", + "skos:notation": "SDN:R18::CC00243", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00243", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00243/3/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/2/" + }, + "dce:identifier": "SDN:R18::CC00170", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00170", + "skos:altLabel": "Core Config 170", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CC00170", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Thickness of the slices for deep depths (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode C1 phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00019", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedC1Phase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 19", + "skos:notation": "SDN:R18::CB00019", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00019", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Use the pressure activation feature. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00142", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivationMode_LOGICAL" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 142", + "skos:notation": "SDN:R18::CC00142", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00142", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of additional raw data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00075", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneRawDataAcquisition_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 75", + "skos:notation": "SDN:R18::CB00075", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00075", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/2/" + }, + "dce:identifier": "SDN:R18::CC00014", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00014", + "skos:altLabel": "Core Config 14", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BitMaskMonthsIceEvasionActive_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicates for which months the ice evasion is active - months in reverse order. This is a parameter for AC1 which provides the months it should be used. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00223/", + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00223/1/" + }, + "dce:identifier": "SDN:R18::CC00223", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00223", + "skos:altLabel": "Core Config 223", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkPressurePhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00223", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Park pressure of multi-parking phase #. Template_Values:{D:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period for the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[minutes, seconds, dsec, bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00073", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSamplingPeriod_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 73", + "skos:notation": "SDN:R18::CB00073", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00073", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/2/" + }, + "dce:identifier": "SDN:R18::CC00044", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00044", + "skos:altLabel": "Core Config 44", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToParkTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum time a float will try to reach its target depth (park) before aborting this step. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Last day of the year during which telemetry is attempted during the Surface phase. When the float surfaces on a day that is not specified, it does not attempt telemetry and immediately begins the Park Descent phase for the next profiling cycle. TelemetryDays are specified with a start day and an end day. The start day is the first day of the transmit season for the year. The end day is the last day of the transmit season for the year. A setting of 0 0 disables TelemetryDays, and the float attempts telemetry during each Surface Phase. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00093", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionEndTelemetryDay_NUMBER" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 93", + "skos:notation": "SDN:R18::CC00093", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00093", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data processing mode for the subsampling # of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];SubS:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00077", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSubSamplingDataProcessingMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 77", + "skos:notation": "SDN:R18::CB00077", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00077", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/2/" + }, + "dce:identifier": "SDN:R18::CC00192", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00192", + "skos:altLabel": "Core Config 192", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SeeksToParkPeriodsIntervals_seconds" + }, + "dc:identifier": "SDN:R18::CC00192", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The SEEK (settle) time for the float after descent as it settles towards the drift target. For SOLO floats this is a constant. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum delay allowed for the float to connect to the RUDICS server. Default value is 30 minutes. Template_Values:{unit:[hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00026", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ConnectionFailureTimeOut_minutes" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:33.0", + "skos:altLabel": "Core Config 26", + "skos:notation": "SDN:R18::CC00026", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00026", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of subsamplings of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00085", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeNumberOfSubSampling_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 85", + "skos:notation": "SDN:R18::CB00085", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00085", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/2/" + }, + "dce:identifier": "SDN:R18::CC00194", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00194", + "skos:altLabel": "Core Config 194", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceDay_FloatDay" + }, + "dc:identifier": "SDN:R18::CC00194", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Day of the float surfacing. Template_Values:{unit:[FloatDay]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of Crover for Beam attenuation measurements. Template_Values:{unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00061", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverBeamAttenuationWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 61", + "skos:notation": "SDN:R18::CB00061", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00061", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00226/", + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00226/1/" + }, + "dce:identifier": "SDN:R18::CC00226", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00226", + "skos:altLabel": "Core Config 226", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceBeforeRepositionPhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00226", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval, during phase # of multi-parking mode, before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy. Template_Values:{D:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/2/" + }, + "dce:identifier": "SDN:R18::CC00038", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00038", + "skos:altLabel": "Core Config 38", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DelayBeforeMissionStart_minutes" + }, + "dc:identifier": "SDN:R18::CC00038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float waiting period before the first cycle of its mission. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/2/" + }, + "dce:identifier": "SDN:R18::CC00048", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00048", + "skos:altLabel": "Core Config 48", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTime_hours" + }, + "dc:identifier": "SDN:R18::CC00048", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset duration of the down time (from start of descent to start of ascent). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode temperature measurements. Template_Values:{unit:[degC, mdegC]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00028", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedTemperature_mdegC" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 28", + "skos:notation": "SDN:R18::CB00028", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00028", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Time the float will remain on the surface transmitting its data at the end of each cycle (ARGOS transmission only). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00214", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionMinTime_hours" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 214", + "skos:notation": "SDN:R18::CC00214", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00214", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/2/" + }, + "dce:identifier": "SDN:R18::CC00143", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00143", + "skos:altLabel": "Core Config 143", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivationTimeout_seconds" + }, + "dc:identifier": "SDN:R18::CC00143", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The pressure activation phase starts after the first successful auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/2/" + }, + "dce:identifier": "SDN:R18::CC00196", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00196", + "skos:altLabel": "Core Config 196", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time spent on the surface (surface drift). For NEMO(Iridium) the definition for this variable is: the time limit for staying at the surface, i.e. maximum surface time. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/2/" + }, + "dce:identifier": "SDN:R18::CC00112", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00112", + "skos:altLabel": "Core Config 112", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MissionPreludeTime_hours" + }, + "dc:identifier": "SDN:R18::CC00112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration (from start up) the float transmits test messages before the first dive. It's crucial in calculating the time of the first descent. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the descent to parking pressure. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[minutes, seconds, dsec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00003", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToParkPresSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 3", + "skos:notation": "SDN:R18::CB00003", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00003", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. First day of the year during which telemetry is attempted during the Surface phase. When the float surfaces on a day that is not specified, it does not attempt telemetry and immediately begins the Park Descent phase for the next profiling cycle. TelemetryDays are specified with a start day and an end day. The start day is the first day of the transmit season for the year. The end day is the last day of the transmit season for the year. A setting of 0 0 disables TelemetryDays, and the float attempts telemetry during each Surface Phase. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00092", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionFirstTelemetryDay_NUMBER" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 92", + "skos:notation": "SDN:R18::CC00092", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00092", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/2/" + }, + "dce:identifier": "SDN:R18::CC00145", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00145", + "skos:altLabel": "Core Config 145", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureBladderTarget_dbar" + }, + "dc:identifier": "SDN:R18::CC00145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Target bladder pressure. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/2/" + }, + "dce:identifier": "SDN:R18::CC00032", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00032", + "skos:altLabel": "Core Config 32", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CTDPumpStopPressurePlusThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sum of CONFIG_CTDPumpStopPressure_dbar plus a pressure threshold or overlap (Poverlap). For PROVOR floats with software versions < 5816A00 and ARVOR floats with software versions < 5605A00, Poverlap is defined as follows: Poverlap = bin_size/2. For PROVOR floats with software versions >= 5816A00 and ARVOR floats with software versions >=5605A00, Poverlap = 0.5 dbar. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Rank of the first valid sample provided by the (0 is the rank of the first sample). Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00012", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FirstValidSample_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 12", + "skos:notation": "SDN:R18::CB00012", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00012", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/2/" + }, + "dce:identifier": "SDN:R18::CC00198", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00198", + "skos:altLabel": "Core Config 198", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceValveMaxTimeAdditionalActions_csec" + }, + "dc:identifier": "SDN:R18::CC00198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of the additional valve actions performed at the surface during the buoyancy reduction phase. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Time interval between and pressure measurements due to the fact that the answer is not simultaneous with the CTD/pressure answer. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];unit:[minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00065", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimePressureOffset_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 65", + "skos:notation": "SDN:R18::CB00065", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00065", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/2/" + }, + "dce:identifier": "SDN:R18::CC00124", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00124", + "skos:altLabel": "Core Config 124", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OkVacuum_COUNT" + }, + "dc:identifier": "SDN:R18::CC00124", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal vacuum threshold. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/2/" + }, + "dce:identifier": "SDN:R18::CC00009", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00009", + "skos:altLabel": "Core Config 9", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeedStartPressureThresholdForSlowPhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure threshold to start the slow ascent speed phase. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Preset duration of the down time (from start of descent to start of ascent) specific to the spring/summer period. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00051", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTimeSpringSummer_hours" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 51", + "skos:notation": "SDN:R18::CC00051", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00051", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ctd temperature measurements. Template_Values:{unit:[degC, mdegC]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00015", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMinTransmittedTemperature_mdegC" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 15", + "skos:notation": "SDN:R18::CB00015", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00015", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Profile sampling method (1 = averaged, 0 = spot sampling). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00177", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileSamplingMethod_LOGICAL" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 177", + "skos:notation": "SDN:R18::CC00177", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00177", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/4/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Isobar that divides intermediate depths from deep depths for the purpose of data reduction, for floats with 3 depth zones. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00167", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureThresholdDataReductionIntermediateToDeep_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 167", + "skos:notation": "SDN:R18::CC00167", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00167", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/2/" + }, + "dce:identifier": "SDN:R18::CC00096", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00096", + "skos:altLabel": "Core Config 96", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CC00096", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the in air measurement phase. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/2/" + }, + "dce:identifier": "SDN:R18::CC00010", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00010", + "skos:altLabel": "Core Config 10", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentTime_hours" + }, + "dc:identifier": "SDN:R18::CC00010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset duration of ascent. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/2/" + }, + "dce:identifier": "SDN:R18::CC00182", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00182", + "skos:altLabel": "Core Config 182", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionMaxTimeAscent_csec" + }, + "dc:identifier": "SDN:R18::CC00182", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of a pump action during ascent. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/2/" + }, + "dce:identifier": "SDN:R18::CC00209", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00209", + "skos:altLabel": "Core Config 209", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeDelaybeforeDescentRetryWhenStuckAtSurface_minutes" + }, + "dc:identifier": "SDN:R18::CC00209", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time delay between each new attempt to descend when the float is stuck at the surface. When the float cannot reach the pressure threshold defined by CONFIG_BuoyancyReductionFirstThreshold_dbar after a given number of buoyancy actions it waits a period of time specified by CONFIG_TimeDelaybeforeDescentRetryWhenStuckAtSurface_minutes before starting a new sequence of buoyancy actions. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Scenario followed by the float when a grounding is detected during descent to profile, or profile drift depth. Values and possibilities vary according to float types, check specific manuals for details. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00063", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModeForProfileDepth_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 63", + "skos:notation": "SDN:R18::CC00063", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00063", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode temperature measurements. Template_Values:{unit:[degC, mdegC]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00027", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedTemperature_mdegC" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 27", + "skos:notation": "SDN:R18::CB00027", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00027", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Controls the ascent rate, commonly cited as buoyancy nudge. Units can be of several types depending on the float model. Template_Values:{unit:[COUNT, days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00003", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentAdjustmentToBuoyancy_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:33.0", + "skos:altLabel": "Core Config 3", + "skos:notation": "SDN:R18::CC00003", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00003", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/2/" + }, + "dce:identifier": "SDN:R18::CC00149", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00149", + "skos:altLabel": "Core Config 149", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeDescentToParkingDepth_seconds" + }, + "dc:identifier": "SDN:R18::CC00149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Interval between float samples of the pressure to determine if the Park depth has been reached. Template_Values:{unit:[minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ctd temperature measurements. Template_Values:{unit:[degC, mdegC]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00016", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMaxTransmittedTemperature_mdegC" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 16", + "skos:notation": "SDN:R18::CB00016", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00016", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Time delay between recovery messages. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00210", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeDelaybetweenRecoveryMessage_minutes" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 210", + "skos:notation": "SDN:R18::CC00210", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00210", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data of the can be reported as they have been sampled or synchronized with one CTD parameter (PRES or TEMP or PSAL). The synchronization is done with the timely closest sample of the CTD (see float manual for details). Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Stm, Suna, Sfet];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00069", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneDataSynchronizationMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 69", + "skos:notation": "SDN:R18::CB00069", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00069", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/2/" + }, + "dce:identifier": "SDN:R18::CC00080", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00080", + "skos:altLabel": "Core Config 80", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionOilVolumeForFirstValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00080", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Volume of the first valve action of a buoyancy inversion phase. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/2/" + }, + "dce:identifier": "SDN:R18::CC00022", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00022", + "skos:altLabel": "Core Config 22", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentStart_minutes" + }, + "dc:identifier": "SDN:R18::CC00022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset time to start ascent profile. Units = minutes if expressed in minutes past midnight. Units = HH if expressed in 24 hour clock. Template_Values:{unit:[minutes, HH]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00101/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00101/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00101/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Vertical pressure offset of the secondary optode sensor. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CB00101", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_Optode2VerticalPressureOffset_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-12 11:39:42.0", + "skos:altLabel": "BGC Config 101", + "skos:notation": "SDN:R18::CB00101", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00101", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00101/3/" + }, + "pav:authoredOn": "2025-12-12 11:39:42.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/2/" + }, + "dce:identifier": "SDN:R18::CC00148", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00148", + "skos:altLabel": "Core Config 148", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeDescent_minutes" + }, + "dc:identifier": "SDN:R18::CC00148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float descent (after CONFIG_BuoyancyReductionSecondThreshold_dbar). Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/2/" + }, + "dce:identifier": "SDN:R18::CC00190", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00190", + "skos:altLabel": "Core Config 190", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RudicsAndIridiumSessionWhenNoGPS_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00190", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For RUDICS transmission floats, perform also one Iridium session (to get an Iridium position) when the GPS fix is not valid. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Crover beam attenuation measurements. Template_Values:{unit:[m^-1]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00039", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverMinTransmittedBeamAttenuation_m^-1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 39", + "skos:notation": "SDN:R18::CB00039", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00039", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Transmit hydraulic data (recorded pump/valve actions with time, pressure and duration) at the end of the cycle (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00067", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_HydraulicDataTransmission_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:33.0", + "skos:altLabel": "Core Config 67", + "skos:notation": "SDN:R18::CC00067", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00067", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Float pressure limit at which an emergency ascent phase will be triggered. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00153", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureMaxBeforeEmergencyAscent_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 153", + "skos:notation": "SDN:R18::CC00153", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00153", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/2/" + }, + "dce:identifier": "SDN:R18::CC00082", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00082", + "skos:altLabel": "Core Config 82", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionOilVolumePerValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00082", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Valve action duration during the buoyancy inversion phase. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00222/", + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00222/1/" + }, + "dce:identifier": "SDN:R18::CC00222", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00222", + "skos:altLabel": "Core Config 222", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MultiParkingPhase_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00222", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of multi-parking phases (up to 5 for Provor CTS5 floats). Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Suna with scoop which redirects flow through Suna optics. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00053", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaWithScoop_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 53", + "skos:notation": "SDN:R18::CB00053", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00053", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/2/" + }, + "dce:identifier": "SDN:R18::CC00107", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00107", + "skos:altLabel": "Core Config 107", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxDelayBeforeCycleStart_minutes" + }, + "dc:identifier": "SDN:R18::CC00107", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum extra time a float can stay on the surface after transmitting. This feature is used for SOLO-II floats to try and make them stay in a particular area, e.g. near the equator for equatorial floats. If a float is drifting at the surface and moving in the wanted direction, the feature is turned on to keep it drifting at the surface in a favourable direction. If the float is moving in an unwanted direction, then this feature is turned off, so that the float dives immediately. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Provides the ability (enable/disable) for engineering information to be reported back by the float (APF9). Template_Values:{unit:[NUMBER, hex]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00034", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DebugBits_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 34", + "skos:notation": "SDN:R18::CC00034", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00034", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Desired number of retransmissions of the N ARGOS messages needed to transmit the data collected during the cycle. This parameter is also used to compute the transmission duration. To transmit N ARGOS messages, the transmission duration of an ARGOS PROVOR float is : MAX([N*CONFIG_TransmissionRepetitionPeriod_seconds*CONFIG_TelemetryRetransmission_COUNT]/3600, CONFIG_TransmissionMaxTime_hours). Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00206", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryRetransmission_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 206", + "skos:notation": "SDN:R18::CC00206", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00206", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Allow CTD pressure reset-offset at surface (0 = Disabled, 1 = Enabled). For ARVOR_CM floats. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00155", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureOffsetResetAtSurface_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-13 16:33:42.0", + "skos:altLabel": "Core Config 155", + "skos:notation": "SDN:R18::CC00155", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00155", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/3/" + }, + "pav:authoredOn": "2026-03-13 16:33:42.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Duration of the ice detection test. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00089", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionTestDuration_seconds" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 89", + "skos:notation": "SDN:R18::CC00089", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00089", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/2/" + }, + "dce:identifier": "SDN:R18::CC00084", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00084", + "skos:altLabel": "Core Config 84", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionPumpActionMaxTimeAscent_csec" + }, + "dc:identifier": "SDN:R18::CC00084", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Similar to CONFIG_PumpActionMaxTimeAscent_csec but for a float in ice detection mode. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/2/" + }, + "dce:identifier": "SDN:R18::CC00119", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00119", + "skos:altLabel": "Core Config 119", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMaxPerValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00119", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold for the valve action durations. The valve flow is known for each float and CONFIG_OilVolumeMaxPerValveAction_cm^3 is converted to a maxDurationOfValveAction. During descent phases the float regularly computes a valve duration to sink to the target depth. In some specific cases the result can be a huge valve action duration and the result must be thresholded by maxDurationOfValveAction. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/2/" + }, + "dce:identifier": "SDN:R18::CC00046", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00046", + "skos:altLabel": "Core Config 46", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentVerticalThresholdForBuoyancyAction_dbar" + }, + "dc:identifier": "SDN:R18::CC00046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold. If the float vertical motion, during CONFIG_PressureCheckTimeDescent_minutes, is less than this threshold, the float makes buoyancy adjustments. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Logging verbosity is an integer describing the parameters to be output. Lower values produce more terse logging. A verbosity of 2 typically yields standard logging. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00104", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_LoggingVerbosity_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 104", + "skos:notation": "SDN:R18::CC00104", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00104", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of Ocr # measurements. Template_Values:{param:[DownIrr, DownRad, UpIrr, UpRad];I:[1..3];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00052", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrBandwidth_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 52", + "skos:notation": "SDN:R18::CB00052", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00052", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/2/" + }, + "dce:identifier": "SDN:R18::CC00137", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00137", + "skos:altLabel": "Core Config 137", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPositionHyperRetraction_COUNT" + }, + "dc:identifier": "SDN:R18::CC00137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For Apex APF11 Iridium floats, Hyper Retraction is used to pull in an amount of oil to temporarily increase a float density as it leaves the ocean surface. The result of the increased float density allows a float to move through a mixed density layer more easily or allows a float to descend at a faster rate. In particular, the HyperRetractCount is the temporary piston position used when the float leaves the Surface and starts a ParkDescent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Ascent end time of Profile 2 (expected time at the surface of Profile 2). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00020", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentEndTimeProfile2_HHMM" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 20", + "skos:notation": "SDN:R18::CC00020", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00020", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during in the depth zone #. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[minutes, seconds, dsec, bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00004", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 4", + "skos:notation": "SDN:R18::CB00004", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00004", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/2/" + }, + "dce:identifier": "SDN:R18::CC00099", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00099", + "skos:altLabel": "Core Config 99", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleLastGregMonth_MM" + }, + "dc:identifier": "SDN:R18::CC00099", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last month to use float cycle duration # (in gregorian month). is a number denoting the internal cycle label. Template_Values:{D:[1..9999];unit:[MM]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum waiting time needed by the between a switch OFF and a switch ON. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00011", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PowerSwitchDelayMin_msec" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 11", + "skos:notation": "SDN:R18::CB00011", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00011", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/2/" + }, + "dce:identifier": "SDN:R18::CC00035", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00035", + "skos:altLabel": "Core Config 35", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DeepestPressureAscendingProfile_dbar" + }, + "dc:identifier": "SDN:R18::CC00035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest pressure sampled in the ascending profile. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of for Turbidity measurements. Template_Values:{short_sensor_name:[Flntu, Stm];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00064", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TurbidityWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 64", + "skos:notation": "SDN:R18::CB00064", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00064", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/2/" + }, + "dce:identifier": "SDN:R18::CC00121", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00121", + "skos:altLabel": "Core Config 121", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMinPerValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00121", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold for the valve action durations. The valve flow is known for each float and CONFIG_OilVolumeMinPerValveAction_cm^3 is converted to a minDurationOfValveAction. During descent phases the float regularly computes a valve duration to sink to the target depth. In some specific cases the result can be a brief valve action duration and the result must be thresholded by minDurationOfValveAction. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/2/" + }, + "dce:identifier": "SDN:R18::CC00088", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00088", + "skos:altLabel": "Core Config 88", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionStartPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00088", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Start pressure of the ice detection algorithm. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Mode of the ISA ice detection algorithm (see float manual for details). E.g: For March 2018 firmware, the values signifiations are: 0 = not used, 1 = algorithm based on temperature median value, 2 = algorithm based on temperature median value and associated salinities. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00075", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionISAMode_NUMBER" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 75", + "skos:notation": "SDN:R18::CC00075", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00075", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/2/" + }, + "dce:identifier": "SDN:R18::CC00205", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00205", + "skos:altLabel": "Core Config 205", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryRepeatSessionDelay_minutes" + }, + "dc:identifier": "SDN:R18::CC00205", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Delay before a second Iridium session performed by the float just before diving for a new cycle. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/2/" + }, + "dce:identifier": "SDN:R18::CC00132", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00132", + "skos:altLabel": "Core Config 132", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkTime_hours" + }, + "dc:identifier": "SDN:R18::CC00132", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time spent at the parking pressure, not including descending and ascending times. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode B phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00023", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedBPhase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 23", + "skos:notation": "SDN:R18::CB00023", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00023", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode of the in the depth zone # (0 : none, 2 : pulsed, 3 : continuous). Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00008", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZonePowerAcquisitionMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 8", + "skos:notation": "SDN:R18::CB00008", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00008", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/2/" + }, + "dce:identifier": "SDN:R18::CC00185", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00185", + "skos:altLabel": "Core Config 185", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionTimeBuoyancyAcquisition_csec" + }, + "dc:identifier": "SDN:R18::CC00185", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the last pump action of the buoyancy acquisition phase. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of subsamplings of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00076", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneNumberOfSubSampling_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 76", + "skos:notation": "SDN:R18::CB00076", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00076", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/2/" + }, + "dce:identifier": "SDN:R18::CC00072", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00072", + "skos:altLabel": "Core Config 72", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionConnectionTimeOut_minutes" + }, + "dc:identifier": "SDN:R18::CC00072", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time out. This is similar to CONFIG_ConnectionTimeOut_minutes but for the first telemetry session of a float in ice detection mode. In ice detection mode, the float reduces the timeout of the first Iridium connection: if the first connection fails the cycle is aborted (ice probably present) but if the first connection succeeds (waters free of ice) the float switches to the nominal timeout (CONFIG_ConnectionTimeOut_minutes) for the following transmissions of the current cycle. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/2/" + }, + "dce:identifier": "SDN:R18::CC00217", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00217", + "skos:altLabel": "Core Config 217", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TripInterval_hours" + }, + "dc:identifier": "SDN:R18::CC00217", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conversion factor for the up and down times. If it is set to 2, then each interval is equal to 2 hours (or seconds or minutes); if it is set to 1, then each interval is equal to 1 unit. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/2/" + }, + "dce:identifier": "SDN:R18::CC00144", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00144", + "skos:altLabel": "Core Config 144", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureBladderMax_dbar" + }, + "dc:identifier": "SDN:R18::CC00144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum air bladder pressure setting. Template_Values:{unit:[COUNT, bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/2/" + }, + "dce:identifier": "SDN:R18::CC00039", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00039", + "skos:altLabel": "Core Config 39", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthTable_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth table number for profiler sampling pressures. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/2/" + }, + "dce:identifier": "SDN:R18::CC00071", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00071", + "skos:altLabel": "Core Config 71", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionAscentVerticalThresholdForBuoyancyAction_dbar" + }, + "dc:identifier": "SDN:R18::CC00071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold. This is similar to CONFIG_AscentVerticalThresholdForBuoyancyAction_dbar but for a float in ice detection mode. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Fluorescence of measurements. Template_Values:{short_sensor_name:[Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00035", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MinTransmittedFluorescence_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 35", + "skos:notation": "SDN:R18::CB00035", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00035", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/2/" + }, + "dce:identifier": "SDN:R18::CC00125", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00125", + "skos:altLabel": "Core Config 125", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkAndProfileCycleCounter_COUNT" + }, + "dc:identifier": "SDN:R18::CC00125", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of profiles performed from Park depth before a deep profile is done. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/2/" + }, + "dce:identifier": "SDN:R18::CC00197", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00197", + "skos:altLabel": "Core Config 197", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceValveAdditionalActions_COUNT" + }, + "dc:identifier": "SDN:R18::CC00197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Target number of additional valve actions performed at the surface during the buoyancy reduction phase. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/2/" + }, + "dce:identifier": "SDN:R18::CC00220", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00220", + "skos:altLabel": "Core Config 220", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ValveActionPeriodFactorBuoyancyReduction_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00220", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Define the period of valve actions during the second phase of the buoyancy reduction (between CONFIG_BuoyancyReductionFirstThreshold_dbar and CONFIG_BuoyancyReductionSecondThreshold_dbar). The valve is open during CONFIG_ValveTimeActionBuoyancyReduction_csec each CONFIG_ValveTimeActionBuoyancyReduction_csec*CONFIG_ValveActionPeriodFactorBuoyancyReduction_NUMBER. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/2/" + }, + "dce:identifier": "SDN:R18::CC00103", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00103", + "skos:altLabel": "Core Config 103", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalPressureCalibrationCoef2_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00103", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Second coefficient used to compute float internal pressure from sensor counts. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/2/" + }, + "dce:identifier": "SDN:R18::CC00030", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00030", + "skos:altLabel": "Core Config 30", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CTDPumpStopPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure at which the CTD pump is switched off. As the float ascends, the code looks at the pressure and if <= CONFIG_CTDPumpStopPressure, the CTD is turned off. CTDPumpStopPressure is a firmware threshold and as such, data may continue to be collected for a limited span after the threshold is recognized. Especially in floats that return high resolution discrete data, there might be data collected shallower than the cut off, due to the discrete nature of the pressure data and also due to the time necessary for the firmware to turn off the CTD once the pressure threshold is reached. For example for SOLOII floats the CTD is switched off at 1dbar, and typically the shallowest data is from 0.5 to 0.8 dbar. This shallow data should be carefully assessed for its validity. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/2/" + }, + "dce:identifier": "SDN:R18::CC00156", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00156", + "skos:altLabel": "Core Config 156", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureOffsetSampledAfterTransmission_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00156", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sample surface pressure offset only if an Iridium transmission or a GPS session occurred (to be sure that the pressure offset is sampled at the surface). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling interval used by the float to collect T and S between CONFIG_IceDetectionMixedLayerPMax_dbar and CONFIG_IceDetectionMixedLayerPMin_dbar for the TEMP comparison, within the Ice Detection algorithm. Units can be dbar (e.g. PROVOR CTS5) or minutes (e.g. ARVOR). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg, minutes]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00083", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionPressureInterval_dbar" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 83", + "skos:notation": "SDN:R18::CC00083", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00083", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/4/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The Apf frame definition allows for a variable number of spectrometer pixels (also called channels) to be included in the frame. The two pixel values are configured indirectly via the wavelength range of the spectrum to be output (Suna Hardware Manual, section 4.2.3, input/output configuration parameters, data wavelength low/high.) The firmware converts the wavelength values to spectrometer pixels. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00047", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaApfFrameOutputPixelEnd_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 47", + "skos:notation": "SDN:R18::CB00047", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00047", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/2/" + }, + "dce:identifier": "SDN:R18::CC00189", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00189", + "skos:altLabel": "Core Config 189", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RudicsAndIridiumSession_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00189", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This float has a RUDICS transmission system. However it is able to connect to Iridium if the user wants to get one Iridium position for each cycle. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Specifies whether the Flbb instrument is set to sample. Values: Zero disables sampling and nonzero enables sampling. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00056", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FlbbSampling_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 56", + "skos:notation": "SDN:R18::CB00056", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00056", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/2/" + }, + "dce:identifier": "SDN:R18::CC00171", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00171", + "skos:altLabel": "Core Config 171", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileDepthInterval_dbar" + }, + "dc:identifier": "SDN:R18::CC00171", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Target depth interval between final CTD samples when in the spot sampling mode. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/2/" + }, + "dce:identifier": "SDN:R18::CC00115", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00115", + "skos:altLabel": "Core Config 115", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfOutOfTolerancePresBeforeReposition_COUNT" + }, + "dc:identifier": "SDN:R18::CC00115", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of consecutive pressure measurements outside the target pressure interval before performing a drift readjustment. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/2/" + }, + "dce:identifier": "SDN:R18::CC00042", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00042", + "skos:altLabel": "Core Config 42", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentSpeedMin_mm/s" + }, + "dc:identifier": "SDN:R18::CC00042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float minimum descent speed before activating the valve. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the drift at profile pressure. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00006", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DriftAtProfilePresSamplingPeriod_minutes" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 6", + "skos:notation": "SDN:R18::CB00006", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00006", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Start pressure to define the ascent depth zone # of the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00091", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneStartPres_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 91", + "skos:notation": "SDN:R18::CB00091", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00091", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Isobar that divides shallow depths from intermediate depths for the purpose of data reduction, for floats with 3 depth zones. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00168", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureThresholdDataReductionShallowToIntermediate_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 168", + "skos:notation": "SDN:R18::CC00168", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00168", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/2/" + }, + "dce:identifier": "SDN:R18::CC00095", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00095", + "skos:altLabel": "Core Config 95", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementPeriodicity_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00095", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Cycle periodicity of the in air measurement phase: 0 means no in air acquisition, 1 = in air acquisition every cycle, and N = in air acquisition one cycle every N cycles. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of for excitation of fluorescence measurements. Template_Values:{short_sensor_name:[Cyc, Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00059", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceExcitationBandwidth_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 59", + "skos:notation": "SDN:R18::CB00059", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00059", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of for emission of fluorescence measurements. Template_Values:{short_sensor_name:[Cyc, Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00058", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceEmissionWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 58", + "skos:notation": "SDN:R18::CB00058", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00058", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/2/" + }, + "dce:identifier": "SDN:R18::CC00173", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00173", + "skos:altLabel": "Core Config 173", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileIncludeTransitionBin_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00173", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Include transition bins between depth zones (shallow/intermediate/bottom) in the algorithm of data reduction (1 = YES, 0 = NO). Yes: Calculate transition bin between top and middle section, and between middle and bottom sections. Transition bins are: (last top bin center + Top_Bin_Interval/2) to (last top bin center + Middle_Bin_Interval/2) and (last middle bin center + Middle_Bin_Interval/2) to (last middle bin center + Bottom_Bin_Interval/2). No: Do not calculate transition bins. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/2/" + }, + "dce:identifier": "SDN:R18::CC00060", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00060", + "skos:altLabel": "Core Config 60", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSTimeout_seconds" + }, + "dc:identifier": "SDN:R18::CC00060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Timeout for GPS acquisition. Template_Values:{unit:[hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Crover beam attenuation measurements. Template_Values:{unit:[m^-1]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00040", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverMaxTransmittedBeamAttenuation_m^-1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 40", + "skos:notation": "SDN:R18::CB00040", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00040", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/2/" + }, + "dce:identifier": "SDN:R18::CC00127", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00127", + "skos:altLabel": "Core Config 127", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplesPerAverage_COUNT" + }, + "dc:identifier": "SDN:R18::CC00127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples per value reported when the float reports average values. For example, for a float that samples hourly during the park period for 105 hours, and reports the average P and T, this would be 105. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SlicesThickness of the ascent depth zone # of the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00093", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneSlicesThickness_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 93", + "skos:notation": "SDN:R18::CB00093", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00093", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/2/" + }, + "dce:identifier": "SDN:R18::CC00054", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00054", + "skos:altLabel": "Core Config 54", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FloatReferenceDay_FloatDay" + }, + "dc:identifier": "SDN:R18::CC00054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Reference day. For PROVOR and ARVOR floats, this refers to the day number on which the first profile is to be made. The day when the mission starts is day zero. Template_Values:{unit:[FloatDay]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ctd salinity measurements. Template_Values:{unit:[psu, mpsu]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00018", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMaxTransmittedSalinity_mpsu" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 18", + "skos:notation": "SDN:R18::CB00018", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00018", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of for emission of fluorescence measurements. Template_Values:{short_sensor_name:[Cyc, Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00060", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceEmissionBandwidth_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 60", + "skos:notation": "SDN:R18::CB00060", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00060", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/2/" + }, + "dce:identifier": "SDN:R18::CC00175", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00175", + "skos:altLabel": "Core Config 175", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileIntermediateSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CC00175", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Thickness of the slices for intermediate depths (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/2/" + }, + "dce:identifier": "SDN:R18::CC00201", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00201", + "skos:altLabel": "Core Config 201", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryAutoTestAtDeployment_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00201", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a full auto-test (RUDICS server connection test) at float deployment (1 = YES, 0 = NO). A full auto-test includes a connection test on the RUDICS server and a GPS fix acquisition. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Suna nitrate concentration measurements. Template_Values:{unit:[mmol/L, umol/L, umol/kg, ug/L, kg/m^3, mg/m^3, ml/L]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00042", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaMinTransmittedNitrateConcentration_umol/L" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 42", + "skos:notation": "SDN:R18::CB00042", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00042", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period for the ascent depth zone # of the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];N:[1..5];unit:[ minutes, seconds, dsec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00095", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 95", + "skos:notation": "SDN:R18::CB00095", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00095", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/2/" + }, + "dce:identifier": "SDN:R18::CC00029", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00029", + "skos:altLabel": "Core Config 29", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CPActivationPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CP Activation Pressure. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/2/" + }, + "dce:identifier": "SDN:R18::CC00139", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00139", + "skos:altLabel": "Core Config 139", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonProfile_COUNT" + }, + "dc:identifier": "SDN:R18::CC00139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset profile piston position. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Interval between successive pump activations during ascent. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00181", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionIntervalDuringAscent_COUNT" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 181", + "skos:notation": "SDN:R18::CC00181", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00181", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Scenario followed by the float when a hanging (too low vertical motion after having activated its pump) during the ascent is detected. This parameter configures (with the same idea as CONFIG_GroundingMode_NUMBER for grounding) what should be the actions to perform to try to escape from hanging (e.g., it can activate its pump and valve alternatively to try to escape, or abandon the ascent and switch to the next scheduled task). Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00066", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_HangingMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 66", + "skos:notation": "SDN:R18::CC00066", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00066", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/2/" + }, + "dce:identifier": "SDN:R18::CC00011", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00011", + "skos:altLabel": "Core Config 11", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentToSurfaceTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum time a float will try to reach its target depth (surface) before aborting this step. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Stop pressure to define the depth zone # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00072", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneStopPres_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 72", + "skos:notation": "SDN:R18::CB00072", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00072", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Is the vector board show mode ON? (Yes/No). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00044", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_VectorBoardShowModeOn_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 44", + "skos:notation": "SDN:R18::CB00044", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00044", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Maximum transmission time for recovery messages. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00213", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionMaxTimeforRecoveryMessage_minutes" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 213", + "skos:notation": "SDN:R18::CC00213", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00213", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/2/" + }, + "dce:identifier": "SDN:R18::CC00140", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00140", + "skos:altLabel": "Core Config 140", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivation_dbar" + }, + "dc:identifier": "SDN:R18::CC00140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth at which float is set to pressure activate. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/2/" + }, + "dce:identifier": "SDN:R18::CC00025", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00025", + "skos:altLabel": "Core Config 25", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CompensatorHyperRetraction_COUNT" + }, + "dc:identifier": "SDN:R18::CC00025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Setting for the compensator hyper-retraction. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period for the sensor during the in air measurement phase. Template_Values:{short_sensor_name:[Ctd, Eco, Ocr, Optode, Sfet, Suna, Crover];unit:[minutes, seconds, dsec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00097", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementSamplingPeriod_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 97", + "skos:notation": "SDN:R18::CB00097", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00097", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ocr Photosynthetic Active Radiation measurements. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00031", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMinTransmittedPar_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 31", + "skos:notation": "SDN:R18::CB00031", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00031", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/2/" + }, + "dce:identifier": "SDN:R18::CC00013", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00013", + "skos:altLabel": "Core Config 13", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BitMaskMonthsIceDetectionActive_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indicates for which months the ice detection algorithm is active - months in reverse order. The bit mask is input as a 3 digit hexadecimal value in the mission file sent to the float. This parameter in the metadata file however is the decimal number of that hexadecimal value. For example for the Southern Hemisphere the default position is to have the ice detection algorithm active for all months except February: the hexadecimal value in the mission file is 'FFD' (or 1111 1111 1101 in binary representation), and the associated decimal value for the configuration parameter in the metafile would be 4093. The northern hemisphere default would be all months active except for August: the hexadecimal value is 'F7F' (or 1111 0111 1111 in binary representation) and the associated decimal value for the configuration parameter in the metafile would be 3967. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Clarification needed. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00113", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MissionSignature_NUMBER" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-05 17:07:33.0", + "skos:altLabel": "Core Config 113", + "skos:notation": "SDN:R18::CC00113", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00113", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/4/" + }, + "pav:authoredOn": "2026-03-05 17:07:33.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/2/" + }, + "dce:identifier": "SDN:R18::CC00193", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00193", + "skos:altLabel": "Core Config 193", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SlowAscentPistonAdjustment_COUNT" + }, + "dc:identifier": "SDN:R18::CC00193", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Used to adjust the piston position to speed ascent when the ascent is too slow. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/2/" + }, + "dce:identifier": "SDN:R18::CC00078", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00078", + "skos:altLabel": "Core Config 78", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMixedLayerPMin_dbar" + }, + "dc:identifier": "SDN:R18::CC00078", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum sampling pressure used by ice cover detection algorithm (i.e., end pressure threshold for ice detection algorithm). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/2/" + }, + "dce:identifier": "SDN:R18::CC00212", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00212", + "skos:altLabel": "Core Config 212", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionEndCycle_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00212", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a telemetry transmission at the end of the cycle (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/2/" + }, + "dce:identifier": "SDN:R18::CC00179", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00179", + "skos:altLabel": "Core Config 179", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CC00179", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Thickness of the slices for shallow depths (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The Apf frame definition allows for a variable number of spectrometer pixels (also called channels) to be included in the frame. The two pixel values are configured indirectly via the wavelength range of the spectrum to be output (Suna Hardware Manual, section 4.2.3, input/output configuration parameters, data wavelength low/high.) The firmware converts the wavelength values to spectrometer pixels. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00046", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaApfFrameOutputPixelBegin_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 46", + "skos:notation": "SDN:R18::CB00046", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00046", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/2/" + }, + "dce:identifier": "SDN:R18::CC00161", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00161", + "skos:altLabel": "Core Config 161", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDriftAtProfileDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00161", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float drift at profile depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00225/", + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00225/1/" + }, + "dce:identifier": "SDN:R18::CC00225", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00225", + "skos:altLabel": "Core Config 225", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDriftPhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00225", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval, during phase # of multi-parking mode, for float drift at parking or profile depth. Template_Values:{D:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/2/" + }, + "dce:identifier": "SDN:R18::CC00152", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00152", + "skos:altLabel": "Core Config 152", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeStabilization_minutes" + }, + "dc:identifier": "SDN:R18::CC00152", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float stabilization phases. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Stop time to define the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00081", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeStopTime_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 81", + "skos:notation": "SDN:R18::CB00081", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00081", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/2/" + }, + "dce:identifier": "SDN:R18::CC00037", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00037", + "skos:altLabel": "Core Config 37", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DeepProfileFirstFloat_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a profile on deployment (1 = YES, 0 = NO). This means that when the float is deployed, it skips the drift phase at the PARKING depth and sinks directly to the PROFILE depth and starts ascending for the first profile. E.g, this concerns some APEX floats. Independent of the Park and Profile cycle length, the first profile is always a Deep Profile that begins at the Profile Depth. This means the float returns a CTD profile relatively soon, typically less than a day, after the float is deployed. This feature supports comparison of the initial float profile with a conventional CTD cast from the ship. The result is that the first cycle is of shorter duration with a profile depth equal to PROFILE configuration pressure (regardless of the CONFIG_ParkAndProfileCycleCounter_COUNT configuration information). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/2/" + }, + "dce:identifier": "SDN:R18::CC00015", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00015", + "skos:altLabel": "Core Config 15", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyMinimum_COUNT" + }, + "dc:identifier": "SDN:R18::CC00015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum allowable buoyancy position in counts, overriding any other count setting. This configuration parameter prevents the movement of oil from the oil compartment of the bladder into the oil reservoir at the specified count to manage the maximum depth of a descent. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Suna nitrate concentration measurements. Template_Values:{unit:[mmol/L, umol/L, umol/kg, ug/L, kg/m^3, mg/m^3, ml/L]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00043", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaMaxTransmittedNitrateConcentration_umol/L" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 43", + "skos:notation": "SDN:R18::CB00043", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00043", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the park phase. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00130", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingPeriod_hours" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 130", + "skos:notation": "SDN:R18::CC00130", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00130", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Vertical pressure offset due to the fact that the sensor is not exactly at the Ctd pressure. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00048", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_VerticalPressureOffset_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 48", + "skos:notation": "SDN:R18::CB00048", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00048", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of measurements sampled before and after inflating the air bladder for the sensor during the in air measurement phase. Template_Values:{short_sensor_name:[Optode];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00096", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementNumberOfSamples_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 96", + "skos:notation": "SDN:R18::CB00096", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00096", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/2/" + }, + "dce:identifier": "SDN:R18::CC00163", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00163", + "skos:altLabel": "Core Config 163", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisationAtParkingDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00163", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation at parking depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ocr # measurements. Template_Values:{param:[DownIrr, DownRad, UpIrr, UpRad];I:[1..3];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00030", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMaxTransmitted_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 30", + "skos:notation": "SDN:R18::CB00030", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00030", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/2/" + }, + "dce:identifier": "SDN:R18::CC00111", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00111", + "skos:altLabel": "Core Config 111", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MissionPreludeAutoTest_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00111", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If set to yes, the float will transition to the Park Descent phase at the end of the period determined by CONFIG_MissionPreludeTime_hours only if the self test passes. If the self test fails, the float will go into Emergency mode. If set to no, the float will transition to the Park Descent phase whether or not the self test passes. In addition, the test results, pass or fail, will be logged to the system_log.txt file. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Slices thickness for in the depth zone #. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00002", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSlicesThickness_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:58.0", + "skos:altLabel": "BGC Config 2", + "skos:notation": "SDN:R18::CB00002", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00002", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:58.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/2/" + }, + "dce:identifier": "SDN:R18::CC00017", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00017", + "skos:altLabel": "Core Config 17", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyReductionFirstThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "First threshold of the buoyancy reduction phase. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/2/" + }, + "dce:identifier": "SDN:R18::CC00164", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00164", + "skos:altLabel": "Core Config 164", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisationAtProfileDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00164", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation at profile depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Preset duration of the down time (from start of descent to start of ascent) specific to the autumn/winter period. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00049", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTimeAutumnWinter_hours" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 49", + "skos:notation": "SDN:R18::CC00049", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00049", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/2/" + }, + "dce:identifier": "SDN:R18::CC00091", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00091", + "skos:altLabel": "Core Config 91", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMaxCycles_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00091", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum number of Ice Descent and Ice Ascent cycles the float will perform when it is unable to perform telemetry. When it has completed the specified number of cycles, the float will continue with the next profiling cycle. Range: [0-24] cycles. If IceDescentCycles is disabled, then the float will try to detect an ice cap if it cannot find the sky. If IceDescentCycles is enabled, the float will not try to detect the ice cap and will operate in accordance with 'Ice Descent and Ice Ascent Cycles' where it tries to drift out from under an ice cap. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/2/" + }, + "dce:identifier": "SDN:R18::CC00216", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00216", + "skos:altLabel": "Core Config 216", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionRepetitionPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CC00216", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission repetition rate. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Nitrate sampling flag. Values:<0:enable; 0:disable; >0:enable and initialize. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00055", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NitrateSampling_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 55", + "skos:notation": "SDN:R18::CB00055", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00055", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/2/" + }, + "dce:identifier": "SDN:R18::CC00079", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00079", + "skos:altLabel": "Core Config 79", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionNoVerticalMotionTimeOut_csec" + }, + "dc:identifier": "SDN:R18::CC00079", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold. When the float is in ice detection mode, if, despite of pump actions, no vertical motion is detected during this delay or this volume transfered, then the cycle is aborted. Template_Values:{unit:[minutes, seconds, dsec, csec, msec, usec, cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/2/" + }, + "dce:identifier": "SDN:R18::CC00165", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00165", + "skos:altLabel": "Core Config 165", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisationDuringAscent_dbar" + }, + "dc:identifier": "SDN:R18::CC00165", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation during ascent at a prescribed depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ocr Photosynthetic Active Radiation measurements. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00032", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMaxTransmittedPar_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 32", + "skos:notation": "SDN:R18::CB00032", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00032", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/2/" + }, + "dce:identifier": "SDN:R18::CC00123", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00123", + "skos:altLabel": "Core Config 123", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumePerPumpActionDescent_cm^3" + }, + "dc:identifier": "SDN:R18::CC00123", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Nominal oil volume of each pump action during descent (when the float brakes because of a too fast descent speed). Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:10.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/2/" + }, + "dce:identifier": "SDN:R18::CC00008", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00008", + "skos:altLabel": "Core Config 8", + "dc:date": "2025-12-12 11:41:10.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeedMin_mm/s" + }, + "dc:identifier": "SDN:R18::CC00008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float minimum ascent speed before activating the pump. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/2/" + }, + "dce:identifier": "SDN:R18::CC00050", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00050", + "skos:altLabel": "Core Config 50", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTimeExpiryTimeOfDay_minutes" + }, + "dc:identifier": "SDN:R18::CC00050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time out value for expiration of the down time (in minutes past midnight). Template_Values:{unit:[hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ctd pressure measurements. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00014", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMaxTransmittedPressure_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 14", + "skos:notation": "SDN:R18::CB00014", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00014", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/2/" + }, + "dce:identifier": "SDN:R18::CC00114", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00114", + "skos:altLabel": "Core Config 114", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfInternalCycles_COUNT" + }, + "dc:identifier": "SDN:R18::CC00114", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of internal cycles. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/2/" + }, + "dce:identifier": "SDN:R18::CC00001", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00001", + "skos:altLabel": "Core Config 1", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InverseGain_COUNT" + }, + "dc:identifier": "SDN:R18::CC00001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Inverse of the gain used to pack the P, T and S data. Template_Values:{PARAM:[PRES,PSAL,TEMP];unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/2/" + }, + "dce:identifier": "SDN:R18::CC00176", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00176", + "skos:altLabel": "Core Config 176", + "dc:date": "2025-12-12 11:41:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfilePressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00176", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profile pressure. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/2/" + }, + "dce:identifier": "SDN:R18::CC00200", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00200", + "skos:altLabel": "Core Config 200", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TargetAscentSpeed_cm/s" + }, + "dc:identifier": "SDN:R18::CC00200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Speed of ascent during upcast. Template_Values:{unit:[cm/s, mm/s]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The minimum buoyancy position in counts. The buoyancy pump will shut off if the buoyancy position reaches this minimum value. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00134", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonFullRetraction_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 134", + "skos:notation": "SDN:R18::CC00134", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00134", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "When the float Real Time Clock is set, also set the clock of the measurement card. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00067", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SetClockSensorCard_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 67", + "skos:notation": "SDN:R18::CB00067", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00067", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted beta measurements. Template_Values:{short_sensor_name:[Eco, Flbb];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00034", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxTransmittedBeta_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 34", + "skos:notation": "SDN:R18::CB00034", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00034", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/2/" + }, + "dce:identifier": "SDN:R18::CC00208", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00208", + "skos:altLabel": "Core Config 208", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeDelayAfterEndOfAscentPressureThreshold_minutes" + }, + "dc:identifier": "SDN:R18::CC00208", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time Delay. At the end of the ascent phase, when the float detects a given pressure (e.g. 6 dbar) it waits for this time delay before starting the pump for the final buoyancy acquisition. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/2/" + }, + "dce:identifier": "SDN:R18::CC00135", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00135", + "skos:altLabel": "Core Config 135", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPark_COUNT" + }, + "dc:identifier": "SDN:R18::CC00135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset park piston position. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. In case of grounding during the descent to profile depth phase, this parameter (PM18 in float user manual) defines the thickness of a new deep zone (from profile start pressure) for the purpose of data reduction. The thickness of the slices is 1 dbar in this zone. Should be set to 0 to disable this function. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00062", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModeDeepZoneThickness_dbar" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 62", + "skos:notation": "SDN:R18::CC00062", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00062", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/2/" + }, + "dce:identifier": "SDN:R18::CC00116", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00116", + "skos:altLabel": "Core Config 116", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfSubCycles_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00116", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of sub-cycles performed by the float during one float cycle. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode D phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00026", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedDPhase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 26", + "skos:notation": "SDN:R18::CB00026", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00026", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/2/" + }, + "dce:identifier": "SDN:R18::CC00202", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00202", + "skos:altLabel": "Core Config 202", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryEncodeMessage_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00202", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Encode the message before transmission (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "The buoyancy position used to ballast the float to be neutrally buoyant at a specified depth (usually 2000 dbar). Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00136", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPositionBallast_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 136", + "skos:notation": "SDN:R18::CC00136", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00136", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/3/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/2/" + }, + "dce:identifier": "SDN:R18::CC00065", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00065", + "skos:altLabel": "Core Config 65", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModePresAdjustment_dbar" + }, + "dc:identifier": "SDN:R18::CC00065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If in grounding mode 0, the float changes its drift pressure to its programmed one minus this value only if its current pressure is greater than this value. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/2/" + }, + "dce:identifier": "SDN:R18::CC00169", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00169", + "skos:altLabel": "Core Config 169", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileBottomBinInterval_cbar" + }, + "dc:identifier": "SDN:R18::CC00169", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth intervals for bottom depth (algorithm of data reduction). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Fluorescence of measurements. Template_Values:{short_sensor_name:[Eco, Flbb, Flntu];param:[Cdom, Chla];unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00036", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxTransmittedFluorescence_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 36", + "skos:notation": "SDN:R18::CB00036", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00036", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of sampling schemes defined for the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00079", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfSamplingScheme_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 79", + "skos:notation": "SDN:R18::CB00079", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00079", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/2/" + }, + "dce:identifier": "SDN:R18::CC00151", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00151", + "skos:altLabel": "Core Config 151", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeParking_minutes" + }, + "dc:identifier": "SDN:R18::CC00151", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float drift at park or profile depth. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00100/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00100/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00100/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Vertical pressure offset of the optode sensor. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CB00100", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeVerticalPressureOffset_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-12 11:39:41.0", + "skos:altLabel": "BGC Config 100", + "skos:notation": "SDN:R18::CB00100", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00100", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00100/3/" + }, + "pav:authoredOn": "2025-12-12 11:39:41.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Ascent end time of Profile 3 (expected time at the surface of Profile 3). Template_Values:{unit:[YYYYMMDD, HHMMSS, YYYYMMDDHHMMSS, HHMM, MMSS, YYYY, DD, HH, MM]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00021", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentEndTimeProfile3_HHMM" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 21", + "skos:notation": "SDN:R18::CC00021", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00021", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/2/" + }, + "dce:identifier": "SDN:R18::CC00005", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00005", + "skos:altLabel": "Core Config 5", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CC00005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the ascending profile. Template_Values:{unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/2/" + }, + "dce:identifier": "SDN:R18::CC00147", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00147", + "skos:altLabel": "Core Config 147", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeBuoyancyReductionPhase_seconds" + }, + "dc:identifier": "SDN:R18::CC00147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks after each valve action before checking the pressure during the buoyancy reduction phase. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/2/" + }, + "dce:identifier": "SDN:R18::CC00074", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00074", + "skos:altLabel": "Core Config 74", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionDescentVerticalThresholdToEndBuoyancyInversionPhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00074", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold. When the cycle is aborted, this threshold is used to detect speed inversion and to stop buoyancy inversion phase. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/2/" + }, + "dce:identifier": "SDN:R18::CC00100", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00100", + "skos:altLabel": "Core Config 100", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleLastGregYear_YYYY" + }, + "dc:identifier": "SDN:R18::CC00100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last year to use float cycle duration # (in gregorian year, two digits). is a number denoting the internal cycle label. Template_Values:{D:[1..9999];unit:[YYYY]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Start time to define the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[days, hours, minutes, seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00080", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeStartTime_seconds" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 80", + "skos:notation": "SDN:R18::CB00080", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00080", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Threshold used to detect a grounding of the float. If there is no vertical motion after having tranfered CONFIG_OilVolumeMinForGroundingDetection_cm^3 through the valve, the grounded flag is activated and the float acts as configurated by the CONFIG_GroundingMode_{unit} parameter. Template_Values:{unit:[cm^3]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00120", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMinForGroundingDetection_cm^3" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 120", + "skos:notation": "SDN:R18::CC00120", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00120", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Flntu turbidity measurements. Template_Values:{unit:[COUNT]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00038", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FlntuMinTransmittedTurbidity_COUNT" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 38", + "skos:notation": "SDN:R18::CB00038", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00038", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum delay in number of days (units are days) or in number of cycles (units are NUMBER) since the last ice evasion date to attempt a surfacing. This is often called the 'Spring', where the float stays underwater for a time even though the temperature has warmed. Template_Values:{unit:[NUMBER, days]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00087", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionSpringInhibitionDelaySinceLastIceEvasion_days" + }, + "owl:versionInfo": "3", + "dc:date": "2026-02-11 18:06:22.0", + "skos:altLabel": "Core Config 87", + "skos:notation": "SDN:R18::CC00087", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00087", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/3/" + }, + "pav:authoredOn": "2026-02-11 18:06:22.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode C1 phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00020", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedC1Phase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:53.0", + "skos:altLabel": "BGC Config 20", + "skos:notation": "SDN:R18::CB00020", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00020", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:53.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/2/" + }, + "dce:identifier": "SDN:R18::CC00221", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00221", + "skos:altLabel": "Core Config 221", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ValveTimeActionBuoyancyReduction_csec" + }, + "dc:identifier": "SDN:R18::CC00221", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the valve actions during the second phase of the buoyancy reduction (between CONFIG_BuoyancyReductionFirstThreshold_dbar and CONFIG_BuoyancyReductionSecondThreshold_dbar). Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/2/" + }, + "dce:identifier": "SDN:R18::CC00033", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00033", + "skos:altLabel": "Core Config 33", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CycleTime_hours" + }, + "dc:identifier": "SDN:R18::CC00033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Total duration of one cycle, usually close to 240 hours (10 days). For SOLO floats this is the total duration of one cycle, assuming that all float operations reach their full time-out intervals before moving to the next float stage. Typically the actual cycle time will be shorter than this value. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/2/" + }, + "dce:identifier": "SDN:R18::CC00102", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00102", + "skos:altLabel": "Core Config 102", + "dc:date": "2025-12-12 11:41:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalPressureCalibrationCoef1_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00102", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "First coefficient used to compute float internal pressure from sensor counts. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/2/" + }, + "dce:identifier": "SDN:R18::CC00159", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00159", + "skos:altLabel": "Core Config 159", + "dc:date": "2025-12-12 11:41:09.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDrift_dbar" + }, + "dc:identifier": "SDN:R18::CC00159", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float drift at parking or profile depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/2/" + }, + "dce:identifier": "SDN:R18::CC00086", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00086", + "skos:altLabel": "Core Config 86", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionSpringInhibitionAscentEnd_dbar" + }, + "dc:identifier": "SDN:R18::CC00086", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice evasion depth for the spring inhibition part of the ISA algorithm. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Stop pressure to define the ascent depth zone # of the sensor used in continuous profiling mode. Template_Values:{short_sensor_name:[Ctd, Sfet];N:[1..5];unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00092", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneStopPres_dbar" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 92", + "skos:notation": "SDN:R18::CB00092", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00092", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of additional raw data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00084", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeRawDataAcquisition_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 84", + "skos:notation": "SDN:R18::CB00084", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00084", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/2/" + }, + "dce:identifier": "SDN:R18::CC00118", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00118", + "skos:altLabel": "Core Config 118", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMaxPerPumpActionReposition_cm^3" + }, + "dc:identifier": "SDN:R18::CC00118", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold for the pump action duration for reposition in the parking drift interval. The pump flow is known for each float and CONFIG_OilVolumeMaxPerPumpActionReposition_cm^3 is converted to a maxDurationOfPumpActionReposition. When a reposition should be performed, the float computes the needed pump action duration. In some specific cases the result can be a huge pump action duration and the result must be thresholded by maxDurationOfPumpActionReposition. Template_Values:{unit:[cm^3]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/2/" + }, + "dce:identifier": "SDN:R18::CC00160", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00160", + "skos:altLabel": "Core Config 160", + "dc:date": "2025-12-12 11:41:13.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDriftAtParkingDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00160", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float drift at parking depth. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/2/" + }, + "dce:identifier": "SDN:R18::CC00045", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00045", + "skos:altLabel": "Core Config 45", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToProfTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum amount of time allowed for the float to descend to Profile pressure from Park pressure. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data processing output of the in the depth zone # (0 : raw, 1 : average, 7 : average/median/standard deviation). Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];N:[1..5];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00009", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneDataProcessingMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 9", + "skos:notation": "SDN:R18::CB00009", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00009", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Wavelength of Ocr # measurements. Template_Values:{param:[DownIrr, DownRad, UpIrr, UpRad];I:[1..3];unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00051", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrWavelength_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 51", + "skos:notation": "SDN:R18::CB00051", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00051", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/3/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Set the float Real Time Clock with GPS time. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00058", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSSetClock_LOGICAL" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "Core Config 58", + "skos:notation": "SDN:R18::CC00058", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00058", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:24.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/2/" + }, + "dce:identifier": "SDN:R18::CC00053", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00053", + "skos:altLabel": "Core Config 53", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FirstBuoyancyNudge_COUNT" + }, + "dc:identifier": "SDN:R18::CC00053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Test message data - initial buoyancy nudge which is used at both the beginning and end of the profile. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/2/" + }, + "dce:identifier": "SDN:R18::CC00098", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00098", + "skos:altLabel": "Core Config 98", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleLastGregDay_DD" + }, + "dc:identifier": "SDN:R18::CC00098", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last day to use float cycle duration # (in gregorian day). is a number denoting the internal cycle label. Template_Values:{D:[1..9999];unit:[DD]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode B phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00024", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedBPhase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:52.0", + "skos:altLabel": "BGC Config 24", + "skos:notation": "SDN:R18::CB00024", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00024", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:52.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/2/" + }, + "dce:identifier": "SDN:R18::CC00004", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00004", + "skos:altLabel": "Core Config 4", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentEndThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold used by the float to stop ascent speed control and pump actions. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Data processing mode for the subsampling # of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];S:[1..9999];SubS:[1..9999];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00086", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeSubSamplingDataProcessingMode_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 86", + "skos:notation": "SDN:R18::CB00086", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00086", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Time, needed after the is powered ON, to provide its first sample. Template_Values:{short_sensor_name:[Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna];unit:[seconds, dsec, csec, msec, usec]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00010", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_WarmUpTime_msec" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:55.0", + "skos:altLabel": "BGC Config 10", + "skos:notation": "SDN:R18::CB00010", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00010", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:55.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/2/" + }, + "dce:identifier": "SDN:R18::CC00106", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00106", + "skos:altLabel": "Core Config 106", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxCycles_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00106", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of cycles before float turns itself off, goes into end of life mode, or into recovery mode. Template_Values:{unit:[NUMBER]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Factor defining the oil volume transferred from the external bladder when a profile evasion occurs and the float has to brake. The transferred oil volume is CONFIG_ProfileEvasionBrakingFactor_NUMBER times the oil volume of the last pump action. Template_Values:{unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00172", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileEvasionBrakingFactor_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2026-02-11 18:06:22.0", + "skos:altLabel": "Core Config 172", + "skos:notation": "SDN:R18::CC00172", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00172", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/3/" + }, + "pav:authoredOn": "2026-02-11 18:06:22.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of Crover for Beam attenuation measurements. Template_Values:{unit:[nm]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00063", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverBeamAttenuationBandwidth_nm" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:54.0", + "skos:altLabel": "BGC Config 63", + "skos:notation": "SDN:R18::CB00063", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00063", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:54.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/2/" + }, + "dce:identifier": "SDN:R18::CC00055", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00055", + "skos:altLabel": "Core Config 55", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSAcquisitionEndCycle_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a GPS session to acquire a GPS fix at the end of the cycle (1 = YES, 0 = NO). Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Activate recovery mode (1 = YES, 0 = NO). If activated, the float remains on the surface indefinitely while transmitting its position and log files, and downloading new mission and sample configuration parameters if available. If recovery mode is then deactivated, the float will begin the Park Descent phase of a new mission. Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00188", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RecoveryModeActivate_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 188", + "skos:notation": "SDN:R18::CC00188", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00188", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/2/" + }, + "dce:identifier": "SDN:R18::CC00141", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00141", + "skos:altLabel": "Core Config 141", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivationCheckTime_hours" + }, + "dc:identifier": "SDN:R18::CC00141", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "In pressure activated floats, this parameter sets how often the float will test whether it is in the water, e.g. every 2 hours. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/2/" + }, + "dce:identifier": "SDN:R18::CC00204", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00204", + "skos:altLabel": "Core Config 204", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryMaxRetrySecondary_COUNT" + }, + "dc:identifier": "SDN:R18::CC00204", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Some float versions have a secondary telemetry system; in this case the float is able to perform an Iridium session (to get one Iridium position) in addition to the RUDICS version used in the main telemetry session specified by CONFIG_TelemetryMaxRetry_COUNT. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Sensors can be mounted on a stick to perform measurements in Air. Values (1=YES, 0=NO). Template_Values:{short_sensor_name:[Optode];unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00088", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MeasurementsInAir_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:59.0", + "skos:altLabel": "BGC Config 88", + "skos:notation": "SDN:R18::CB00088", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00088", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/2/" + }, + "dce:identifier": "SDN:R18::CC00131", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00131", + "skos:altLabel": "Core Config 131", + "dc:date": "2025-12-12 11:41:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingPeriodSecondary_hours" + }, + "dc:identifier": "SDN:R18::CC00131", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Configuration parameter for the secondary sampling period during the park phase following CONFIG_ParkSamplingPeriod_hours. This concerns some floats that have two different park sampling periods in a cycle, e.g. 1.5 hours followed by 6 hours. Template_Values:{unit:[days, hours, minutes, seconds]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/2/" + }, + "dce:identifier": "SDN:R18::CC00090", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00090", + "skos:altLabel": "Core Config 90", + "dc:date": "2025-12-12 11:41:05.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceEvasionStopPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00090", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice evasion depth. This is a parameter for AC1 ice algorithm which aborts the profile at a prescribed depth (CONFIG_IceEvasionDepth_dbar) without any check on environmental conditions (AC1, ISA and AID algorithms are used together in the ice version of the CTS5). Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/2/" + }, + "dce:identifier": "SDN:R18::CC00016", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00016", + "skos:altLabel": "Core Config 16", + "dc:date": "2025-12-12 11:41:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyNudgeToPark_COUNT" + }, + "dc:identifier": "SDN:R18::CC00016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of counts to change the piston position from its current position in the direction that will bring the float closer to the Park depth. It is applied after three successive pressure samples that are outside the dead band specified by CONFIG_PressureTargetToleranceDuringDrift_dbar. Template_Values:{unit:[COUNT]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Number of depth zones defined for the sensor while sampling during the phase of the cycle. Template_Values:{short_sensor_name:[Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna];cycle_phase_name:[AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase];unit:[NUMBER]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00070", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfDepthZone_NUMBER" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:57.0", + "skos:altLabel": "BGC Config 70", + "skos:notation": "SDN:R18::CB00070", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00070", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:57.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode C2 phase measurements. Template_Values:{unit:[angularDeg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CB00022", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedC2Phase_angularDeg" + }, + "owl:versionInfo": "3", + "dc:date": "2025-12-11 09:34:56.0", + "skos:altLabel": "BGC Config 22", + "skos:notation": "SDN:R18::CB00022", + "pav:version": "3", + "dce:identifier": "SDN:R18::CB00022", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/3/" + }, + "pav:authoredOn": "2025-12-11 09:34:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/2/" + }, + "dce:identifier": "SDN:R18::CC00108", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00108", + "skos:altLabel": "Core Config 108", + "dc:date": "2025-12-12 11:41:11.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxSizeEngineeringLogFile_kbyte" + }, + "dc:identifier": "SDN:R18::CC00108", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum size of engineering log file. Template_Values:{unit:[bit, byte, kbyte]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/2/" + }, + "dce:identifier": "SDN:R18::CC00184", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00184", + "skos:altLabel": "Core Config 184", + "dc:date": "2025-12-12 11:41:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionMaxTimeReposition_csec" + }, + "dc:identifier": "SDN:R18::CC00184", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of the pump action for a drift readjustment. Template_Values:{unit:[seconds, dsec, csec, msec, usec]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Park sampling method (1 = averaged, 0 = spot sampling). Template_Values:{unit:[LOGICAL]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R18::CC00128", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingMethod_LOGICAL" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-05 17:07:34.0", + "skos:altLabel": "Core Config 128", + "skos:notation": "SDN:R18::CC00128", + "pav:version": "3", + "dce:identifier": "SDN:R18::CC00128", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/3/" + }, + "pav:authoredOn": "2026-03-05 17:07:34.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/2/" + }, + "dce:identifier": "SDN:R18::CC00069", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00069", + "skos:altLabel": "Core Config 69", + "dc:date": "2025-12-12 11:41:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetection_degC" + }, + "dc:identifier": "SDN:R18::CC00069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature threshold under which profiles are aborted (suspicion of ice formation conditions). Template_Values:{unit:[degC, mdegC]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/1/" + }, + "pav:authoredOn": "2025-12-12 11:41:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/2/" + }, + "dce:identifier": "SDN:R18::CC00057", + "pav:version": "2", + "skos:notation": "SDN:R18::CC00057", + "skos:altLabel": "Core Config 57", + "dc:date": "2025-12-12 11:41:07.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSImprovedLocation_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Use the GPS improved location mode. When the float altitude is 0 meter, this mode provides better locations. Template_Values:{unit:[LOGICAL]}." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Never used on the GDAC. Preset pressure where continuous profiling begins on ascent. This varies depending on the phase. Template_Values:{unit:[bar, dbar, cbar, mbar, inHg]}." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R18::CC00157", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureStartContinuousProfiling_dbar" + }, + "owl:versionInfo": "4", + "dc:date": "2026-03-09 09:11:25.0", + "skos:altLabel": "Core Config 157", + "skos:notation": "SDN:R18::CC00157", + "pav:version": "4", + "dce:identifier": "SDN:R18::CC00157", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/4/" + }, + "pav:authoredOn": "2026-03-09 09:11:25.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00224/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00243/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00223/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00226/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00222/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00225/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float configuration settings selected by the float Principal Investigator (PI). Configuration parameters selected for a float are stored in the float 'meta.nc' file, under CONFIG_PARAMETER_NAME and LAUNCH_CONFIG_PARAMETER_NAME, which are populated by R18 prefLabel. Detailed information (incl. Template_Values explanation) is in the user manual (https://dx.doi.org/10.13155/29825), in the Reference Table 18 section.", + "dc:title": "Argo configuration parameter names", + "skos:prefLabel": "Argo configuration parameter names", + "owl:versionInfo": "11", + "dc:date": "2026-03-14 02:00:01.0", + "skos:altLabel": "CONFIG_PARAMETER_NAME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "CONFIG_PARAMETER_NAME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R19.jsonld b/file_checker_spec/NVS/R19.jsonld new file mode 100644 index 0000000..c370081 --- /dev/null +++ b/file_checker_spec/NVS/R19.jsonld @@ -0,0 +1,252 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/4/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/4/1/" + }, + "dce:identifier": "SDN:R19::4", + "pav:version": "1", + "skos:notation": "SDN:R19::4", + "skos:altLabel": "4", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value determined by satellite" + }, + "dc:identifier": "SDN:R19::4", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is determined by satellite" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/3/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/3/1/" + }, + "dce:identifier": "SDN:R19::3", + "pav:version": "1", + "skos:notation": "SDN:R19::3", + "skos:altLabel": "3", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value computed directly from transmitted float information" + }, + "dc:identifier": "SDN:R19::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is directly computed from relevant, transmitted float information" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/0/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/0/1/" + }, + "dce:identifier": "SDN:R19::0", + "pav:version": "1", + "skos:notation": "SDN:R19::0", + "skos:altLabel": "0", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated value from pre-deployment metadata information" + }, + "dc:identifier": "SDN:R19::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is estimated from pre-deployment information found in the metadata" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/1/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/1/1/" + }, + "dce:identifier": "SDN:R19::1", + "pav:version": "1", + "skos:notation": "SDN:R19::1", + "skos:altLabel": "1", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated value from information not transmitted by the float and/or reliant on typical float behaviour" + }, + "dc:identifier": "SDN:R19::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is estimated using information not transmitted by the float or by procedures that rely on typical float behaviour" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/9/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/9/1/" + }, + "dce:identifier": "SDN:R19::9", + "pav:version": "1", + "skos:notation": "SDN:R19::9", + "skos:altLabel": "9", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value not yet known" + }, + "dc:identifier": "SDN:R19::9", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is not immediately known, but believe it can be estimated later" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/2/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/2/1/" + }, + "dce:identifier": "SDN:R19::2", + "pav:version": "1", + "skos:notation": "SDN:R19::2", + "skos:altLabel": "2", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value transmitted by the float" + }, + "dc:identifier": "SDN:R19::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is transmitted by the float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/9/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Flag scale for values in all Argo netCDF cycle timing variables. Argo netCDF cycle timing variables JULD__STATUS are populated by R19 altLabel.", + "dc:title": "Argo STATUS flags", + "skos:prefLabel": "Argo STATUS flags", + "owl:versionInfo": "1", + "dc:date": "2020-05-04 03:00:04.0", + "skos:altLabel": "STATUS", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "STATUS", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R20.jsonld b/file_checker_spec/NVS/R20.jsonld new file mode 100644 index 0000000..d4c135e --- /dev/null +++ b/file_checker_spec/NVS/R20.jsonld @@ -0,0 +1,308 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/1/" + }, + "pav:authoredOn": "2021-02-08 16:23:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/2/" + }, + "dce:identifier": "SDN:R20::S", + "pav:version": "2", + "skos:notation": "SDN:R20::S", + "skos:altLabel": "S", + "dc:date": "2021-02-08 16:23:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Drifting at shallower depth than programmed" + }, + "dc:identifier": "SDN:R20::S", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float is known to be drifting at a shallower depth than originally programmed" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/1/" + }, + "pav:authoredOn": "2021-02-08 16:22:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/2/" + }, + "dce:identifier": "SDN:R20::N", + "pav:version": "2", + "skos:notation": "SDN:R20::N", + "skos:altLabel": "N", + "dc:date": "2021-02-08 16:22:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Not grounded" + }, + "dc:identifier": "SDN:R20::N", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No, the float did not touch the ground" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground as determined by an external bathymetry database and the programmed free-drift period was affected. If it is uncertain what mission phase the grounding took place, use 'B'." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R20::B", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded (external bathymetry database check), and free-drift period affected" + }, + "owl:versionInfo": "3", + "dc:date": "2021-02-08 16:18:37.0", + "skos:altLabel": "B", + "skos:notation": "SDN:R20::B", + "pav:version": "3", + "dce:identifier": "SDN:R20::B", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/3/" + }, + "pav:authoredOn": "2021-02-08 16:18:37.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/U/", + "pav:authoredOn": "2020-05-03 20:29:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/U/1/" + }, + "dce:identifier": "SDN:R20::U", + "pav:version": "1", + "skos:notation": "SDN:R20::U", + "skos:altLabel": "U", + "dc:date": "2020-05-03 20:29:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown" + }, + "dc:identifier": "SDN:R20::U", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/P/", + "pav:authoredOn": "2021-02-08 16:07:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/P/1/" + }, + "dce:identifier": "SDN:R20::P", + "pav:version": "1", + "skos:notation": "SDN:R20::P", + "skos:altLabel": "P", + "dc:date": "2021-02-08 16:07:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded, but free-drift period not affected" + }, + "dc:identifier": "SDN:R20::P", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground during a part of the mission that did not affect the free-drift period." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/C/", + "pav:authoredOn": "2021-02-08 16:07:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/C/1/" + }, + "dce:identifier": "SDN:R20::C", + "pav:version": "1", + "skos:notation": "SDN:R20::C", + "skos:altLabel": "C", + "dc:date": "2021-02-08 16:07:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded (external bathymetry database check), but free-drift period not affected" + }, + "dc:identifier": "SDN:R20::C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground as determined by an external bathymetry database during a part of the mission that did not affect the free-drift period." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground and the programmed free-drift period was affected. If it is uncertain what mission phase the grounding took place, use 'Y'." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R20::Y", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded, and free-drift period affected" + }, + "owl:versionInfo": "3", + "dc:date": "2021-02-08 16:25:46.0", + "skos:altLabel": "Y", + "skos:notation": "SDN:R20::Y", + "pav:version": "3", + "dce:identifier": "SDN:R20::Y", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/3/" + }, + "pav:authoredOn": "2021-02-08 16:25:46.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/U/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/P/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/C/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Codes to indicate the best estimate of whether the float touched the ground during a specific cycle. Argo netCDF variable GROUNDED in the Trajectory file is populated by R20 altLabel.", + "dc:title": "Argo GROUNDED flags", + "skos:prefLabel": "Argo GROUNDED flags", + "owl:versionInfo": "2", + "dc:date": "2021-02-09 02:00:03.0", + "skos:altLabel": "GROUNDED", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "GROUNDED", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R22.jsonld b/file_checker_spec/NVS/R22.jsonld new file mode 100644 index 0000000..545449a --- /dev/null +++ b/file_checker_spec/NVS/R22.jsonld @@ -0,0 +1,218 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_COASTAL/", + "pav:authoredOn": "2020-05-03 20:29:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_COASTAL/1/" + }, + "dce:identifier": "SDN:R22::FLOAT_COASTAL", + "pav:version": "1", + "skos:notation": "SDN:R22::FLOAT_COASTAL", + "skos:altLabel": "FLOAT_COASTAL", + "dc:date": "2020-05-03 20:29:53.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Coastal float" + }, + "dc:identifier": "SDN:R22::FLOAT_COASTAL", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Coastal float, i.e. ARVOR_C" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/POLAR_OCEAN_PROFILING_SYSTEM/", + "pav:authoredOn": "2020-05-03 20:29:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/POLAR_OCEAN_PROFILING_SYSTEM/1/" + }, + "dce:identifier": "SDN:R22::POLAR_OCEAN_PROFILING_SYSTEM", + "pav:version": "1", + "skos:notation": "SDN:R22::POLAR_OCEAN_PROFILING_SYSTEM", + "skos:altLabel": "POLAR_OCEAN_PROFILING_SYSTEM", + "dc:date": "2020-05-03 20:29:53.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ice platform providing meteorological data paired with tethered subsurface platform using buoyancy to go up and down" + }, + "dc:identifier": "SDN:R22::POLAR_OCEAN_PROFILING_SYSTEM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice platform that provides meteorological data is paired with a subsurface platform, either a PROVOR or NEMO float tethered along a cable that uses buoyancy to go up and down." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/ICE_TETHERED_PROFILER/", + "pav:authoredOn": "2020-05-03 20:29:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/ICE_TETHERED_PROFILER/1/" + }, + "dce:identifier": "SDN:R22::ICE_TETHERED_PROFILER", + "pav:version": "1", + "skos:notation": "SDN:R22::ICE_TETHERED_PROFILER", + "skos:altLabel": "ICE_TETHERED_PROFILER", + "dc:date": "2020-05-03 20:29:53.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ice platform providing meteorological data paired with tethered subsurface profiler using motor to go up and down" + }, + "dc:identifier": "SDN:R22::ICE_TETHERED_PROFILER", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface ice-mounted platform that provides meteorological data and subsurface profiler tethered to a cable that uses a motor to go up and down." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT/", + "pav:authoredOn": "2020-05-03 20:29:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT/1/" + }, + "dce:identifier": "SDN:R22::FLOAT", + "pav:version": "1", + "skos:notation": "SDN:R22::FLOAT", + "skos:altLabel": "FLOAT", + "dc:date": "2020-05-03 20:29:53.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Profiling float" + }, + "dc:identifier": "SDN:R22::FLOAT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_DEEP/", + "pav:authoredOn": "2020-05-03 20:29:53.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_DEEP/1/" + }, + "dce:identifier": "SDN:R22::FLOAT_DEEP", + "pav:version": "1", + "skos:notation": "SDN:R22::FLOAT_DEEP", + "skos:altLabel": "FLOAT_DEEP", + "dc:date": "2020-05-03 20:29:53.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Profiling deep float" + }, + "dc:identifier": "SDN:R22::FLOAT_DEEP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiling float that is capable of profiling deeper than 2000dbar" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_COASTAL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/POLAR_OCEAN_PROFILING_SYSTEM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/ICE_TETHERED_PROFILER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT_DEEP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R22/current/FLOAT/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of platform family/category of Argo floats. Argo netCDF variable PLATFORM_FAMILY is populated by R22 altLabel.", + "dc:title": "Argo platform family", + "skos:prefLabel": "Argo platform family", + "owl:versionInfo": "1", + "dc:date": "2020-05-04 03:00:04.0", + "skos:altLabel": "PLATFORM_FAMILY", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PLATFORM_FAMILY", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R23.jsonld b/file_checker_spec/NVS/R23.jsonld new file mode 100644 index 0000000..9ae248b --- /dev/null +++ b/file_checker_spec/NVS/R23.jsonld @@ -0,0 +1,1851 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/1/" + }, + "dce:identifier": "SDN:R23::ALAMO", + "pav:version": "1", + "skos:notation": "SDN:R23::ALAMO", + "skos:altLabel": "ALAMO", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ALAMO float" + }, + "dc:identifier": "SDN:R23::ALAMO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ALAMO air-launched micro-observer float. PLATFORM_TYPE_KEY = 800" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/1/" + }, + "dce:identifier": "SDN:R23::ITP", + "pav:version": "1", + "skos:notation": "SDN:R23::ITP", + "skos:altLabel": "ITP", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ITP float" + }, + "dc:identifier": "SDN:R23::ITP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice Tethered Profiler (ITP). PLATFORM_TYPE_KEY = 901" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/1/" + }, + "dce:identifier": "SDN:R23::POPS_NEMO", + "pav:version": "1", + "skos:notation": "SDN:R23::POPS_NEMO", + "skos:altLabel": "POPS_NEMO", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "POPS with NEMO float" + }, + "dc:identifier": "SDN:R23::POPS_NEMO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Polar Ocean Profiling System with a NEMO float. PLATFORM_TYPE_KEY = 430" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III_JUMBO/", + "pav:authoredOn": "2024-09-11 11:40:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III_JUMBO/1/" + }, + "dce:identifier": "SDN:R23::PROVOR_III_JUMBO", + "pav:version": "1", + "skos:notation": "SDN:R23::PROVOR_III_JUMBO", + "skos:altLabel": "", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_III_JUMBO float" + }, + "dc:identifier": "SDN:R23::PROVOR_III_JUMBO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR float with additional battery pack. PLATFORM_ TYPE_ KEY = 108." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/FLOAT/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/FLOAT/1/" + }, + "dce:identifier": "SDN:R23::FLOAT", + "pav:version": "1", + "skos:notation": "SDN:R23::FLOAT", + "skos:altLabel": "FLOAT", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown platform type" + }, + "dc:identifier": "SDN:R23::FLOAT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Generic value when platform type unknown. PLATFORM_TYPE_KEY = 999" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/" + }, + "skos:definition": { + "@language": "en", + "@value": "HM2000 float. PLATFORM_TYPE_KEY = 700" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::HM2000", + "skos:prefLabel": { + "@language": "en", + "@value": "HM2000 float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/870/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "HM2000", + "skos:notation": "SDN:R23::HM2000", + "pav:version": "1", + "dce:identifier": "SDN:R23::HM2000", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + }, + "skos:definition": { + "@language": "en", + "@value": "PALACE float. PLATFORM_TYPE_KEY = 000" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PALACE", + "skos:prefLabel": { + "@language": "en", + "@value": "PALACE float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PALACE", + "skos:notation": "SDN:R23::PALACE", + "pav:version": "1", + "dce:identifier": "SDN:R23::PALACE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/", + "pav:authoredOn": "2022-06-16 11:36:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "HM4000 float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::HM4000", + "skos:prefLabel": { + "@language": "en", + "@value": "HM4000 float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/" + }, + "dc:date": "2022-06-16 11:36:09.0", + "skos:altLabel": "HM4000", + "skos:notation": "SDN:R23::HM4000", + "pav:version": "1", + "dce:identifier": "SDN:R23::HM4000" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "APEX electro-magnetic float, measuring velocity and mixing. PLATFORM_TYPE_KEY = 005" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::APEX_EM", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX electro-magnetic float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "APEX_EM", + "skos:notation": "SDN:R23::APEX_EM", + "pav:version": "1", + "dce:identifier": "SDN:R23::APEX_EM" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + "skos:definition": { + "@language": "en", + "@value": "Polar Ocean Profiling System with a PROVOR float. PLATFORM_TYPE_KEY = 130" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::POPS_PROVOR", + "skos:prefLabel": { + "@language": "en", + "@value": "Polar Ocean Profiling System with a PROVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "POPS_PROVOR", + "skos:notation": "SDN:R23::POPS_PROVOR", + "pav:version": "1", + "dce:identifier": "SDN:R23::POPS_PROVOR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/" + }, + "skos:definition": { + "@language": "en", + "@value": "NAVIS_A float. PLATFORM_TYPE_KEY = 500" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NAVIS_A", + "skos:prefLabel": { + "@language": "en", + "@value": "NAVIS_A float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NAVIS_A", + "skos:notation": "SDN:R23::NAVIS_A", + "pav:version": "1", + "dce:identifier": "SDN:R23::NAVIS_A", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/1/" + }, + "dce:identifier": "SDN:R23::ALTO", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "ALTO float. PLATFORM_TYPE_KEY = 205" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ALTO", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/873/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ALTO", + "skos:notation": "SDN:R23::ALTO", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO-II float manufactured by Scripps Institution of Oceanography (SIO). PLATFORM_TYPE_KEY = 202" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_II", + "skos:prefLabel": { + "@language": "en", + "@value": "SIO SOLO-II float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_II", + "skos:notation": "SDN:R23::SOLO_II", + "pav:version": "1", + "dce:identifier": "SDN:R23::SOLO_II" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep NINJA float. PLATFORM_TYPE_KEY = 320" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NINJA_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep NINJA float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NINJA_D", + "skos:notation": "SDN:R23::NINJA_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::NINJA_D", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/" + }, + "skos:definition": { + "@language": "en", + "@value": "NAVIS_EBR float. PLATFORM_TYPE_KEY = 501" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NAVIS_EBR", + "skos:prefLabel": { + "@language": "en", + "@value": "NAVIS_EBR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/869/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NAVIS_EBR", + "skos:notation": "SDN:R23::NAVIS_EBR", + "pav:version": "1", + "dce:identifier": "SDN:R23::NAVIS_EBR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "DEEPSOLO MRV float. PLATFORM_TYPE_KEY = 221" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_D_MRV", + "skos:prefLabel": { + "@language": "en", + "@value": "DEEPSOLO MRV float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/874/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_D_MRV", + "skos:notation": "SDN:R23::SOLO_D_MRV", + "pav:version": "1", + "dce:identifier": "SDN:R23::SOLO_D_MRV", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NOTC/" + }, + "skos:definition": { + "@language": "en", + "@value": "COPEX float. PLATFORM_TYPE_KEY = 701" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::COPEX", + "skos:prefLabel": { + "@language": "en", + "@value": "COPEX float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/871/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "COPEX", + "skos:notation": "SDN:R23::COPEX", + "pav:version": "1", + "dce:identifier": "SDN:R23::COPEX", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/", + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/1/" + }, + "dce:identifier": "SDN:R23::SOLO_BGC", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC float manufactured by Scripps Institution of Oceanography (SIO). PLATFORM_TYPE_KEY = 206" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_BGC", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/" + } + ], + "dc:date": "2024-04-18 10:15:35.0", + "skos:altLabel": "SOLO_BGC", + "skos:notation": "SDN:R23::SOLO_BGC" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC_MRV float manufactured by MRV. PLATFORM_TYPE_KEY = 207." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_BGC_MRV", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC_MRV float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/" + } + ], + "dc:date": "2024-04-25 11:42:03.0", + "skos:altLabel": "SOLO_BGC_MRV", + "skos:notation": "SDN:R23::SOLO_BGC_MRV", + "pav:version": "1", + "dce:identifier": "SDN:R23::SOLO_BGC_MRV" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep SOLO float. PLATFORM_TYPE_KEY = 220" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep SOLO float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_D", + "skos:notation": "SDN:R23::SOLO_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::SOLO_D", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/1/" + }, + "dce:identifier": "SDN:R23::PROVOR_MT", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/" + }, + "skos:definition": { + "@language": "en", + "@value": "Metocean PROVOR float. PLATFORM_TYPE_KEY = 100" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_MT", + "skos:prefLabel": { + "@language": "en", + "@value": "Metocean PROVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PROVOR_MT", + "skos:notation": "SDN:R23::PROVOR_MT", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "S2-A float. PLATFORM_TYPE_KEY = 204" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::S2A", + "skos:prefLabel": { + "@language": "en", + "@value": "S2-A float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "S2A", + "skos:notation": "SDN:R23::S2A", + "pav:version": "1", + "dce:identifier": "SDN:R23::S2A" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/" + }, + "skos:definition": { + "@language": "en", + "@value": "NOVA float. PLATFORM_TYPE_KEY = 600" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NOVA", + "skos:prefLabel": { + "@language": "en", + "@value": "NOVA float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NOVA", + "skos:notation": "SDN:R23::NOVA", + "pav:version": "1", + "dce:identifier": "SDN:R23::NOVA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "S2X float designed for the US Navy. PLATFORM_TYPE_KEY = 203" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::S2X", + "skos:prefLabel": { + "@language": "en", + "@value": "S2X float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "S2X", + "skos:notation": "SDN:R23::S2X", + "pav:version": "1", + "dce:identifier": "SDN:R23::S2X", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/1/" + }, + "dce:identifier": "SDN:R23::APEX", + "pav:version": "1", + "skos:notation": "SDN:R23::APEX", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "APEX float. PLATFORM_TYPE_KEY = 001" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::APEX", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "APEX" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/1/" + }, + "dce:identifier": "SDN:R23::SOLO_W", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO float manufactured by Woods Whole Oceanographic Institution (WHOI). PLATFORM_TYPE_KEY = 201" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_W", + "skos:prefLabel": { + "@language": "en", + "@value": "WHOI SOLO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_W", + "skos:notation": "SDN:R23::SOLO_W", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/1/" + }, + "dce:identifier": "SDN:R23::SOLO", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO float manufactured by Scripps Institution of Oceanography (SIO). PLATFORM_TYPE_KEY = 200" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO", + "skos:prefLabel": { + "@language": "en", + "@value": "SIO SOLO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO", + "skos:notation": "SDN:R23::SOLO", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/1/" + }, + "pav:authoredOn": "2024-10-24 14:51:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/2/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Xuanwu Deep float, also known as HM6000 float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::XUANWU", + "skos:prefLabel": { + "@language": "en", + "@value": "Xuanwu Deep float" + }, + "owl:versionInfo": "2", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/" + }, + "dc:date": "2024-10-24 14:51:27.0", + "skos:altLabel": "XUANWU", + "skos:notation": "SDN:R23::XUANWU", + "pav:version": "2", + "dce:identifier": "SDN:R23::XUANWU" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/1/" + }, + "dce:identifier": "SDN:R23::NEMO", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO float. PLATFORM_TYPE_KEY = 400" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NEMO", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NEMO", + "skos:notation": "SDN:R23::NEMO", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep APEX float. PLATFORM_TYPE_KEY = 020" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::APEX_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep APEX float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "APEX_D", + "skos:notation": "SDN:R23::APEX_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::APEX_D", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/1/" + }, + "dce:identifier": "SDN:R23::NINJA", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA float. PLATFORM_TYPE_KEY = 300" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NINJA", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NINJA", + "skos:notation": "SDN:R23::NINJA" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/1/" + }, + "dce:identifier": "SDN:R23::PROVOR_II", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Dual board PROVOR float. PLATFORM_TYPE_KEY = 103" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_II", + "skos:prefLabel": { + "@language": "en", + "@value": "Dual board PROVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PROVOR_II", + "skos:notation": "SDN:R23::PROVOR_II", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/1/" + }, + "dce:identifier": "SDN:R23::ARVOR_C", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Coastal ARVOR float. PLATFORM_TYPE_KEY = 110" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ARVOR_C", + "skos:prefLabel": { + "@language": "en", + "@value": "Coastal ARVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ARVOR_C", + "skos:notation": "SDN:R23::ARVOR_C", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Deep ARVOR float. PLATFORM_TYPE_KEY = 120" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ARVOR_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep ARVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ARVOR_D", + "skos:notation": "SDN:R23::ARVOR_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::ARVOR_D" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/1/" + }, + "dce:identifier": "SDN:R23::PROVOR_III", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Dual board PROVOR CTS4 float. PLATFORM_TYPE_KEY = 104" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_III", + "skos:prefLabel": { + "@language": "en", + "@value": "Dual board PROVOR CTS4 float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PROVOR_III", + "skos:notation": "SDN:R23::PROVOR_III", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/1/" + }, + "dce:identifier": "SDN:R23::ARVOR", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "ARVOR float. PLATFORM_TYPE_KEY = 102" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ARVOR", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ARVOR", + "skos:notation": "SDN:R23::ARVOR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/1/" + }, + "dce:identifier": "SDN:R23::PROVOR", + "pav:version": "1", + "skos:notation": "SDN:R23::PROVOR", + "skos:altLabel": "PROVOR", + "dc:date": "2020-05-03 20:30:02.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/" + } + ], + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "PROVOR float. PLATFORM_TYPE_KEY = 101" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float" + }, + "owl:versionInfo": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/2/" + } + ], + "pav:authoredOn": "2023-06-22 12:04:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/3/" + }, + "dce:identifier": "SDN:R23::PROVOR_IV", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS5-Payload float. PLATFORM_TYPE_KEY = 105" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_IV", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR CTS5-Payload float" + }, + "owl:versionInfo": "3", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/" + }, + "dc:date": "2023-06-22 12:04:12.0", + "skos:altLabel": "PROVOR_IV", + "skos:notation": "SDN:R23::PROVOR_IV", + "pav:version": "3" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/1/" + }, + "pav:authoredOn": "2023-10-05 14:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/2/" + }, + "dce:identifier": "SDN:R23::PROVOR_V_JUMBO", + "pav:version": "2", + "skos:notation": "SDN:R23::PROVOR_V_JUMBO", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS5-USEA float with additional battery pack, USEA is the controller board type. PLATFORM_ TYPE_ KEY = 107" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_V_JUMBO", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V_JUMBO float" + }, + "owl:versionInfo": "2", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/" + } + ], + "dc:date": "2023-10-05 14:41:04.0", + "skos:altLabel": "PROVOR_V_JUMBO" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/1/" + }, + "pav:authoredOn": "2023-10-05 14:41:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/2/" + }, + "dce:identifier": "SDN:R23::PROVOR_V", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS5-USEA float, USEA is the controller board type. PLATFORM_ TYPE_ KEY = 106" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_V", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V float" + }, + "owl:versionInfo": "2", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/" + }, + "dc:date": "2023-10-05 14:41:04.0", + "skos:altLabel": "PROVOR_V", + "skos:notation": "SDN:R23::PROVOR_V", + "pav:version": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III_JUMBO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/FLOAT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Argo float types. Argo netCDF variable PLATFORM_TYPE is populated by R23 altLabel.", + "dc:title": "Argo platform type", + "skos:prefLabel": "Argo platform type", + "owl:versionInfo": "9", + "dc:date": "2024-10-25 03:00:00.0", + "skos:altLabel": "PLATFORM_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PLATFORM_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R24.jsonld b/file_checker_spec/NVS/R24.jsonld new file mode 100644 index 0000000..8a2e0e5 --- /dev/null +++ b/file_checker_spec/NVS/R24.jsonld @@ -0,0 +1,764 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/UNKNOWN/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/UNKNOWN/1/" + }, + "dce:identifier": "SDN:R24::UNKNOWN", + "pav:version": "1", + "skos:notation": "SDN:R24::UNKNOWN", + "skos:altLabel": "UNKNOWN", + "dc:date": "2020-05-03 20:30:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown platform maker" + }, + "dc:identifier": "SDN:R24::UNKNOWN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown platform maker. The platform maker should not be unknown, the use of this value should be exceptional" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Tsurumi-Seiki Co., Ltd." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::TSK", + "skos:prefLabel": { + "@language": "en", + "@value": "Tsurumi-Seiki Co., Ltd." + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "TSK", + "skos:notation": "SDN:R24::TSK", + "pav:version": "1", + "dce:identifier": "SDN:R24::TSK", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Woods Hole Oceanographic Institution" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::WHOI", + "skos:prefLabel": { + "@language": "en", + "@value": "Woods Hole Oceanographic Institution" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "WHOI", + "skos:notation": "SDN:R24::WHOI", + "pav:version": "1", + "dce:identifier": "SDN:R24::WHOI", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NOTC/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NOTC/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/" + }, + "skos:definition": { + "@language": "en", + "@value": "National Ocean Technology Center, China." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::NOTC", + "skos:prefLabel": { + "@language": "en", + "@value": "National Ocean Technology Center" + }, + "owl:versionInfo": "2", + "dc:date": "2025-11-25 10:14:01.0", + "skos:altLabel": "NOTC", + "skos:notation": "SDN:R24::NOTC", + "pav:version": "2", + "dce:identifier": "SDN:R24::NOTC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NOTC/2/" + }, + "pav:authoredOn": "2025-11-25 10:14:01.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Optimare" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::OPTIMARE", + "skos:prefLabel": { + "@language": "en", + "@value": "Optimare" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "OPTIMARE", + "skos:notation": "SDN:R24::OPTIMARE", + "pav:version": "1", + "dce:identifier": "SDN:R24::OPTIMARE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Webb Research Corporation" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::WRC", + "skos:prefLabel": { + "@language": "en", + "@value": "Webb Research Corporation" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "WRC", + "skos:notation": "SDN:R24::WRC", + "pav:version": "1", + "dce:identifier": "SDN:R24::WRC" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research (formerly Webb Research Corporation)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::TWR", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "TWR", + "skos:notation": "SDN:R24::TWR", + "pav:version": "1", + "dce:identifier": "SDN:R24::TWR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Martec" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::MARTEC", + "skos:prefLabel": { + "@language": "en", + "@value": "Martec" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "MARTEC", + "skos:notation": "SDN:R24::MARTEC", + "pav:version": "1", + "dce:identifier": "SDN:R24::MARTEC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/2/" + } + ], + "pav:authoredOn": "2024-10-24 14:51:27.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Laoshan Laboratory (was named QNLM before May 2023)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::LaoshanL", + "skos:prefLabel": { + "@language": "en", + "@value": "LaoshanLaboratory" + }, + "owl:versionInfo": "3", + "dc:date": "2024-10-24 14:51:27.0", + "skos:altLabel": "LaoshanLaboratory", + "skos:notation": "SDN:R24::LaoshanL", + "pav:version": "3", + "dce:identifier": "SDN:R24::LaoshanL", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/1/" + }, + "pav:authoredOn": "2024-10-24 14:51:27.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Qingdao National Laboratory for Marine Science and Technology, renamed LaoshanLaboratory since May 2023" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::QNLM", + "skos:prefLabel": { + "@language": "en", + "@value": "Qingdao National Laboratory for Marine Science and Technology" + }, + "owl:versionInfo": "2", + "dc:date": "2024-10-24 14:51:27.0", + "skos:altLabel": "QNLM", + "skos:notation": "SDN:R24::QNLM", + "pav:version": "2", + "dce:identifier": "SDN:R24::QNLM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Metocean" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::METOCEAN", + "skos:prefLabel": { + "@language": "en", + "@value": "Metocean" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "METOCEAN", + "skos:notation": "SDN:R24::METOCEAN", + "pav:version": "1", + "dce:identifier": "SDN:R24::METOCEAN", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/1/" + }, + "dce:identifier": "SDN:R24::SIO_IDG", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Scripps Institution of Oceanography - Instrument Development Group" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::SIO_IDG", + "skos:prefLabel": { + "@language": "en", + "@value": "Scripps Institution of Oceanography - Instrument Development Group" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "SIO_IDG", + "skos:notation": "SDN:R24::SIO_IDG", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/1/" + }, + "dce:identifier": "SDN:R24::NKE", + "pav:version": "1", + "skos:notation": "SDN:R24::NKE", + "skos:altLabel": "NKE", + "dc:date": "2020-05-03 20:30:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NKE Instrumentation" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "NKE Instrumentation" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::NKE" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/1/" + }, + "dce:identifier": "SDN:R24::HSOE", + "pav:version": "1", + "skos:notation": "SDN:R24::HSOE", + "skos:altLabel": "HSOE", + "dc:date": "2020-05-03 20:30:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Qingdao Hisun Ocean Equipment Corporation Limited" + }, + "dc:identifier": "SDN:R24::HSOE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Qingdao Hisun Ocean Equipment Corporation Limited" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Sea-Bird Scientific" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::SBE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "SBE", + "skos:notation": "SDN:R24::SBE", + "pav:version": "1", + "dce:identifier": "SDN:R24::SBE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/1/" + }, + "dce:identifier": "SDN:R24::MRV", + "pav:version": "1", + "skos:notation": "SDN:R24::MRV", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "MRV Systems" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::MRV", + "skos:prefLabel": { + "@language": "en", + "@value": "MRV Systems" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "MRV" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/UNKNOWN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NOTC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Argo float manufacturers. Argo netCDF variable PLATFORM_MAKER is populated by R24 altLabel.", + "dc:title": "Argo platform maker", + "skos:prefLabel": "Argo platform maker", + "owl:versionInfo": "7", + "dc:date": "2025-11-26 02:00:00.0", + "skos:altLabel": "PLATFORM_MAKER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PLATFORM_MAKER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R25.jsonld b/file_checker_spec/NVS/R25.jsonld new file mode 100644 index 0000000..1ee94ff --- /dev/null +++ b/file_checker_spec/NVS/R25.jsonld @@ -0,0 +1,2123 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR/", + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR", + "skos:altLabel": "RADIOMETER_DOWN_IRR", + "dc:date": "2025-08-28 11:45:52.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance (hypersprectral radiometer)." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/", + "pav:authoredOn": "2023-11-24 09:35:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/1/" + }, + "dce:identifier": "SDN:R25::CTD_TEMP_CNDC", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_TEMP_CNDC", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Specific temperature sensor used with conductivity to calculate salinity on a CTD" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::CTD_TEMP_CNDC", + "skos:prefLabel": { + "@language": "en", + "@value": "Temperature sensor for conductivity on a CTD" + }, + "owl:versionInfo": "1", + "dc:date": "2023-11-24 09:35:13.0", + "skos:altLabel": "" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/1/" + }, + "dce:identifier": "SDN:R25::FLUOROMETER_CHLA", + "pav:version": "1", + "skos:notation": "SDN:R25::FLUOROMETER_CHLA", + "skos:altLabel": "FLUOROMETER_CHLA", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fluorometer measuring chlorophyll-a" + }, + "dc:identifier": "SDN:R25::FLUOROMETER_CHLA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Fluorometer measuring chlorophyll-a concentration" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/1/" + }, + "dce:identifier": "SDN:R25::EM", + "pav:version": "1", + "skos:notation": "SDN:R25::EM", + "skos:altLabel": "EM", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Electromagnetic sensor" + }, + "dc:identifier": "SDN:R25::EM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Electromagnetic sensor package measuring velocity and turbulence" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 470 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP470", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 470 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "BACKSCATTERINGMETER_BBP470", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_BBP470", + "pav:version": "1", + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP470", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/1/" + }, + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP700", + "pav:version": "1", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_BBP700", + "skos:altLabel": "BACKSCATTERINGMETER_BBP700", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 700 nanometers" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP700", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 700 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Spectrophotometer measuring bisulfide concentration" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::SPECTROPHOTOMETER_BISULFIDE", + "skos:prefLabel": { + "@language": "en", + "@value": "Spectrophotometer measuring bisulfide" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "SPECTROPHOTOMETER_BISULFIDE", + "skos:notation": "SDN:R25::SPECTROPHOTOMETER_BISULFIDE", + "pav:version": "1", + "dce:identifier": "SDN:R25::SPECTROPHOTOMETER_BISULFIDE" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/1/" + }, + "dce:identifier": "SDN:R25::FLOATCLOCK_MTIME", + "pav:version": "1", + "skos:notation": "SDN:R25::FLOATCLOCK_MTIME", + "skos:altLabel": "FLOATCLOCK_MTIME", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Clock on float measuring time" + }, + "dc:identifier": "SDN:R25::FLOATCLOCK_MTIME", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Fractional day of the individual measurement relative to JULD of the station" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/1/" + }, + "dce:identifier": "SDN:R25::SPECTROPHOTOMETER_NITRATE", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Spectrophotometer measuring nitrate concentration" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::SPECTROPHOTOMETER_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Spectrophotometer measuring nitrate" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "SPECTROPHOTOMETER_NITRATE", + "skos:notation": "SDN:R25::SPECTROPHOTOMETER_NITRATE" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/1/" + }, + "dce:identifier": "SDN:R25::IDO_DOXY", + "pav:version": "1", + "skos:notation": "SDN:R25::IDO_DOXY", + "skos:altLabel": "IDO_DOXY", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A type of electrochemical dissolved oxygen sensor called Integrated Dissolved Oxygen (IDO)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::IDO_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Integrated Dissolved Oxygen (IDO) sensor measuring dissolved oxygen" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 490 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR490", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 490 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_DOWN_IRR490", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR490", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/1/" + }, + "dce:identifier": "SDN:R25::CTD_CNDC", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_CNDC", + "skos:altLabel": "CTD_CNDC", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring conductivity" + }, + "dc:identifier": "SDN:R25::CTD_CNDC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring conductivity" + }, + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + } + ], + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/1/" + }, + "dce:identifier": "SDN:R25::ACOUSTIC_GEOLOCATION", + "pav:version": "1", + "skos:notation": "SDN:R25::ACOUSTIC_GEOLOCATION", + "skos:altLabel": "ACOUSTIC_GEOLOCATION", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Acoustic sensor measuring geolocation" + }, + "dc:identifier": "SDN:R25::ACOUSTIC_GEOLOCATION", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Acoustic sensor for geolocation" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/1/" + }, + "dce:identifier": "SDN:R25::ACOUSTIC", + "pav:version": "1", + "skos:notation": "SDN:R25::ACOUSTIC", + "skos:altLabel": "ACOUSTIC", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Acoustic sensor" + }, + "dc:identifier": "SDN:R25::ACOUSTIC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Acoustic sensor" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/1/" + }, + "dce:identifier": "SDN:R25::STS_TEMP", + "pav:version": "1", + "skos:notation": "SDN:R25::STS_TEMP", + "skos:altLabel": "STS_TEMP", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring temperature" + }, + "dc:identifier": "SDN:R25::STS_TEMP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring temperature" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/1/" + }, + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_TURBIDITY", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring turbidity" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_TURBIDITY", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring turbidity" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "BACKSCATTERINGMETER_TURBIDITY", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_TURBIDITY", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 412 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD412", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 412 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_UP_RAD412", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD412", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Transistor measuring pH" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::TRANSISTOR_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Transistor measuring pH" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "TRANSISTOR_PH", + "skos:notation": "SDN:R25::TRANSISTOR_PH", + "pav:version": "1", + "dce:identifier": "SDN:R25::TRANSISTOR_PH" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Fluorometer measuring Colored Dissolved Organic Matter (CDOM)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::FLUOROMETER_CDOM", + "skos:prefLabel": { + "@language": "en", + "@value": "Fluorometer measuring Colored Dissolved Organic Matter (CDOM)" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "FLUOROMETER_CDOM", + "skos:notation": "SDN:R25::FLUOROMETER_CDOM", + "pav:version": "1", + "dce:identifier": "SDN:R25::FLUOROMETER_CDOM" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 443 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR443", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 443 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_DOWN_IRR443", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR443", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_PAR", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring Photosynthetically Active Radiation (PAR)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring Photosynthetically Active Radiation (PAR)" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:06:36.0", + "skos:altLabel": "RADIOMETER_PAR", + "skos:notation": "SDN:R25::RADIOMETER_PAR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/1/" + }, + "dce:identifier": "SDN:R25::CTD_TEMP", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_TEMP", + "skos:altLabel": "CTD_TEMP", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring temperature" + }, + "dc:identifier": "SDN:R25::CTD_TEMP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring temperature" + }, + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + } + ], + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 412 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR412", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 412 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_DOWN_IRR412", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR412", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 490 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD490", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 490 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_UP_RAD490", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD490", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/1/" + }, + "dce:identifier": "SDN:R25::STS_CNDC", + "pav:version": "1", + "skos:notation": "SDN:R25::STS_CNDC", + "skos:altLabel": "STS_CNDC", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring conductivity" + }, + "dc:identifier": "SDN:R25::STS_CNDC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring conductivity" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/1/" + }, + "dce:identifier": "SDN:R25::OPTODE_DOXY", + "pav:version": "1", + "skos:notation": "SDN:R25::OPTODE_DOXY", + "skos:altLabel": "OPTODE_DOXY", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Optode measuring dissolved oxygen" + }, + "dc:identifier": "SDN:R25::OPTODE_DOXY", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "An optical dissolved oxygen sensor, also known as optode" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 555 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR555", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 555 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_DOWN_IRR555", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR555", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/1/" + }, + "dce:identifier": "SDN:R25::CTD_PRES", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_PRES", + "skos:altLabel": "CTD_PRES", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring pressure" + }, + "dc:identifier": "SDN:R25::CTD_PRES", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring pressure" + }, + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + } + ], + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/1/" + }, + "dce:identifier": "SDN:R25::TRANSMISSOMETER_CP660", + "pav:version": "1", + "skos:notation": "SDN:R25::TRANSMISSOMETER_CP660", + "skos:altLabel": "TRANSMISSOMETER_CP660", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Transmissometer measuring attenuation at 660 nanometers" + }, + "dc:identifier": "SDN:R25::TRANSMISSOMETER_CP660", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmissometer measuring attenuation at 660 nm wavelength" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 532 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP532", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 532 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "BACKSCATTERINGMETER_BBP532", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_BBP532", + "pav:version": "1", + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP532" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 555 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD555", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 555 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_UP_RAD555", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD555", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 443 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD443", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 443 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_UP_RAD443", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD443", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 380 nm wavelength" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR380", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 380 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2021-02-09 15:34:44.0", + "skos:altLabel": "RADIOMETER_DOWN_IRR380", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR380", + "pav:version": "1", + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR380", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing sensor types mounted on Argo floats. Argo netCDF variable SENSOR is populated by R25 altLabel.", + "dc:title": "Argo sensor types", + "skos:prefLabel": "Argo sensor types", + "owl:versionInfo": "4", + "dc:date": "2025-08-29 03:00:01.0", + "skos:altLabel": "SENSOR", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "SENSOR", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R26.jsonld b/file_checker_spec/NVS/R26.jsonld new file mode 100644 index 0000000..0f5d539 --- /dev/null +++ b/file_checker_spec/NVS/R26.jsonld @@ -0,0 +1,1511 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/1/" + }, + "dce:identifier": "SDN:R26::SATLANTIC", + "pav:version": "1", + "skos:notation": "SDN:R26::SATLANTIC", + "skos:altLabel": "SATLANTIC", + "dc:date": "2019-10-11 15:08:43.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "An ocean technology company and brand of Sea-Bird Scientific that develops optical sensors for aquatic research and water quality monitoring. The company was initially founded in 1990. Danaher acquired three ocean science instrumentation companies, Sea-Bird Electronics (2008), WET Labs (2010), and Satlantic (2011), which were then combined to form Sea-Bird Scientific." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::SATLANTIC", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic Inc." + }, + "owl:versionInfo": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/NKE/", + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/NKE/1/" + }, + "dce:identifier": "SDN:R26::NKE", + "pav:version": "1", + "skos:notation": "SDN:R26::NKE", + "skos:altLabel": "NKE", + "dc:date": "2025-08-28 11:45:52.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NKE Instrumentation" + }, + "dc:identifier": "SDN:R26::NKE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NKE Instrumentation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MARTEC/", + "pav:authoredOn": "2025-08-28 11:45:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MARTEC/1/" + }, + "dce:identifier": "SDN:R26::MARTEC", + "pav:version": "1", + "skos:notation": "SDN:R26::MARTEC", + "skos:altLabel": "MARTEC", + "dc:date": "2025-08-28 11:45:51.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Martec" + }, + "dc:identifier": "SDN:R26::MARTEC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "MARTEC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/1/" + }, + "dce:identifier": "SDN:R26::AANDERAA", + "pav:version": "1", + "skos:notation": "SDN:R26::AANDERAA", + "skos:altLabel": "AANDERAA", + "dc:date": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A Xylem brand, headquartered in Bergen (Norway) that designs, manufactures and sells sensors, instruments and systems for measuring and monitoring in Environmental Research, Marine Transportation, Oil and Gas, Aquaculture, Road and Traffic and Construction." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::AANDERAA", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/1/" + }, + "dce:identifier": "SDN:R26::PAINE", + "pav:version": "1", + "skos:notation": "SDN:R26::PAINE", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: moreinfo@paineelectronics.com; Organisation website: http://www3.emersonprocess.com/rosemount/paineelectronics/default.aspx" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::PAINE", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine Electronics" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "PAINE" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WRC/", + "pav:authoredOn": "2025-08-29 10:15:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WRC/1/" + }, + "dce:identifier": "SDN:R26::WRC", + "pav:version": "1", + "skos:notation": "SDN:R26::WRC", + "skos:altLabel": "WRC", + "dc:date": "2025-08-29 10:15:12.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Webb Research Corporation" + }, + "dc:identifier": "SDN:R26::WRC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Webb Research Corporation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in Rastede, Germany, specialised in the production and supply of optical sensors including radiometers, photometers and fluorometers for marine research and industrial applications." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::TRIOS", + "skos:prefLabel": { + "@language": "en", + "@value": "TriOS Mess- und Datentechnik GmbH" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/" + } + ], + "dc:date": "2021-02-11 14:21:39.0", + "skos:altLabel": "TRIOS", + "skos:notation": "SDN:R26::TRIOS", + "pav:version": "1", + "dce:identifier": "SDN:R26::TRIOS", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: Unavailable; Organisation website: https://www.kistler.com/en/" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::KISTLER", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "KISTLER", + "skos:notation": "SDN:R26::KISTLER", + "pav:version": "1", + "dce:identifier": "SDN:R26::KISTLER" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/1/" + }, + "dce:identifier": "SDN:R26::KELLER", + "pav:version": "1", + "skos:notation": "SDN:R26::KELLER", + "skos:altLabel": "KELLER", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "KELLER AG für Druckmesstechnik" + }, + "dc:identifier": "SDN:R26::KELLER", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A multinational technology company based in Winterthur, Switzerland, specialised in the manufacture of pressure sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/", + "pav:authoredOn": "2021-09-14 12:16:36.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A ChampionX company specialised in resonating quartz pressure transducers and temperature gauges, located in Salt Lake City, Utah (United States of America)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::QUARTZDYNE", + "skos:prefLabel": { + "@language": "en", + "@value": "Quartzdyne" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/" + } + ], + "dc:date": "2021-09-14 12:16:36.0", + "skos:altLabel": "QUARTZDYNE", + "skos:notation": "SDN:R26::QUARTZDYNE", + "pav:version": "1", + "dce:identifier": "SDN:R26::QUARTZDYNE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/1/" + }, + "dce:identifier": "SDN:R26::TSK", + "pav:version": "1", + "skos:notation": "SDN:R26::TSK", + "skos:altLabel": "TSK", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tsurumi-Seiki Co., Ltd." + }, + "dc:identifier": "SDN:R26::TSK", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A Japanese manufacturer based in Yokohama (head office), specialised in the production of oceanographic observation equipment and water quality monitoring instruments." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/1/" + }, + "dce:identifier": "SDN:R26::WETLABS", + "pav:version": "1", + "skos:notation": "SDN:R26::WETLABS", + "skos:altLabel": "WETLABS", + "dc:date": "2019-10-11 15:08:43.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A brand of Sea-Bird Scientific, the business manufactures oceanographic and environmental fluorometers, transmissometers, scattering sensors and spectrophotometers. The company was initially founded in 1992. Danaher acquired three ocean science instrumentation companies, Sea-Bird Electronics (2008), WET Labs (2010), and Satlantic (2011), which were then combined to form Sea-Bird Scientific." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::WETLABS", + "skos:prefLabel": { + "@language": "en", + "@value": "Wetlabs Inc." + }, + "owl:versionInfo": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A Japanese company based in Nishinomiya that manufactures and sells measuring instruments, water level gauges, and other diagnostic equipment. It was established in 1973 and is a subsidiary of Kawasaki Steel, now known as JFE Steel." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::JAC", + "skos:prefLabel": { + "@language": "en", + "@value": "JFE Advantech Co., Ltd" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "JAC", + "skos:notation": "SDN:R26::JAC", + "pav:version": "1", + "dce:identifier": "SDN:R26::JAC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/1/" + }, + "dce:identifier": "SDN:R26::SEASCAN", + "pav:version": "1", + "skos:notation": "SDN:R26::SEASCAN", + "skos:altLabel": "SEASCAN", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Seascan, Inc." + }, + "dc:identifier": "SDN:R26::SEASCAN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A small manufacturing company located in Falmouth, Massachusetts (United States of America), specialising in oceanographic research equipment." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: usa.sales@druck.com; Organisation website: http://www.druckinc.com" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::DRUCK", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck Inc." + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "DRUCK", + "skos:notation": "SDN:R26::DRUCK", + "pav:version": "1", + "dce:identifier": "SDN:R26::DRUCK" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TWR/", + "pav:authoredOn": "2025-08-29 10:15:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TWR/1/" + }, + "dce:identifier": "SDN:R26::TWR", + "pav:version": "1", + "skos:notation": "SDN:R26::TWR", + "skos:altLabel": "TWR", + "dc:date": "2025-08-29 10:15:12.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research" + }, + "dc:identifier": "SDN:R26::TWR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research (formerly Webb Research Corporation)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/1/" + }, + "dce:identifier": "SDN:R26::FSI", + "pav:version": "1", + "skos:notation": "SDN:R26::FSI", + "skos:altLabel": "FSI", + "dc:date": "2019-10-11 15:08:43.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Falmouth Scientific Inc." + }, + "dc:identifier": "SDN:R26::FSI", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: sales@falmouth.com; Organisation website: http://www.falmouth.com/index.html" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/1/" + }, + "dce:identifier": "SDN:R26::SEAPOINT", + "pav:version": "1", + "skos:notation": "SDN:R26::SEAPOINT", + "skos:altLabel": "SEAPOINT", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Seapoint Sensors, Inc." + }, + "dc:identifier": "SDN:R26::SEAPOINT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A worldwide supplier of underwater optical sensors located in Exeter, New Hampshire (United States of America)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/OPTIMARE/", + "pav:authoredOn": "2025-08-28 11:45:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/OPTIMARE/1/" + }, + "dce:identifier": "SDN:R26::OPTIMARE", + "pav:version": "1", + "skos:notation": "SDN:R26::OPTIMARE", + "skos:altLabel": "OPTIMARE", + "dc:date": "2025-08-28 11:45:51.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Optimare" + }, + "dc:identifier": "SDN:R26::OPTIMARE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Optimare." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/Unknown/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/Unknown/1/" + }, + "dce:identifier": "SDN:R26::Unknown", + "pav:version": "1", + "skos:notation": "SDN:R26::Unknown", + "skos:altLabel": "Unknown", + "dc:date": "2021-02-11 14:21:39.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown" + }, + "dc:identifier": "SDN:R26::Unknown", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown sensor maker; the use of this code should be exceptional, as the sensor maker should be known." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/1/" + }, + "dce:identifier": "SDN:R26::RBR", + "pav:version": "1", + "skos:notation": "SDN:R26::RBR", + "skos:altLabel": "RBR", + "dc:date": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A Canadian designer and manufacturer of oceanographic instruments, including sensors, loggers and compact systems." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::RBR", + "skos:prefLabel": { + "@language": "en", + "@value": "RBR Ltd" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: webadmin@apl.washington.edu; Organisation website: http://www.apl.washington.edu/" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::APL_UW", + "skos:prefLabel": { + "@language": "en", + "@value": "University of Washington, Applied Physics Laboratory" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/" + } + ], + "dc:date": "2021-02-11 14:21:39.0", + "skos:altLabel": "APL_UW", + "skos:notation": "SDN:R26::APL_UW", + "pav:version": "1", + "dce:identifier": "SDN:R26::APL_UW", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A non-profit oceanographic research centre located in Moss Landing, California (United States of America), with a technology unit dedicated to the development of oceanographic instruments and platforms." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::MBARI", + "skos:prefLabel": { + "@language": "en", + "@value": "Monterey Bay Aquarium Research Institute" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/" + } + ], + "dc:date": "2021-02-11 14:21:39.0", + "skos:altLabel": "MBARI", + "skos:notation": "SDN:R26::MBARI", + "pav:version": "1", + "dce:identifier": "SDN:R26::MBARI" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/", + "pav:authoredOn": "2021-09-14 12:16:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/1/" + }, + "dce:identifier": "SDN:R26::MENSOR", + "pav:version": "1", + "skos:notation": "SDN:R26::MENSOR", + "skos:altLabel": "MENSOR", + "dc:date": "2021-09-14 12:16:36.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mensor" + }, + "dc:identifier": "SDN:R26::MENSOR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in San Marcos, Texas (United States of America), specialised in precision pressure products." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in Simi Valley, California (United States of America), specialised in the production and supply of semiconductor strain gages, pressure transducers, temperature sensors and measuring systems (also operating as Piezo-metrics)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::MICRON", + "skos:prefLabel": { + "@language": "en", + "@value": "Micron Instruments" + }, + "owl:versionInfo": "2", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/" + }, + "dc:date": "2025-06-05 09:26:36.0", + "skos:altLabel": "MICRON", + "skos:notation": "SDN:R26::MICRON", + "pav:version": "2", + "dce:identifier": "SDN:R26::MICRON", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/2/" + }, + "pav:authoredOn": "2025-06-05 09:26:36.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: Unavailable; Organisation website: http://www.ametekpi.com" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::AMETEK", + "skos:prefLabel": { + "@language": "en", + "@value": "Ametek Process Instruments" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "AMETEK", + "skos:notation": "SDN:R26::AMETEK", + "pav:version": "1", + "dce:identifier": "SDN:R26::AMETEK", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/1/" + }, + "pav:authoredOn": "2021-06-02 23:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/2/" + }, + "dce:identifier": "SDN:R26::SBE", + "pav:version": "2", + "skos:notation": "SDN:R26::SBE", + "skos:altLabel": "SBE", + "dc:date": "2021-06-02 23:04:11.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A large, global company based in the United States of America that develops and manufactures products for the measurement of salinity, temperature, pressure, dissolved oxygen, fluorescence, nutrients and related oceanographic parameters in marine waters. It is formed from three ocean science companies, Sea-Bird Electronics, WET Labs and Satlantic that were combined in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::SBE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific" + }, + "owl:versionInfo": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/1/" + }, + "dce:identifier": "SDN:R26::TURNER_DESIGN", + "pav:version": "1", + "skos:notation": "SDN:R26::TURNER_DESIGN", + "skos:altLabel": "TURNER_DESIGN", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Turner Designs" + }, + "dc:identifier": "SDN:R26::TURNER_DESIGN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in San Jose, California (United States of America), specialised in the supply of fluorometers for environmental and industrial uses." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MARTEC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WRC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/OPTIMARE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/Unknown/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing developers and manufacturers of sensors mounted on Argo floats. Argo netCDF variable SENSOR_MAKER is populated by R26 altLabel.", + "dc:title": "Argo sensor manufacturers", + "skos:prefLabel": "Argo sensor manufacturers", + "owl:versionInfo": "7", + "dc:date": "2025-08-30 03:00:01.0", + "skos:altLabel": "SENSOR_MAKER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "SENSOR_MAKER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R27.jsonld b/file_checker_spec/NVS/R27.jsonld new file mode 100644 index 0000000..ee675fb --- /dev/null +++ b/file_checker_spec/NVS/R27.jsonld @@ -0,0 +1,6958 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/UNKNOWN/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/UNKNOWN/1/" + }, + "dce:identifier": "SDN:R27::UNKNOWN", + "pav:version": "1", + "skos:notation": "SDN:R27::UNKNOWN", + "skos:altLabel": "UNKNOWN", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown sensor model" + }, + "dc:identifier": "SDN:R27::UNKNOWN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sensor model is unknown." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/1/" + }, + "dce:identifier": "SDN:R27::RAFOS", + "pav:version": "1", + "skos:notation": "SDN:R27::RAFOS", + "skos:altLabel": "RAFOS", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ranging And Fixing Of Sound (RAFOS) receiver" + }, + "dc:identifier": "SDN:R27::RAFOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Receiver for geopositioning under ice, working in conjunction with fixed sound sources arrays located within range." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "An optical dissolved oxygen sensor, manufactured by Sea-Bird Scientific and designed to be integrated into a pumped CTD system." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE83_OPTODE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE83 oxygen optode" + }, + "owl:versionInfo": "2", + "dc:date": "2025-11-18 12:09:41.0", + "skos:altLabel": "SBE83_OPTODE", + "skos:notation": "SDN:R27::SBE83_OPTODE", + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE83_OPTODE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/2/" + }, + "pav:authoredOn": "2025-11-18 12:09:41.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/", + "pav:authoredOn": "2025-10-08 10:58:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/1/" + }, + "dce:identifier": "SDN:R27::RBR_CTD", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors, manufactured by RBR for moored applications. This cell was not optimized for use on profiling floats, and this was used in only one test deployment. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 12 Hz. The depth rating for a standard profile is 2000 dbar, with energy consumption of approximately 700 J." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_CTD", + "skos:prefLabel": { + "@language": "en", + "@value": "RBR CTD" + }, + "owl:versionInfo": "1", + "dc:date": "2025-10-08 10:58:28.0", + "skos:altLabel": "RBR_CTD", + "skos:notation": "SDN:R27::RBR_CTD", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/", + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/1/" + }, + "dce:identifier": "SDN:R27::OCR504_R10W", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Replaces deprecated term 'http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W'. A cosine-response, multispectral radiometer configured to measure upwelling radiance in water. Number of channels: 4; field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz - 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::OCR504_R10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-504 multispectral radiometer (upwelling radiance)" + }, + "owl:versionInfo": "1", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "OCR504_R10W", + "skos:notation": "SDN:R27::OCR504_R10W", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/", + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/1/" + }, + "dce:identifier": "SDN:R27::OCR504_ICSW", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Replaces deprecated term 'http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW'. A cosine-response, multispectral radiometer configured to measure downwelling irradiance in water. Number of channels: 4; bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz - 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::OCR504_ICSW", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-504 multispectral radiometer (downwelling irradiance)" + }, + "owl:versionInfo": "1", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "OCR504_ICSW", + "skos:notation": "SDN:R27::OCR504_ICSW" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/", + "pav:authoredOn": "2025-08-20 09:29:53.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A thickness shear mode quartz resonator pressure sensor manufactured by Quartzdyne. Pressure range: 0 dbar - 6900 dbar; field accuracy: 0.02 % Full Scale (FS) between -40 degC and 85 degC." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::DSB301-10-C85", + "skos:prefLabel": { + "@language": "en", + "@value": "Quartzdyne DSB301-10-C85 pressure sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2025-08-20 09:29:53.0", + "skos:altLabel": "DSB301-10-C85", + "skos:notation": "SDN:R27::DSB301-10-C85", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::DSB301-10-C85", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Term deprecated, replaced by 'https://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/'. A thickness shear mode quartz resonator pressure sensor manufactured by Quartzdyne. Pressure range: 0 dbar - 6900 dbar; field accuracy: 0.02 % Full Scale (FS) between -40 degC and 85 degC." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::QUARTZDYNE_DSB301-10-C85", + "skos:prefLabel": { + "@language": "en", + "@value": "Quartzdyne DSB301-10-C85 pressure sensor" + }, + "owl:versionInfo": "4", + "dc:date": "2025-09-02 12:51:44.0", + "skos:altLabel": "QUARTZDYNE_DSB301-10-C85", + "skos:notation": "SDN:R27::QUARTZDYNE_DSB301-10-C85", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/" + }, + "pav:version": "4", + "dce:identifier": "SDN:R27::QUARTZDYNE_DSB301-10-C85", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/4/" + }, + "pav:authoredOn": "2025-09-02 12:51:44.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time. A deuterium lamp provides a light source of 1 cm path length in the 200 nm - 400 nm wavelength range. Measurement accuracy: +/- 2 umol/l; detection range: 0.5 umol/l to 2000 umol/l. The instrument is depth-rated to 1000 m; it is based on the MBARI-ISUS-X v.2, and was manufactured at Satlantic." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ISUS_V3", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic In Situ Ultraviolet Spectrophotometer (ISUS) V3 nitrate sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ISUS_V3", + "skos:notation": "SDN:R27::ISUS_V3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::ISUS_V3", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/1/" + }, + "dce:identifier": "SDN:R27::CTD_F01", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors manufactured by Tsurumi-Seiki, model F01." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::CTD_F01", + "skos:prefLabel": { + "@language": "en", + "@value": "Tsurumi-Seiki TSK CTD F01" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "CTD_F01", + "skos:notation": "SDN:R27::CTD_F01", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/" + }, + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2900 pounds per square inch absolute manufactured by Paine." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE_2900PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 2900 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE_2900PSIA", + "skos:notation": "SDN:R27::PAINE_2900PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE_2900PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Paine with unknown pressure rating." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with unknown pressure rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE", + "skos:notation": "SDN:R27::PAINE", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 1500 pounds per square inch absolute manufactured by Paine." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE_1500PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 1500 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE_1500PSIA", + "skos:notation": "SDN:R27::PAINE_1500PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE_1500PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 1600 pounds per square inch absolute manufactured by Paine." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE_1600PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 1600 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE_1600PSIA", + "skos:notation": "SDN:R27::PAINE_1600PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE_1600PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 3000 pounds per square inch absolute manufactured by Paine." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE_3000PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 3000 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE_3000PSIA", + "skos:notation": "SDN:R27::PAINE_3000PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE_3000PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2000 pounds per square inch absolute manufactured by Paine." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAINE_2000PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 2000 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "PAINE_2000PSIA", + "skos:notation": "SDN:R27::PAINE_2000PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAINE_2000PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m, 6000 m or 12000 m; oxygen concentration accuracy of < 2 uM or 1.5 %, and resolution of < 0.1 uM; air saturation accuracy of < 1.5 %, and resolution of 0.05 %; response time (63 %): < 25 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4330", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4330 oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_4330", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4330", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4330", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; response time (63 %): < 8 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4831F", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4831F (fast-response) oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_4831F", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4831F", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4831F", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 2000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; settling time (63 %): < 25 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_3830", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 3830 oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_3830", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_3830", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_3830", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; response time (63 %): < 25 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4831", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4831 oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_4831", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4831", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4831", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; settling time (63 %): < 25 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_3835", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 3835 oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_3835", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_3835", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_3835", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown oxygen optode model manufactured by Aanderaa." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa unknown oxygen optode model" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE", + "skos:notation": "SDN:R27::AANDERAA_OPTODE", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m, 6000 m or 12000 m; oxygen concentration accuracy of < 2 uM or 1.5 %, and resolution of < 0.1 uM; air saturation accuracy of < 1.5 %, and resolution of 0.05 %; response time (63 %): < 8 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4330F", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4330F (fast-response) oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AANDERAA_OPTODE_4330F", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4330F", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4330F", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/2/" + } + ], + "pav:authoredOn": "2026-03-09 09:11:24.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deprecated as it is not used on Argo Floats. A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 2000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; settling time (63 %): < 25 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_3930", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 3930 oxygen optode" + }, + "owl:versionInfo": "3", + "dc:date": "2026-03-09 09:11:24.0", + "skos:altLabel": "AANDERAA_OPTODE_3930", + "skos:notation": "SDN:R27::AANDERAA_OPTODE_3930", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_3930", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A spectral sensor designed to measure nitrogen and carbon compounds, with titanium housing and depth-rating of 6000 dbar (Deep-Sea version). A xenon flash lamp provides the light source, and a 256-channel spectrometer covers a wavelength range of 200 nm - 360 nm. The instrument is manufactured by TriOS." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::OPUS_DS", + "skos:prefLabel": { + "@language": "en", + "@value": "TriOS OPUS spectral sensor - Deep Sea version" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "OPUS_DS", + "skos:notation": "SDN:R27::OPUS_DS", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::OPUS_DS" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A spectral imaging radiometer with cosine detector which measures radiance, irradiance or scalar irradiance in the Ultraviolet (UV), Vis (Visible) and Ultraviolet-visible (UV-Vis) ranges, manufactured by TriOS. Number of channels: 256." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RAMSES_ACC", + "skos:prefLabel": { + "@language": "en", + "@value": "TriOS RAMSES ACC spectral imaging radiometer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-07-01 16:48:21.0", + "skos:altLabel": "RAMSES_ACC", + "skos:notation": "SDN:R27::RAMSES_ACC", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::RAMSES_ACC" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 10153 pounds per square inch absolute manufactured by Kistler." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::KISTLER_10153PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler pressure sensor with 10153 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "KISTLER_10153PSIA", + "skos:notation": "SDN:R27::KISTLER_10153PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::KISTLER_10153PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2900 pounds per square inch absolute manufactured by Kistler." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::KISTLER_2900PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler pressure sensor with 2900 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "KISTLER_2900PSIA", + "skos:notation": "SDN:R27::KISTLER_2900PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::KISTLER_2900PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Kistler with unknown pressure rating." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::KISTLER", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler pressure sensor with unknown pressure rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "KISTLER", + "skos:notation": "SDN:R27::KISTLER", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::KISTLER", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A sealed gauge pressure transducer part of the Series 8 pressure sensors range manufactured by Keller." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::KELLER_PA8", + "skos:prefLabel": { + "@language": "en", + "@value": "Keller PA-8 pressure transducer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "KELLER_PA8", + "skos:notation": "SDN:R27::KELLER_PA8", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::KELLER_PA8", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "An oxygen optode with integrated temperature sensor, manufactured by JFE Advantech Co. and designed to be mounted on Argo floats. This model is part of the JFE Advantech Co., Ltd. RINKO series of optical dissolved oxygen sensors. The instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 2000 m; dissolved oxygen concentration initial accuracy of 2 %, and resolution of 0.01 umol/l; response time (63 %): < 1 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ARO_FT", + "skos:prefLabel": { + "@language": "en", + "@value": "JFE Advantech Co. (JAC) ARO-FT oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "ARO_FT", + "skos:notation": "SDN:R27::ARO_FT", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::ARO_FT", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "An oxygen optode with integrated temperature sensor, manufactured by JFE Advantech Co. and designed to be mounted on Argo floats. This model is part of the JFE Advantech Co., Ltd. RINKO series of optical dissolved oxygen sensors. The instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 6700 m; oxygen concentration initial accuracy of 2 % of measured value, and resolution of 0.01 umol/l; response time (63 %): < 1 s." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AROD_FT", + "skos:prefLabel": { + "@language": "en", + "@value": "JFE Advantech Co. (JAC) AROD-FT oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "AROD_FT", + "skos:notation": "SDN:R27::AROD_FT", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AROD_FT", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/1/" + }, + "pav:authoredOn": "2023-10-05 14:42:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/2/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength chlorophyll fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and chlorophyll-a fluorescence at 435 nm (excitation) / 695 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, manufactured by Sea-Bird Scientific. The sensor is fitted on an APEX float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBFL_AP2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO_FLBBFL_AP2" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:42:48.0", + "skos:altLabel": "ECO_FLBBFL_AP2", + "skos:notation": "SDN:R27::ECO_FLBBFL_AP2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::ECO_FLBBFL_AP2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/1/" + } + ], + "pav:authoredOn": "2021-08-19 11:24:56.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A temperature and pressure sensor package developed by Seascan, composed of a high-stability, glass-encapsulated thermistor manufactured by YSI (or optionally an ultra-stable thermistor manufactured by Thermometrics), and a mono-crystal silicon strain gage sensor manufactured by Druck. YSI thermistor accuracy: 0.01 degC; YSI thermistor resolution: 0.001 degC; pressure transducer accuracy: 0.1 % of full scale. Instrument's depth rating: either 2000 dbar or 4000 dbar." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SEASCAN_SSTD", + "skos:prefLabel": { + "@language": "en", + "@value": "Seascan Temperature and Depth (SSTD) sensor package" + }, + "owl:versionInfo": "3", + "dc:date": "2021-08-19 11:24:56.0", + "skos:altLabel": "SEASCAN_SSTD", + "skos:notation": "SDN:R27::SEASCAN_SSTD", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::SEASCAN_SSTD", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/2/" + } + ], + "pav:authoredOn": "2025-08-18 11:39:10.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 10153 pounds per square inch absolute manufactured by Druck." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::DRUCK_10153PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck pressure sensor with 10153 PSIA rating" + }, + "owl:versionInfo": "3", + "dc:date": "2025-08-18 11:39:10.0", + "skos:altLabel": "DRUCK_10153PSIA", + "skos:notation": "SDN:R27::DRUCK_10153PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::DRUCK_10153PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Druck with unknown pressure rating." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::DRUCK", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck pressure sensor with unknown pressure rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "DRUCK", + "skos:notation": "SDN:R27::DRUCK", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::DRUCK", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2900 pounds per square inch absolute manufactured by Druck." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::DRUCK_2900PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck pressure sensor with 2900 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "DRUCK_2900PSIA", + "skos:notation": "SDN:R27::DRUCK_2900PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::DRUCK_2900PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/1/" + }, + "dce:identifier": "SDN:R27::FSI", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Unknown CTD sensor model manufactured by Falmouth Scientific, Inc (FSI)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::FSI", + "skos:prefLabel": { + "@language": "en", + "@value": "Falmouth Scientific, Inc (FSI) unknown CTD model" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "FSI", + "skos:notation": "SDN:R27::FSI", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/" + }, + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A single-channel optical meter measuring scattering at 880 nm to determine turbidity, depth-rated to 6000 m. The sensor has four programmable sensitivity options: 2 mV/FTU, 10 mV/FTU, 40 mV/FTU and 200 mV/FTU, each corresponding to a gain of 1x, 5x, 20x and 100x respectively, and range of non-linear, 500 FTU, 125 FTU and 25 FTU respectively. The instrument was developed and manufactured by Seapoint Sensors, inc." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SEAPOINT_TURBIDITY_METER", + "skos:prefLabel": { + "@language": "en", + "@value": "Seapoint Turbidity Meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "SEAPOINT_TURBIDITY_METER", + "skos:notation": "SDN:R27::SEAPOINT_TURBIDITY_METER", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SEAPOINT_TURBIDITY_METER", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/1/" + }, + "dce:identifier": "SDN:R27::RBR", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Unknown CTD sensor model manufactured by RBR." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR", + "skos:prefLabel": { + "@language": "en", + "@value": "RBR unknown CTD model" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "RBR", + "skos:notation": "SDN:R27::RBR", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO3_DEEP6K", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is built with a compact titanium housing rated to 6000 dbar, and is specifically designed to be integrated with glass sphere profiling floats part of the Deep Argo program. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 8 Hz." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_ARGO3_DEEP6K", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo3 CTD deep6k" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "RBR_ARGO3_DEEP6K", + "skos:notation": "SDN:R27::RBR_ARGO3_DEEP6K", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by RBR. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. It is available in three variants based on response times: slow (30 s time constant), standard (8 s time constant) and fast (1 s time constant), the latter being optimal for vertical profiling applications. Depth rating: 6000 m; oxygen concentration accuracy of +/- 8 uM or +/- 5 %, and resolution of < 1 uM; air saturation resolution of 0.4 %." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_CODA_T_ODO", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRcoda T.ODO Temperature and Dissolved Oxygen sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "RBR_CODA_T_ODO", + "skos:notation": "SDN:R27::RBR_CODA_T_ODO", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::RBR_CODA_T_ODO", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is designed specifically for profiling floats, including those hosting multiple biogeochemical (BGC) sensors. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 12 Hz. The depth rating for a standard profile is 2000 dbar, with energy consumption of approximately 700 J." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_ARGO", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo CTD" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "RBR_ARGO", + "skos:notation": "SDN:R27::RBR_ARGO", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "Unspecified pressure sensor model used on RBR Argo CTD systems (L2 generation)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_PRES", + "skos:prefLabel": { + "@language": "en", + "@value": "Pressure sensor for RBR Argo CTD systems" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "RBR_PRES", + "skos:notation": "SDN:R27::RBR_PRES", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::RBR_PRES", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "Unspecified pressure sensor model used on RBR Argo3 CTD systems (L3 generation)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_PRES_A", + "skos:prefLabel": { + "@language": "en", + "@value": "Pressure sensor for RBR Argo3 CTD systems" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "RBR_PRES_A", + "skos:notation": "SDN:R27::RBR_PRES_A", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::RBR_PRES_A", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO3_DEEP4K", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is built with a compact titanium housing rated to 4000 dbar, and is specifically designed to be integrated with glass sphere profiling floats part of the Deep Argo program. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 8 Hz." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_ARGO3_DEEP4K", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo3 CTD deep4k" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "RBR_ARGO3_DEEP4K", + "skos:notation": "SDN:R27::RBR_ARGO3_DEEP4K", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO3", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is designed specifically for profiling floats, including those hosting multiple biogeochemical (BGC) sensors. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 8 Hz. The depth rating for a standard profile is 2000 dbar, with energy consumption of approximately 400 J." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::RBR_ARGO3", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo3 CTD" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "RBR_ARGO3", + "skos:notation": "SDN:R27::RBR_ARGO3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/" + }, + "skos:definition": { + "@language": "en", + "@value": "An electromagnetic subsystem designed to measure water velocity, mounted on an APEX electromagnetic float type (EM-APEX). The instrument was developed collaboratively by Webb Research Corp (WRC) and the Applied Physics Laboratory at the University of Washington (APL-UW)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::EM", + "skos:prefLabel": { + "@language": "en", + "@value": "Electromagnetic sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "EM", + "skos:notation": "SDN:R27::EM", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::EM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/" + }, + "skos:definition": { + "@language": "en", + "@value": "A hydrophone designed to measure surface rain rate and wind speed. The instrument was developed by the Applied Physics Laboratory at the University of Washington (APL-UW)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::PAL_UW", + "skos:prefLabel": { + "@language": "en", + "@value": "Passive Aquatic Listener (PAL) acoustic rain gauge" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "PAL_UW", + "skos:notation": "SDN:R27::PAL_UW", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::PAL_UW", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/2/" + } + ], + "pav:authoredOn": "2023-10-23 16:35:59.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH sensor design : similar root components (DURA), same sensor output and processing chain" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::GDF", + "skos:prefLabel": { + "@language": "en", + "@value": "Gasket DuraFET" + }, + "owl:versionInfo": "3", + "dc:date": "2023-10-23 16:35:59.0", + "skos:altLabel": "GDF", + "skos:notation": "SDN:R27::GDF", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::GDF", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time. A deuterium lamp provides a light source of 1 cm path length in the 200 nm - 400 nm wavelength range. Measurement resolution: +/- 0.05 umol/l; accuracy: +/- 2 umol/l or 2%; range: up to 200 umol/l. The instrument is depth-rated to 1000 m. The MBARI-ISUS-X v.2 was developed by Dr. Kenneth Johnson and Luke Coletti at the Monterey Bay Aquarium Research Institute (MBARI) in 2002, and was made commercially available in collaboration with Satlantic." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ISUS", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic MBARI In Situ Ultraviolet Spectrophotometer (ISUS) X v.2 nitrate sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ISUS", + "skos:notation": "SDN:R27::ISUS", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::ISUS", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/" + }, + "skos:definition": { + "@language": "en", + "@value": "An ion sensitive field effect transistor (ISFET) pH sensor with an AglCl reference electrode and a titanium counter electrode, housed in a pressure tolerant package. The sensor is manufactured at the Monterey Bay Aquarium Research Institute (MBARI), and was developed collaboratively by Dr. Kenneth Johnson at MBARI, Dr. Todd Martz at Scripps Institution of Oceanography (SIO), and Honeywell International. Depth rating: 2000m; pH accuracy: 0.01; pH precision: 0.005 over multiyear periods." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::DURA", + "skos:prefLabel": { + "@language": "en", + "@value": "MBARI Deep-Sea DuraFET pH sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "DURA", + "skos:notation": "SDN:R27::DURA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::DURA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/2/" + } + ], + "pav:authoredOn": "2021-08-18 15:17:20.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A pressure sensor special-built by Mensor for selected Deep SOLO floats." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MENSOR", + "skos:prefLabel": { + "@language": "en", + "@value": "Mensor special-built pressure sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2021-08-18 15:17:20.0", + "skos:altLabel": "MENSOR", + "skos:notation": "SDN:R27::MENSOR", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::MENSOR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A flush mountable pressure transducer MP40 model, configured to performance specification 'C' and header option 'G' (gage), depth-rated to 2000 psi. The instrument was manufactured by Micron Instruments (also operating as Piezo-Metrics)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MP40_C_2000_G", + "skos:prefLabel": { + "@language": "en", + "@value": "Micron Instruments MP40C-2000G pressure transducer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "MP40_C_2000_G", + "skos:notation": "SDN:R27::MP40_C_2000_G", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::MP40_C_2000_G", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 3000 pounds per square inch absolute manufactured by Ametek." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AMETEK_3000PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Ametek pressure sensor with 3000 PSIA rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "AMETEK_3000PSIA", + "skos:notation": "SDN:R27::AMETEK_3000PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AMETEK_3000PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Ametek with unknown pressure rating." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::AMETEK", + "skos:prefLabel": { + "@language": "en", + "@value": "Ametek pressure sensor with unknown pressure rating" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "AMETEK", + "skos:notation": "SDN:R27::AMETEK", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::AMETEK", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A through-flow, Clark polarographic membrane dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into a pumped CTD system. Depth rating: 600 m (plastic housing) or 7000 m (titanium housing); oxygen concentration initial accuracy: 2 % saturation; response time (63 %): 2 s - 5 s for 0.5 mil membrane (profiling applications), or 8 s - 20 s for 1.0 mil membrane (moored applications); output signal: frequency." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE43F_IDO", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 43F (frequency output) Integrated Dissolved Oxygen (IDO) sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "SBE43F_IDO", + "skos:notation": "SDN:R27::SBE43F_IDO", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SBE43F_IDO", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/1/" + }, + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/2/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.12", + "pav:version": "2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.9." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.12", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.12" + }, + "owl:versionInfo": "2", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.12", + "skos:notation": "SDN:R27::SBE61_V5.0.12", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/1/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/2/" + }, + "dce:identifier": "SDN:R27::SBE61", + "pav:version": "2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE61", + "skos:altLabel": "SBE61", + "dc:date": "2019-10-16 06:35:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD" + }, + "dc:identifier": "SDN:R27::SBE61", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V5.0.1", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.0.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.0.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.0.1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V5.0.1", + "skos:notation": "SDN:R27::SBE41CP_V5.0.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/1/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/2/" + }, + "dce:identifier": "SDN:R27::SBE41CP", + "pav:version": "2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE41CP", + "skos:altLabel": "SBE41CP", + "dc:date": "2019-10-16 06:35:48.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD" + }, + "dc:identifier": "SDN:R27::SBE41CP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface." + }, + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + } + ], + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V3.0a", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 3.0a." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V3.0a", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V3.0a" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V3.0a", + "skos:notation": "SDN:R27::SBE41CP_V3.0a", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/1/" + }, + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/2/" + }, + "dce:identifier": "SDN:R27::SBE41N_V5.3.4", + "pav:version": "2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow, manufactured by Sea-Bir Scientific. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface. This SBE41N model has firmware version 5.3.4." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41N_V5.3.4", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD V5.3.4" + }, + "owl:versionInfo": "2", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41N_V5.3.4", + "skos:notation": "SDN:R27::SBE41N_V5.3.4", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/1/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/2/" + }, + "dce:identifier": "SDN:R27::SBE41N", + "pav:version": "2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE41N", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41N", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41N" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.2", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.2" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.2", + "skos:notation": "SDN:R27::SBE41CP_V1.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBBCD_AP2", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and Fluorescent Dissolved Organic Matter (FDOM) at 370 nm (excitation) / 460 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBCD_AP2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLBBCD-AP2 sensor package with two fluorometers and one scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBBCD_AP2", + "skos:notation": "SDN:R27::ECO_FLBBCD_AP2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V4.4.0", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 4.4.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V4.4.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V4.4.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V4.4.0", + "skos:notation": "SDN:R27::SBE41CP_V4.4.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/1/" + }, + "dce:identifier": "SDN:R27::ECO_BB3", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three optical-sensor instrument fitted with three scattering meters measuring at a user-defined combination of 470 nm, 532 nm, 650 nm and 700 nm wavelengths, depth-rated to 600 m. The scattering sensor has an in-water centroid angle of 124 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_BB3", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO Triplet BB3 sensor package with three scattering meters" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_BB3", + "skos:notation": "SDN:R27::ECO_BB3", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.1", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.1", + "skos:notation": "SDN:R27::SBE61_V5.0.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V7.2.3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 7.2.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V7.2.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V7.2.3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41CP_V7.2.3", + "skos:notation": "SDN:R27::SBE41CP_V7.2.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/2/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure downwelling irradiance in water. Number of channels: 7; bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR507_ICSW", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-507 multispectral radiometer (downwelling irradiance)" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "SATLANTIC_OCR507_ICSW", + "skos:notation": "SDN:R27::SATLANTIC_OCR507_ICSW", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::SATLANTIC_OCR507_ICSW" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.8", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.8." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.8", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.8" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.8", + "skos:notation": "SDN:R27::SBE41CP_V1.8", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/1/" + }, + "dce:identifier": "SDN:R27::SBE", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Unknown CTD sensor model manufactured by Sea-Bird Scientific (SBE)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific (SBE) unknown CTD model" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "SBE", + "skos:notation": "SDN:R27::SBE", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.1", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.1", + "skos:notation": "SDN:R27::SBE41CP_V1.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.4", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.4." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.4", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.4" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.4", + "skos:notation": "SDN:R27::SBE41CP_V1.4", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/1/" + }, + "pav:authoredOn": "2023-10-05 14:42:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/2/" + }, + "dce:identifier": "SDN:R27::ECO_FLBBFL", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength chlorophyll fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and chlorophyll-a fluorescence at 435 nm (excitation) / 695 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, manufactured by Sea-Bird Scientific." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBFL", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO_FLBBFL" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:42:48.0", + "skos:altLabel": "ECO_FLBBFL", + "skos:notation": "SDN:R27::ECO_FLBBFL", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.0", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.0", + "skos:notation": "SDN:R27::SBE61_V5.0.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V4.5.2", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 4.5.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V4.5.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V4.5.2" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V4.5.2", + "skos:notation": "SDN:R27::SBE61_V4.5.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.2", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.2" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.2", + "skos:notation": "SDN:R27::SBE61_V5.0.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/1/" + }, + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/2/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.9", + "pav:version": "2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.9." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.9", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.9" + }, + "owl:versionInfo": "2", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.9", + "skos:notation": "SDN:R27::SBE61_V5.0.9", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V4.5.3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 4.5.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V4.5.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V4.5.3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V4.5.3", + "skos:notation": "SDN:R27::SBE61_V4.5.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/1/" + }, + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/2/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.10", + "pav:version": "2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.9." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.10", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.10" + }, + "owl:versionInfo": "2", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.10", + "skos:notation": "SDN:R27::SBE61_V5.0.10", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/3/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE61_V5.0.3", + "skos:notation": "SDN:R27::SBE61_V5.0.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/3/" + }, + "dce:identifier": "SDN:R27::SBE41_V2.5", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 model has firmware version 2.5." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_V2.5", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD V2.5" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:28.0", + "skos:altLabel": "SBE41_V2.5", + "skos:notation": "SDN:R27::SBE41_V2.5", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/1/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/2/" + }, + "dce:identifier": "SDN:R27::SBE41", + "pav:version": "2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE41", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V5.3.2", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.3.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.3.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.3.2" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41CP_V5.3.2", + "skos:notation": "SDN:R27::SBE41CP_V5.3.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBBCD", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and Fluorescent Dissolved Organic Matter (FDOM) at 370 nm (excitation) / 460 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBCD", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLBBCD sensor package with two fluorometers and one scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBBCD", + "skos:notation": "SDN:R27::ECO_FLBBCD", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_IDO_V2.0b", + "pav:version": "3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP IDO model has firmware version 2.0b." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_IDO_V2.0b", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD with an Integrated Dissolved Oxygen (IDO) sensor V2.0b" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41CP_IDO_V2.0b", + "skos:notation": "SDN:R27::SBE41CP_IDO_V2.0b" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/", + "pav:authoredOn": "2025-03-31 13:56:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/1/" + }, + "dce:identifier": "SDN:R27::SBE41CP_IDO", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_IDO", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD with an Integrated Dissolved Oxygen (IDO) sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2025-03-31 13:56:07.0", + "skos:altLabel": "SBE41CP_IDO", + "skos:notation": "SDN:R27::SBE41CP_IDO" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41_IDO_V2.0", + "pav:version": "3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 IDO model has firmware version 2.0c." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_IDO_V2.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO) sensor V2.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:28.0", + "skos:altLabel": "SBE41_IDO_V2.0", + "skos:notation": "SDN:R27::SBE41_IDO_V2.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/", + "pav:authoredOn": "2025-03-31 13:56:07.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/1/" + }, + "dce:identifier": "SDN:R27::SBE41_IDO", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE41_IDO", + "skos:altLabel": "SBE41_IDO", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41_IDO", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO)" + }, + "owl:versionInfo": "1", + "dc:date": "2025-03-31 13:56:07.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure upwelling radiance in water. Number of channels: 7; field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR507_R10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-507 multispectral radiometer (upwelling radiance)" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "SATLANTIC_OCR507_R10W", + "skos:notation": "SDN:R27::SATLANTIC_OCR507_R10W", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::SATLANTIC_OCR507_R10W", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBB", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine backscattering, depth-rated to 600 m. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLbb sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB", + "skos:notation": "SDN:R27::ECO_FLBB", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "An optical dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into a pumped CTD system. Depth rating: 600 m (plastic housing) or 7000 m (titanium housing); oxygen concentration initial accuracy: 2 % saturation; response time (63 %): < 6 s; output signal: RS-232." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE63_OPTODE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 63 oxygen optode" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "SBE63_OPTODE", + "skos:notation": "SDN:R27::SBE63_OPTODE", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SBE63_OPTODE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1", + "skos:notation": "SDN:R27::SBE41CP_V1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/3/" + }, + "dce:identifier": "SDN:R27::SBE41_V3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 model has firmware version 3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_V3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD V3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:28.0", + "skos:altLabel": "SBE41_V3", + "skos:notation": "SDN:R27::SBE41_V3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/3/" + }, + "dce:identifier": "SDN:R27::SBE41_V2.6", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 model has firmware version 2.6." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_V2.6", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD V2.6" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:28.0", + "skos:altLabel": "SBE41_V2.6", + "skos:notation": "SDN:R27::SBE41_V2.6", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/1/" + }, + "pav:authoredOn": "2021-08-19 11:47:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/2/" + }, + "dce:identifier": "SDN:R27::SUNA", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time and over a variety of environments, depth-rated to 100 m. A deuterium lamp provides a light source of 1 cm path length; the measured spectrum falls within the Ultraviolet (UV) 190 nm - 370 nm wavelength range. Measurement accuracy: +/- 2 umol/l or 10 %; detection range: 0.5 umol/l to 2000 umol/l. The instrument is based on the MBARI-ISUS technology; it was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SUNA", + "skos:prefLabel": { + "@language": "en", + "@value": "Submersible Ultraviolet Nitrate Analyser (SUNA) nitrate sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2021-08-19 11:47:24.0", + "skos:altLabel": "SUNA", + "skos:notation": "SDN:R27::SUNA", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.9a", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.9a." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.9a", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.9a" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.9a", + "skos:notation": "SDN:R27::SBE41CP_V1.9a", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/3/" + }, + "dce:identifier": "SDN:R27::SBE41_IDO_V1.0c", + "pav:version": "3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 IDO model has firmware version 1.0c." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_IDO_V1.0c", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO) sensor V1.0c" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:28.0", + "skos:altLabel": "SBE41_IDO_V1.0c", + "skos:notation": "SDN:R27::SBE41_IDO_V1.0c" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBB_2K", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine backscattering, depth-rated to 2000 m and designed for float applications. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB_2K", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLbb2k sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB_2K", + "skos:notation": "SDN:R27::ECO_FLBB_2K", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/2/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure downwelling irradiance and upwelling radiance in water. Number of channels: 7; upwelling radiance field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard); spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR507_ICSWR10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-507 multispectral radiometer (downwelling irradiance and upwelling radiance)" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "SATLANTIC_OCR507_ICSWR10W", + "skos:notation": "SDN:R27::SATLANTIC_OCR507_ICSWR10W", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::SATLANTIC_OCR507_ICSWR10W" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/1/" + }, + "dce:identifier": "SDN:R27::FLOATCLOCK", + "pav:version": "1", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MARTEC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/OPTIMARE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WRC/" + } + ], + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/" + }, + "skos:definition": { + "@language": "en", + "@value": "Inboard Real Time Clock (RTC) of a float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::FLOATCLOCK", + "skos:prefLabel": { + "@language": "en", + "@value": "Float clock" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-18 14:32:12.0", + "skos:altLabel": "FLOATCLOCK", + "skos:notation": "SDN:R27::FLOATCLOCK" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/1/" + }, + "dce:identifier": "SDN:R27::SBE37", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A high accuracy conductivity and temperature recorder with an optional pressure sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE37", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 37 MicroCAT" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "SBE37", + "skos:notation": "SDN:R27::SBE37", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V5.3.0", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.3.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.3.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.3.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V5.3.0", + "skos:notation": "SDN:R27::SBE41CP_V5.3.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A through-flow, Clark polarographic membrane dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into a pumped CTD system. Depth rating: 600 m (plastic housing) or 7000 m (titanium housing); oxygen concentration initial accuracy: 2 % saturation; response time (63 %): 2 s - 5 s for 0.5 mil membrane (profiling applications), or 8 s - 20 s for 1.0 mil membrane (moored applications); output signal: 0-5 VDC." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE43_IDO", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 43 Integrated Dissolved Oxygen (IDO) sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "SBE43_IDO", + "skos:notation": "SDN:R27::SBE43_IDO", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SBE43_IDO", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V7.2.5", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 7.2.5." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V7.2.5", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V7.2.5" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41CP_V7.2.5", + "skos:notation": "SDN:R27::SBE41CP_V7.2.5", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "The SBE Surface Temperature and Salinity (STS) sensor is designed to make near-surface temperature and conductivity measurements from profiling floats. As its conductivity sensor is free-flushed, the SBE STS is designed to be used in conjunction with an SBE 41CP sensor for calibration purposes." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE_STS", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE Surface Temperature and Salinity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 14:49:00.0", + "skos:altLabel": "SBE_STS", + "skos:notation": "SDN:R27::SBE_STS", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SBE_STS" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41_IDO_V3.0", + "pav:version": "3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 IDO model has firmware version 3.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41_IDO_V3.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO) sensor V3.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41_IDO_V3.0", + "skos:notation": "SDN:R27::SBE41_IDO_V3.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V3", + "skos:notation": "SDN:R27::SBE41CP_V3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V5.3.1", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.3.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.3.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.3.1" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V5.3.1", + "skos:notation": "SDN:R27::SBE41CP_V5.3.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + }, + "skos:definition": { + "@language": "en", + "@value": "A single-channel fluorometer, configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission), depth-rated to 600 m. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FL", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FL fluorometer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FL", + "skos:notation": "SDN:R27::ECO_FL", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_FL" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/1/" + }, + "dce:identifier": "SDN:R27::MCOMS_FLBB2", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three optical-sensor instrument fitted with one fluorometer and two scattering meters, depth-rated to 600 m. The fluorometer is configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths, whereas the two scattering meters (in-water centroid angle of 150 deg) can be configured to measure backscattering at a user-defined choice of 470 nm, 532 nm, 650 nm or 700 nm each. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MCOMS_FLBB2", + "skos:prefLabel": { + "@language": "en", + "@value": "MCOMS FLBB2 sensor package with one fluorometer and two scattering meters" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "MCOMS_FLBB2", + "skos:notation": "SDN:R27::MCOMS_FLBB2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A Clark polarographic membrane dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into the pumped CTD system of an Argo float. Depth rating: 2000 m; oxygen concentration initial accuracy: 1 % saturation; output signal: frequency." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE43I", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 43I (integral) dissolved oxygen sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-05-26 09:01:46.0", + "skos:altLabel": "SBE43I", + "skos:notation": "SDN:R27::SBE43I", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SBE43I", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V2", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V2" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V2", + "skos:notation": "SDN:R27::SBE41CP_V2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.2a", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.2a." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.2a", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.2a" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.2a", + "skos:notation": "SDN:R27::SBE41CP_V1.2a", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.3b", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.3b." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.3b", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.3b" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.3b", + "skos:notation": "SDN:R27::SBE41CP_V1.3b", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.5", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.5." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.5", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.5" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.5", + "skos:notation": "SDN:R27::SBE41CP_V1.5", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.9", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.9." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.9", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.9" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.9", + "skos:notation": "SDN:R27::SBE41CP_V1.9", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.3", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.3" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.3", + "skos:notation": "SDN:R27::SBE41CP_V1.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/1/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V1.7", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.7." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.7", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.7" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V1.7", + "skos:notation": "SDN:R27::SBE41CP_V1.7", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:29.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/3/" + }, + "dce:identifier": "SDN:R27::SBE41CP_V3.0c", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 3.0c." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41CP_V3.0c", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V3.0c" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:29.0", + "skos:altLabel": "SBE41CP_V3.0c", + "skos:notation": "SDN:R27::SBE41CP_V3.0c", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41N_V5.3.0", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface. This SBE41N model has firmware version 5.3.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41N_V5.3.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD V5.3.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41N_V5.3.0", + "skos:notation": "SDN:R27::SBE41N_V5.3.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/2/" + } + ], + "pav:authoredOn": "2025-04-03 11:54:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/3/" + }, + "dce:identifier": "SDN:R27::SBE41N_V5.4.0", + "pav:version": "3", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface. This SBE41N model has firmware version 5.4.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SBE41N_V5.4.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD V5.4.0" + }, + "owl:versionInfo": "3", + "dc:date": "2025-04-03 11:54:30.0", + "skos:altLabel": "SBE41N_V5.4.0", + "skos:notation": "SDN:R27::SBE41N_V5.4.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "An optical sensor measuring scattering at a single 117 deg angle, configurable to 470 nm, 532 nm or 660 nm wavelength and depth-rated to 600 m. The scattering sensor has an in-water centroid angle of 124 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::ECO_BB", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO BB scattering meter" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "ECO_BB", + "skos:notation": "SDN:R27::ECO_BB", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::ECO_BB", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLNTU", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine turbidity, depth-rated to 600 m. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLNTU", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLntu sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLNTU", + "skos:notation": "SDN:R27::ECO_FLNTU", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/2/" + }, + "dce:identifier": "SDN:R27::SATLANTIC_OCR504_ICSW", + "pav:version": "2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + ], + "skos:notation": "SDN:R27::SATLANTIC_OCR504_ICSW", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure downwelling irradiance in water. Number of channels: 4; bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR504_ICSW", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-504 multispectral radiometer (downwelling irradiance)" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "SATLANTIC_OCR504_ICSW" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + "skos:definition": { + "@language": "en", + "@value": "A single-channel optical meter measuring scattering at 700 nm to determine turbidity, depth-rated to 600 m. The scattering sensor has an in-water centroid angle of 124 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_NTU", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO NTU turbidity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_NTU", + "skos:notation": "SDN:R27::ECO_NTU", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_NTU" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:52.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/2/" + }, + "dce:identifier": "SDN:R27::SATLANTIC_OCR504_R10W", + "pav:version": "2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + ], + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure upwelling radiance in water. Number of channels: 4; field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR504_R10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-504 multispectral radiometer (upwelling radiance)" + }, + "owl:versionInfo": "2", + "dc:date": "2025-08-28 11:45:52.0", + "skos:altLabel": "SATLANTIC_OCR504_R10W", + "skos:notation": "SDN:R27::SATLANTIC_OCR504_R10W" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/1/" + }, + "dce:identifier": "SDN:R27::MCOMS_FLBBCD", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength fluorometers and a single-angle scattering meter. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and Fluorescent Dissolved Organic Matter (FDOM) at 370 nm (excitation) / 460 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 150 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MCOMS_FLBBCD", + "skos:prefLabel": { + "@language": "en", + "@value": "MCOMS FLBBCD sensor package with two fluorometers and one scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "MCOMS_FLBBCD", + "skos:notation": "SDN:R27::MCOMS_FLBBCD", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBB_AP2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine backscattering, depth-rated to 2000 m and designed for float applications. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB_AP2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLbb-AP2 sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB_AP2", + "skos:notation": "SDN:R27::ECO_FLBB_AP2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/1/" + }, + "dce:identifier": "SDN:R27::ECO_FLBB2", + "pav:version": "1", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + ], + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A three optical-sensor instrument fitted with one fluorometer and two scattering meters, depth-rated to 600 m. The fluorometer is configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths, whereas the two scattering meters (in-water centroid angle of 124 deg) can be configured to measure backscattering at a user-defined choice of 470 nm, 532 nm, 650 nm or 700 nm each. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLBB2 sensor package with one fluorometer and two scattering meters" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB2", + "skos:notation": "SDN:R27::ECO_FLBB2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/1/" + }, + "pav:authoredOn": "2021-08-19 11:48:30.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/2/" + }, + "dce:identifier": "SDN:R27::SUNA_V2", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time and over clear to high turbidity/suspended sedimentation waters, depth-rated to 500 m. A deuterium lamp provides a light source of 10 mm path length (or 5 mm for high turbidity conditions); the measured spectrum falls within the Ultraviolet (UV) 190 nm - 370 nm wavelength range. The instrument is based on the MBARI-ISUS technology; it was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SUNA_V2", + "skos:prefLabel": { + "@language": "en", + "@value": "Submersible Ultraviolet Nitrate Analyser (SUNA) V2 nitrate sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2021-08-19 11:48:30.0", + "skos:altLabel": "SUNA_V2", + "skos:notation": "SDN:R27::SUNA_V2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/" + }, + "skos:definition": { + "@language": "en", + "@value": "An ion sensitive field effect transistor (ISFET) pH sensor with an AglCl reference electrode and a titanium counter electrode, housed in a pressure tolerant package. The sensor is manufactured at Sea-Bird Scientific, and was developed collaboratively by Monterey Bay Aquarium Research Institute (MBARI), Scripps Institution of Oceanography (SIO), and Honeywell International. Depth rating: 2000 dbar; Accuracy: +/- 0.05 pH; stability: 0.036 pH/year." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SEAFET", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific Deep SeaFET pH sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "SEAFET", + "skos:notation": "SDN:R27::SEAFET", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::SEAFET", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + "skos:definition": { + "@language": "en", + "@value": "A Photosynthetically Active Radiation (PAR) sensor that measures quantum irradiance with near flat spectral response and cosine spatial response. Spectrum: 400 nm - 700 nm; PAR range: 0 umol - 5000 umol photons m^-2 s^-1; cosine error: < 3% (0 deg - 60 deg) and < 10% (60 deg - 85 deg); sample rate up to 100 Hz. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SATLANTIC_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic Photosynthetically Active Radiation (PAR) sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-07-01 16:48:21.0", + "skos:altLabel": "SATLANTIC_PAR", + "skos:notation": "SDN:R27::SATLANTIC_PAR", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::SATLANTIC_PAR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/" + }, + "skos:definition": { + "@language": "en", + "@value": "A neutrally buoyant optical transmissometer, designed for profiling floats applications. Depth rating: 2000 m; available wavelengths: 465 nm, 520 nm and 650 nm; optical pathlength: 25 cm; acceptance angle: 0.9 deg. The instrument was originally developed and manufactured at WET Labs, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::C_ROVER", + "skos:prefLabel": { + "@language": "en", + "@value": "c-Rover Transmissometer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "C_ROVER", + "skos:notation": "SDN:R27::C_ROVER", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::C_ROVER" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "A single-channel optical sensor configurable to detect a wide range of parameters within a 260 nm - 900 nm optical range, including chlorophyll-a, Fluorescent Dissolved Organic Matter (FDOM), and turbidity. The instrument is depth-rated to 600m, and was developed and manufactured by Turner Designs." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::CYCLOPS_7_FLUOROMETER", + "skos:prefLabel": { + "@language": "en", + "@value": "Turner Designs Cyclops-7 fluorometer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "CYCLOPS_7_FLUOROMETER", + "skos:notation": "SDN:R27::CYCLOPS_7_FLUOROMETER", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R27::CYCLOPS_7_FLUOROMETER" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/UNKNOWN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DSB301-10-C85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms listing models of sensors mounted on Argo floats. Note: avoid using the manufacturer name and sensor firmware version in new entries when possible. Argo netCDF variable SENSOR_MODEL is populated by R27 altLabel.", + "dc:title": "Argo sensor models", + "skos:prefLabel": "Argo sensor models", + "owl:versionInfo": "25", + "dc:date": "2026-03-10 02:00:00.0", + "skos:altLabel": "SENSOR_MODEL", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "SENSOR_MODEL", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R33.jsonld b/file_checker_spec/NVS/R33.jsonld new file mode 100644 index 0000000..2c76592 --- /dev/null +++ b/file_checker_spec/NVS/R33.jsonld @@ -0,0 +1,150 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00001/", + "pav:authoredOn": "2026-03-18 11:19:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00001/1/" + }, + "dce:identifier": "SDN:R33::BM00001", + "pav:version": "1", + "skos:notation": "SDN:R33::BM00001", + "skos:altLabel": "ELECTROCHEM", + "dc:date": "2026-03-18 11:19:16.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ELECTROCHEM" + }, + "dc:identifier": "SDN:R33::BM00001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US company ELECTROCHEM, founded in 1979. https://electrochemsolutions.com/overview/." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00003/", + "pav:authoredOn": "2026-03-18 11:19:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00003/1/" + }, + "dce:identifier": "SDN:R33::BM00003", + "pav:version": "1", + "skos:notation": "SDN:R33::BM00003", + "skos:altLabel": "SAFT", + "dc:date": "2026-03-18 11:19:16.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SAFT" + }, + "dc:identifier": "SDN:R33::BM00003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "French company SAFT, founded in 1918. https://saft.com/en/about-saft/saft-in-brief." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00002/", + "pav:authoredOn": "2026-03-18 11:19:16.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00002/1/" + }, + "dce:identifier": "SDN:R33::BM00002", + "pav:version": "1", + "skos:notation": "SDN:R33::BM00002", + "skos:altLabel": "TADIRAN", + "dc:date": "2026-03-18 11:19:16.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TADIRAN" + }, + "dc:identifier": "SDN:R33::BM00002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US company TADIRAN, founded in 1962. https://tadiranbat.com/." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R33/current/BM00003/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float battery manufacturers. Argo netCDF variable BATTERY_TYPE syntax uses both R33 altLabel and R34 altLabel with the following convention: V [+ V].", + "dc:title": "Argo battery maker", + "skos:prefLabel": "Argo battery maker", + "owl:versionInfo": "1", + "dc:date": "2026-03-19 02:00:01.0", + "skos:altLabel": "BATTERY_MAKER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "BATTERY_MAKER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R34.jsonld b/file_checker_spec/NVS/R34.jsonld new file mode 100644 index 0000000..64d8b46 --- /dev/null +++ b/file_checker_spec/NVS/R34.jsonld @@ -0,0 +1,150 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00003/", + "pav:authoredOn": "2026-03-18 11:19:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00003/1/" + }, + "dce:identifier": "SDN:R34::BT00003", + "pav:version": "1", + "skos:notation": "SDN:R34::BT00003", + "skos:altLabel": "Hybrid", + "dc:date": "2026-03-18 11:19:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hyb" + }, + "dc:identifier": "SDN:R34::BT00003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Hybrid (alkaline and lithium) batteries." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00002/", + "pav:authoredOn": "2026-03-18 11:19:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00002/1/" + }, + "dce:identifier": "SDN:R34::BT00002", + "pav:version": "1", + "skos:notation": "SDN:R34::BT00002", + "skos:altLabel": "Lithium", + "dc:date": "2026-03-18 11:19:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Li" + }, + "dc:identifier": "SDN:R34::BT00002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Lithium battery." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00001/", + "pav:authoredOn": "2026-03-18 11:19:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00001/1/" + }, + "dce:identifier": "SDN:R34::BT00001", + "pav:version": "1", + "skos:notation": "SDN:R34::BT00001", + "skos:altLabel": "Alkaline", + "dc:date": "2026-03-18 11:19:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Alk" + }, + "dc:identifier": "SDN:R34::BT00001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Alkaline battery." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R34/current/BT00002/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float battery types. Argo netCDF variable BATTERY_TYPE syntax uses both R33 altLabel and R34 altLabel with the following convention: V [+ V]. Argo netCDF variable BATTERY_PACKS uses both R35 altLabel and R34 prefLabel with the following convention: [+ ].", + "dc:title": "Argo battery type", + "skos:prefLabel": "Argo battery type", + "owl:versionInfo": "1", + "dc:date": "2026-03-19 02:00:01.0", + "skos:altLabel": "BATTERY_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "BATTERY_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R35.jsonld b/file_checker_spec/NVS/R35.jsonld new file mode 100644 index 0000000..2a95759 --- /dev/null +++ b/file_checker_spec/NVS/R35.jsonld @@ -0,0 +1,150 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00003/", + "pav:authoredOn": "2026-03-18 11:19:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00003/1/" + }, + "dce:identifier": "SDN:R35::BS00003", + "pav:version": "1", + "skos:notation": "SDN:R35::BS00003", + "skos:altLabel": "C", + "dc:date": "2026-03-18 11:19:31.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "C" + }, + "dc:identifier": "SDN:R35::BS00003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "C cell battery." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00002/", + "pav:authoredOn": "2026-03-18 11:19:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00002/1/" + }, + "dce:identifier": "SDN:R35::BS00002", + "pav:version": "1", + "skos:notation": "SDN:R35::BS00002", + "skos:altLabel": "D", + "dc:date": "2026-03-18 11:19:31.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "D" + }, + "dc:identifier": "SDN:R35::BS00002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "D cell battery." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00001/", + "pav:authoredOn": "2026-03-18 11:19:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00001/1/" + }, + "dce:identifier": "SDN:R35::BS00001", + "pav:version": "1", + "skos:notation": "SDN:R35::BS00001", + "skos:altLabel": "DD", + "dc:date": "2026-03-18 11:19:31.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DD" + }, + "dc:identifier": "SDN:R35::BS00001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DD cell battery (larger capacity than D cell battery)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R35/current/BS00002/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float battery styles. Argo netCDF variable BATTERY_PACKS uses both R35 altLabel and R34 prefLabel with the following convention: [+ ].", + "dc:title": "Argo battery size", + "skos:prefLabel": "Argo battery size", + "owl:versionInfo": "1", + "dc:date": "2026-03-19 02:00:01.0", + "skos:altLabel": "BATTERY_SIZE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "BATTERY_SIZE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R40.jsonld b/file_checker_spec/NVS/R40.jsonld new file mode 100644 index 0000000..cc238ca --- /dev/null +++ b/file_checker_spec/NVS/R40.jsonld @@ -0,0 +1,8944 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0107/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0107/1/" + }, + "dce:identifier": "SDN:R40::PI0107", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0107", + "skos:altLabel": "Juliet HERMES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Juliet HERMES" + }, + "dc:identifier": "SDN:R40::PI0107", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0130/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0130/1/" + }, + "dce:identifier": "SDN:R40::PI0130", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0130", + "skos:altLabel": "Mike MEREDITH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mike MEREDITH" + }, + "dc:identifier": "SDN:R40::PI0130", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0254/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0254/1/" + }, + "dce:identifier": "SDN:R40::PI0254", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0254", + "skos:altLabel": "Emanuele ORGANELLI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emanuele ORGANELLI" + }, + "dc:identifier": "SDN:R40::PI0254", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0025/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0025/1/" + }, + "dce:identifier": "SDN:R40::PI0025", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0025", + "skos:altLabel": "Camille DAUBORD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Camille DAUBORD" + }, + "dc:identifier": "SDN:R40::PI0025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0094/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0094/1/" + }, + "dce:identifier": "SDN:R40::PI0094", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0094", + "skos:altLabel": "Jens SCHIMANSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jens SCHIMANSKI" + }, + "dc:identifier": "SDN:R40::PI0094", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0006/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0006/1/" + }, + "dce:identifier": "SDN:R40::PI0006", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0006", + "skos:altLabel": "Amy BOWER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Amy BOWER" + }, + "dc:identifier": "SDN:R40::PI0006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0176/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0176/1/" + }, + "dce:identifier": "SDN:R40::PI0176", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0176", + "skos:altLabel": "Shin-Ichi ITO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Shin-Ichi ITO" + }, + "dc:identifier": "SDN:R40::PI0176", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0117/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0117/1/" + }, + "dce:identifier": "SDN:R40::PI0117", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0117", + "skos:altLabel": "Laura TUOMI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laura TUOMI" + }, + "dc:identifier": "SDN:R40::PI0117", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0260/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0260/1/" + }, + "dce:identifier": "SDN:R40::PI0260", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0260", + "skos:altLabel": "Jean-Baptiste ROUSTAN", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jean-Baptiste ROUSTAN" + }, + "dc:identifier": "SDN:R40::PI0260", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0067/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0067/1/" + }, + "dce:identifier": "SDN:R40::PI0067", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0067", + "skos:altLabel": "Frederic VIVIER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Frederic VIVIER" + }, + "dc:identifier": "SDN:R40::PI0067", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0225/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0225/1/" + }, + "dce:identifier": "SDN:R40::PI0225", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0225", + "skos:altLabel": "Yutaka MICHIDA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yutaka MICHIDA" + }, + "dc:identifier": "SDN:R40::PI0225", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0089/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0089/1/" + }, + "dce:identifier": "SDN:R40::PI0089", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0089", + "skos:altLabel": "Jamal Chioua", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jamal Chioua" + }, + "dc:identifier": "SDN:R40::PI0089", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0222/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0222/1/" + }, + "dce:identifier": "SDN:R40::PI0222", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0222", + "skos:altLabel": "Youngsoo JEON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Youngsoo JEON" + }, + "dc:identifier": "SDN:R40::PI0222", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0185/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0185/1/" + }, + "dce:identifier": "SDN:R40::PI0185", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0185", + "skos:altLabel": "Steven EMERSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Steven EMERSON" + }, + "dc:identifier": "SDN:R40::PI0185", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0258/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0258/1/" + }, + "dce:identifier": "SDN:R40::PI0258", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0258", + "skos:altLabel": "Giovanni LA FORGIA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Giovanni LA FORGIA" + }, + "dc:identifier": "SDN:R40::PI0258", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0264/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0264/1/" + }, + "dce:identifier": "SDN:R40::PI0264", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0264", + "skos:altLabel": "Laura CIMOLI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laura CIMOLI" + }, + "dc:identifier": "SDN:R40::PI0264", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0133/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0133/1/" + }, + "dce:identifier": "SDN:R40::PI0133", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0133", + "skos:altLabel": "Molly BARINGER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Molly BARINGER" + }, + "dc:identifier": "SDN:R40::PI0133", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0159/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0159/1/" + }, + "dce:identifier": "SDN:R40::PI0159", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0159", + "skos:altLabel": "Robert MOLINARI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Robert MOLINARI" + }, + "dc:identifier": "SDN:R40::PI0159", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0033/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0033/1/" + }, + "dce:identifier": "SDN:R40::PI0033", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0033", + "skos:altLabel": "Christoph KIHM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christoph KIHM" + }, + "dc:identifier": "SDN:R40::PI0033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0229/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0229/1/" + }, + "dce:identifier": "SDN:R40::PI0229", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0229", + "skos:altLabel": "Zhaohui CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Zhaohui CHEN" + }, + "dc:identifier": "SDN:R40::PI0229", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0243/", + "pav:authoredOn": "2025-06-30 16:01:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0243/1/" + }, + "dce:identifier": "SDN:R40::PI0243", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0243", + "skos:altLabel": "Tetsuichi FUJIKI", + "dc:date": "2025-06-30 16:01:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tetsuichi FUJIKI" + }, + "dc:identifier": "SDN:R40::PI0243", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0079/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0079/1/" + }, + "dce:identifier": "SDN:R40::PI0079", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0079", + "skos:altLabel": "Henry BITTIG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Henry BITTIG" + }, + "dc:identifier": "SDN:R40::PI0079", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0237/", + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0237/1/" + }, + "dce:identifier": "SDN:R40::PI0237", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0237", + "skos:altLabel": "Christina SCHALLENBERG", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christina SCHALLENBERG" + }, + "dc:identifier": "SDN:R40::PI0237", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0083/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0083/1/" + }, + "dce:identifier": "SDN:R40::PI0083", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0083", + "skos:altLabel": "Howard FREELAND", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Howard FREELAND" + }, + "dc:identifier": "SDN:R40::PI0083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0012/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0012/1/" + }, + "dce:identifier": "SDN:R40::PI0012", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0012", + "skos:altLabel": "Antoine POTEAU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Antoine POTEAU" + }, + "dc:identifier": "SDN:R40::PI0012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0202/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0202/1/" + }, + "dce:identifier": "SDN:R40::PI0202", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0202", + "skos:altLabel": "Toshio SUGA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Toshio SUGA" + }, + "dc:identifier": "SDN:R40::PI0202", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0191/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0191/1/" + }, + "dce:identifier": "SDN:R40::PI0191", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0191", + "skos:altLabel": "Takashi KIKUCHI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Takashi KIKUCHI" + }, + "dc:identifier": "SDN:R40::PI0191", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0104/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0104/1/" + }, + "dce:identifier": "SDN:R40::PI0104", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0104", + "skos:altLabel": "Ju CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ju CHEN" + }, + "dc:identifier": "SDN:R40::PI0104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0042/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0042/1/" + }, + "dce:identifier": "SDN:R40::PI0042", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0042", + "skos:altLabel": "Dan RUDNICK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dan RUDNICK" + }, + "dc:identifier": "SDN:R40::PI0042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0219/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0219/1/" + }, + "dce:identifier": "SDN:R40::PI0219", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0219", + "skos:altLabel": "Yong-Hoon YOUN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yong-Hoon YOUN" + }, + "dc:identifier": "SDN:R40::PI0219", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0153/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0153/1/" + }, + "dce:identifier": "SDN:R40::PI0153", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0153", + "skos:altLabel": "Philip BOYD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Philip BOYD" + }, + "dc:identifier": "SDN:R40::PI0153", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0101/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0101/1/" + }, + "dce:identifier": "SDN:R40::PI0101", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0101", + "skos:altLabel": "Jordi FONT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jordi FONT" + }, + "dc:identifier": "SDN:R40::PI0101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0064/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0064/1/" + }, + "dce:identifier": "SDN:R40::PI0064", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0064", + "skos:altLabel": "Fiona GRANT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fiona GRANT" + }, + "dc:identifier": "SDN:R40::PI0064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0172/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0172/1/" + }, + "dce:identifier": "SDN:R40::PI0172", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0172", + "skos:altLabel": "Serge LE RESTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Serge LE RESTE" + }, + "dc:identifier": "SDN:R40::PI0172", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0029/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0029/1/" + }, + "dce:identifier": "SDN:R40::PI0029", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0029", + "skos:altLabel": "Charlie HORTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Charlie HORTON" + }, + "dc:identifier": "SDN:R40::PI0029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0255/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0255/1/" + }, + "dce:identifier": "SDN:R40::PI0255", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0255", + "skos:altLabel": "Emilio GARCIA-LADONA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emilio GARCIA-LADONA" + }, + "dc:identifier": "SDN:R40::PI0255", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0059/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0059/1/" + }, + "dce:identifier": "SDN:R40::PI0059", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0059", + "skos:altLabel": "Fabrizio D'ORTENZIO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fabrizio D'ORTENZIO" + }, + "dc:identifier": "SDN:R40::PI0059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0016/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0016/1/" + }, + "dce:identifier": "SDN:R40::PI0016", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0016", + "skos:altLabel": "Bert RUDELS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bert RUDELS" + }, + "dc:identifier": "SDN:R40::PI0016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0143/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0143/1/" + }, + "dce:identifier": "SDN:R40::PI0143", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0143", + "skos:altLabel": "Osvaldo ULLOA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Osvaldo ULLOA" + }, + "dc:identifier": "SDN:R40::PI0143", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0038/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0038/1/" + }, + "dce:identifier": "SDN:R40::PI0038", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0038", + "skos:altLabel": "Corinna JENSEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Corinna JENSEN" + }, + "dc:identifier": "SDN:R40::PI0038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0108/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0108/1/" + }, + "dce:identifier": "SDN:R40::PI0108", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0108", + "skos:altLabel": "Katrin LATARIUS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Katrin LATARIUS" + }, + "dc:identifier": "SDN:R40::PI0108", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0131/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0131/1/" + }, + "dce:identifier": "SDN:R40::PI0131", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0131", + "skos:altLabel": "Mikhail DANCHENKOV", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mikhail DANCHENKOV" + }, + "dc:identifier": "SDN:R40::PI0131", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0068/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0068/1/" + }, + "dce:identifier": "SDN:R40::PI0068", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0068", + "skos:altLabel": "Gerard ELDIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gerard ELDIN" + }, + "dc:identifier": "SDN:R40::PI0068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0226/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0226/1/" + }, + "dce:identifier": "SDN:R40::PI0226", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0226", + "skos:altLabel": "Yves GOURIOU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yves GOURIOU" + }, + "dc:identifier": "SDN:R40::PI0226", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0070/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0070/1/" + }, + "dce:identifier": "SDN:R40::PI0070", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0070", + "skos:altLabel": "Gerd ROHARDT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gerd ROHARDT" + }, + "dc:identifier": "SDN:R40::PI0070", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0177/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0177/1/" + }, + "dce:identifier": "SDN:R40::PI0177", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0177", + "skos:altLabel": "Sophie BONNET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sophie BONNET" + }, + "dc:identifier": "SDN:R40::PI0177", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0010/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0010/1/" + }, + "dce:identifier": "SDN:R40::PI0010", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0010", + "skos:altLabel": "Anja SCHNEEHORST", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Anja SCHNEEHORST" + }, + "dc:identifier": "SDN:R40::PI0010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0088/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0088/1/" + }, + "dce:identifier": "SDN:R40::PI0088", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0088", + "skos:altLabel": "Jae-Young BYON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jae-Young BYON" + }, + "dc:identifier": "SDN:R40::PI0088", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0261/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0261/1/" + }, + "dce:identifier": "SDN:R40::PI0261", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0261", + "skos:altLabel": "Joaquin TINTORE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Joaquin TINTORE" + }, + "dc:identifier": "SDN:R40::PI0261", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0270/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0270/1/" + }, + "dce:identifier": "SDN:R40::PI0270", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0270", + "skos:altLabel": "Mark MOORE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mark MOORE" + }, + "dc:identifier": "SDN:R40::PI0270", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0032/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0032/1/" + }, + "dce:identifier": "SDN:R40::PI0032", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0032", + "skos:altLabel": "Christine PROVOST", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christine PROVOST" + }, + "dc:identifier": "SDN:R40::PI0032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0206/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0206/1/" + }, + "dce:identifier": "SDN:R40::PI0206", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0206", + "skos:altLabel": "Violeta SLABAKOVA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Violeta SLABAKOVA" + }, + "dc:identifier": "SDN:R40::PI0206", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0279/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0279/1/" + }, + "dce:identifier": "SDN:R40::PI0279", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0279", + "skos:altLabel": "Sergio CAMBRONERO-SOLANO", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sergio CAMBRONERO-SOLANO" + }, + "dc:identifier": "SDN:R40::PI0279", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/2/" + }, + "dce:identifier": "SDN:R40::PI0112", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0112", + "skos:altLabel": "Kjell Arne MORK", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Kjell Arne MORK" + }, + "dc:identifier": "SDN:R40::PI0112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0051/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0051/1/" + }, + "dce:identifier": "SDN:R40::PI0051", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0051", + "skos:altLabel": "Einar SVENDSEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Einar SVENDSEN" + }, + "dc:identifier": "SDN:R40::PI0051", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0223/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0223/1/" + }, + "dce:identifier": "SDN:R40::PI0223", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0223", + "skos:altLabel": "Yu ZHANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yu ZHANG" + }, + "dc:identifier": "SDN:R40::PI0223", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0134/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0134/1/" + }, + "dce:identifier": "SDN:R40::PI0134", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0134", + "skos:altLabel": "Moon-Sik SUK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Moon-Sik SUK" + }, + "dc:identifier": "SDN:R40::PI0134", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0158/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0158/1/" + }, + "dce:identifier": "SDN:R40::PI0158", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0158", + "skos:altLabel": "Ricardo ROJAS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ricardo ROJAS" + }, + "dc:identifier": "SDN:R40::PI0158", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0001/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0001/1/" + }, + "dce:identifier": "SDN:R40::PI0001", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0001", + "skos:altLabel": "Agus ATMADIPOERA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Agus ATMADIPOERA" + }, + "dc:identifier": "SDN:R40::PI0001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0082/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0082/1/" + }, + "dce:identifier": "SDN:R40::PI0082", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0082", + "skos:altLabel": "Holger GIESE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Holger GIESE" + }, + "dc:identifier": "SDN:R40::PI0082", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0073/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0073/1/" + }, + "dce:identifier": "SDN:R40::PI0073", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0073", + "skos:altLabel": "Gregorio PARRILLA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gregorio PARRILLA" + }, + "dc:identifier": "SDN:R40::PI0073", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0009/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0009/1/" + }, + "dce:identifier": "SDN:R40::PI0009", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0009", + "skos:altLabel": "Andy REES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andy REES" + }, + "dc:identifier": "SDN:R40::PI0009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0036/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0036/1/" + }, + "dce:identifier": "SDN:R40::PI0036", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0036", + "skos:altLabel": "Claudia SCHMID", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Claudia SCHMID" + }, + "dc:identifier": "SDN:R40::PI0036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0105/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0105/1/" + }, + "dce:identifier": "SDN:R40::PI0105", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0105", + "skos:altLabel": "Juergen FISHER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Juergen FISHER" + }, + "dc:identifier": "SDN:R40::PI0105", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0091/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0091/1/" + }, + "dce:identifier": "SDN:R40::PI0091", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0091", + "skos:altLabel": "Jari HAAPALA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jari HAAPALA" + }, + "dc:identifier": "SDN:R40::PI0091", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0252/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0252/1/" + }, + "dce:identifier": "SDN:R40::PI0252", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0252", + "skos:altLabel": "Caroline CUSACK", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Caroline CUSACK" + }, + "dc:identifier": "SDN:R40::PI0252", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0056/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0056/1/" + }, + "dce:identifier": "SDN:R40::PI0056", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0056", + "skos:altLabel": "Emmanuel BOSS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emmanuel BOSS" + }, + "dc:identifier": "SDN:R40::PI0056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0213/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0213/1/" + }, + "dce:identifier": "SDN:R40::PI0213", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0213", + "skos:altLabel": "Xavier ANDRE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xavier ANDRE" + }, + "dc:identifier": "SDN:R40::PI0213", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0055/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0055/1/" + }, + "dce:identifier": "SDN:R40::PI0055", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0055", + "skos:altLabel": "Emily OSBORNE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emily OSBORNE" + }, + "dc:identifier": "SDN:R40::PI0055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0152/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0152/1/" + }, + "dce:identifier": "SDN:R40::PI0152", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0152", + "skos:altLabel": "Phil SUTTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Phil SUTTON" + }, + "dc:identifier": "SDN:R40::PI0152", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0140/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0140/1/" + }, + "dce:identifier": "SDN:R40::PI0140", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0140", + "skos:altLabel": "Olaf BOEBEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Olaf BOEBEL" + }, + "dc:identifier": "SDN:R40::PI0140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0259/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0259/1/" + }, + "dce:identifier": "SDN:R40::PI0259", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0259", + "skos:altLabel": "Guillaume LE PROVOST", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Guillaume LE PROVOST" + }, + "dc:identifier": "SDN:R40::PI0259", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0246/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0246/1/" + }, + "dce:identifier": "SDN:R40::PI0246", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0246", + "skos:altLabel": "Andre MENDES", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andre MENDES" + }, + "dc:identifier": "SDN:R40::PI0246", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0126/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0126/1/" + }, + "dce:identifier": "SDN:R40::PI0126", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0126", + "skos:altLabel": "Martin WHITE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Martin WHITE" + }, + "dc:identifier": "SDN:R40::PI0126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0065/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0065/1/" + }, + "dce:identifier": "SDN:R40::PI0065", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0065", + "skos:altLabel": "Franck DUMAS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Franck DUMAS" + }, + "dc:identifier": "SDN:R40::PI0065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/2/" + }, + "dce:identifier": "SDN:R40::PI0102", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0102", + "skos:altLabel": "Jose Luis OCHOA-DE-LA-TORRE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Jose Luis OCHOA-DE-LA-TORRE" + }, + "dc:identifier": "SDN:R40::PI0102", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0099/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0099/1/" + }, + "dce:identifier": "SDN:R40::PI0099", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0099", + "skos:altLabel": "John GILSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "John GILSON" + }, + "dc:identifier": "SDN:R40::PI0099", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0109/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0109/1/" + }, + "dce:identifier": "SDN:R40::PI0109", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0109", + "skos:altLabel": "Kenneth JOHNSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Kenneth JOHNSON" + }, + "dc:identifier": "SDN:R40::PI0109", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0121/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0121/1/" + }, + "dce:identifier": "SDN:R40::PI0121", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0121", + "skos:altLabel": "Louis M PRIEUR", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Louis M PRIEUR" + }, + "dc:identifier": "SDN:R40::PI0121", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Louis Marie Prieur" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0182/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0182/1/" + }, + "dce:identifier": "SDN:R40::PI0182", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0182", + "skos:altLabel": "Stephanie LOUAZEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephanie LOUAZEL" + }, + "dc:identifier": "SDN:R40::PI0182", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0144/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0144/1/" + }, + "dce:identifier": "SDN:R40::PI0144", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0144", + "skos:altLabel": "Pascal CONAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pascal CONAN" + }, + "dc:identifier": "SDN:R40::PI0144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0205/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0205/1/" + }, + "dce:identifier": "SDN:R40::PI0205", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0205", + "skos:altLabel": "Vincent ECHEVIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Vincent ECHEVIN" + }, + "dc:identifier": "SDN:R40::PI0205", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0278/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0278/1/" + }, + "dce:identifier": "SDN:R40::PI0278", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0278", + "skos:altLabel": "Rodrigo TECCHIO", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Rodrigo TECCHIO" + }, + "dc:identifier": "SDN:R40::PI0278", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0023/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0023/1/" + }, + "dce:identifier": "SDN:R40::PI0023", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0023", + "skos:altLabel": "Brian KING", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Brian KING" + }, + "dc:identifier": "SDN:R40::PI0023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0227/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0227/1/" + }, + "dce:identifier": "SDN:R40::PI0227", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0227", + "skos:altLabel": "Yves MOREL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yves MOREL" + }, + "dc:identifier": "SDN:R40::PI0227", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0138/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0138/1/" + }, + "dce:identifier": "SDN:R40::PI0138", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0138", + "skos:altLabel": "Nicolas BARRE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nicolas BARRE" + }, + "dc:identifier": "SDN:R40::PI0138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0249/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0249/1/" + }, + "dce:identifier": "SDN:R40::PI0249", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0249", + "skos:altLabel": "Benjamin RABE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Benjamin RABE" + }, + "dc:identifier": "SDN:R40::PI0249", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0209/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0209/1/" + }, + "dce:identifier": "SDN:R40::PI0209", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0209", + "skos:altLabel": "Walter ZENK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Walter ZENK" + }, + "dc:identifier": "SDN:R40::PI0209", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0052/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0052/1/" + }, + "dce:identifier": "SDN:R40::PI0052", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0052", + "skos:altLabel": "Elena MAURI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Elena MAURI" + }, + "dc:identifier": "SDN:R40::PI0052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0061/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0061/1/" + }, + "dce:identifier": "SDN:R40::PI0061", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0061", + "skos:altLabel": "Femke DE JONG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Femke DE JONG" + }, + "dc:identifier": "SDN:R40::PI0061", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0026/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0026/1/" + }, + "dce:identifier": "SDN:R40::PI0026", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0026", + "skos:altLabel": "Carl SZCZECHOWSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Carl SZCZECHOWSKI" + }, + "dc:identifier": "SDN:R40::PI0026", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0135/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0135/1/" + }, + "dce:identifier": "SDN:R40::PI0135", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0135", + "skos:altLabel": "Nathalie ZILBERMAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nathalie ZILBERMAN" + }, + "dc:identifier": "SDN:R40::PI0135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0162/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0162/1/" + }, + "dce:identifier": "SDN:R40::PI0162", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0162", + "skos:altLabel": "Romain CANCOUET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Romain CANCOUET" + }, + "dc:identifier": "SDN:R40::PI0162", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0035/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0035/1/" + }, + "dce:identifier": "SDN:R40::PI0035", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0035", + "skos:altLabel": "Chunsheng JING", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Chunsheng JING" + }, + "dc:identifier": "SDN:R40::PI0035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0074/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0074/1/" + }, + "dce:identifier": "SDN:R40::PI0074", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0074", + "skos:altLabel": "Gregory C JOHNSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gregory C JOHNSON" + }, + "dc:identifier": "SDN:R40::PI0074", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0057/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0057/1/" + }, + "dce:identifier": "SDN:R40::PI0057", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0057", + "skos:altLabel": "Fabien DURAND", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fabien DURAND" + }, + "dc:identifier": "SDN:R40::PI0057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0165/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0165/1/" + }, + "dce:identifier": "SDN:R40::PI0165", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0165", + "skos:altLabel": "Ryuichi SHIROOKA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ryuichi SHIROOKA" + }, + "dc:identifier": "SDN:R40::PI0165", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0193/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0193/1/" + }, + "dce:identifier": "SDN:R40::PI0193", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0193", + "skos:altLabel": "Tamaryn MORRIS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tamaryn MORRIS" + }, + "dc:identifier": "SDN:R40::PI0193", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0096/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0096/1/" + }, + "dce:identifier": "SDN:R40::PI0096", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0096", + "skos:altLabel": "Jianhua ZHANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jianhua ZHANG" + }, + "dc:identifier": "SDN:R40::PI0096", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0120/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0120/1/" + }, + "dce:identifier": "SDN:R40::PI0120", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0120", + "skos:altLabel": "Liu ZENGHONG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Liu ZENGHONG" + }, + "dc:identifier": "SDN:R40::PI0120", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0092/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0092/1/" + }, + "dce:identifier": "SDN:R40::PI0092", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0092", + "skos:altLabel": "Jean-Baptiste SALLEE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jean-Baptiste SALLEE" + }, + "dc:identifier": "SDN:R40::PI0092", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0020/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0020/1/" + }, + "dce:identifier": "SDN:R40::PI0020", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0020", + "skos:altLabel": "Bo QIU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bo QIU" + }, + "dc:identifier": "SDN:R40::PI0020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0214/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0214/1/" + }, + "dce:identifier": "SDN:R40::PI0214", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0214", + "skos:altLabel": "Xavier CAPET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xavier CAPET" + }, + "dc:identifier": "SDN:R40::PI0214", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0211/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0211/1/" + }, + "dce:identifier": "SDN:R40::PI0211", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0211", + "skos:altLabel": "Weifang JIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Weifang JIN" + }, + "dc:identifier": "SDN:R40::PI0211", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0174/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0174/1/" + }, + "dce:identifier": "SDN:R40::PI0174", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0174", + "skos:altLabel": "Shangping XIE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Shangping XIE" + }, + "dc:identifier": "SDN:R40::PI0174", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0269/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0269/1/" + }, + "dce:identifier": "SDN:R40::PI0269", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0269", + "skos:altLabel": "Maristella BERTA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Maristella BERTA" + }, + "dc:identifier": "SDN:R40::PI0269", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0194/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0194/1/" + }, + "dce:identifier": "SDN:R40::PI0194", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0194", + "skos:altLabel": "Tero PUROKOSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tero PUROKOSKI" + }, + "dc:identifier": "SDN:R40::PI0194", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0041/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0041/1/" + }, + "dce:identifier": "SDN:R40::PI0041", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0041", + "skos:altLabel": "Damien DESBRUYERES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Damien DESBRUYERES" + }, + "dc:identifier": "SDN:R40::PI0041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0124/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0124/1/" + }, + "dce:identifier": "SDN:R40::PI0124", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0124", + "skos:altLabel": "Marcel BABIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Marcel BABIN" + }, + "dc:identifier": "SDN:R40::PI0124", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0024/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0024/1/" + }, + "dce:identifier": "SDN:R40::PI0024", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0024", + "skos:altLabel": "Byunghwan LIM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Byunghwan LIM" + }, + "dc:identifier": "SDN:R40::PI0024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0240/", + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0240/1/" + }, + "dce:identifier": "SDN:R40::PI0240", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0240", + "skos:altLabel": "Esmee VAN WIJK", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Esmee VAN WIJK" + }, + "dc:identifier": "SDN:R40::PI0240", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0044/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0044/1/" + }, + "dce:identifier": "SDN:R40::PI0044", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0044", + "skos:altLabel": "David NICHOLSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "David NICHOLSON" + }, + "dc:identifier": "SDN:R40::PI0044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0179/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0179/1/" + }, + "dce:identifier": "SDN:R40::PI0179", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0179", + "skos:altLabel": "Sorin BALAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sorin BALAN" + }, + "dc:identifier": "SDN:R40::PI0179", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0085/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0085/1/" + }, + "dce:identifier": "SDN:R40::PI0085", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0085", + "skos:altLabel": "Hyun-Suk KANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hyun-Suk KANG" + }, + "dc:identifier": "SDN:R40::PI0085", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0263/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0263/1/" + }, + "dce:identifier": "SDN:R40::PI0263", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0263", + "skos:altLabel": "Lara DIAZ BARROSO", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Lara DIAZ BARROSO" + }, + "dc:identifier": "SDN:R40::PI0263", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0235/", + "pav:authoredOn": "2024-11-11 09:32:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0235/1/" + }, + "dce:identifier": "SDN:R40::PI0235", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0235", + "skos:altLabel": "Stefanie SEMPER", + "dc:date": "2024-11-11 09:32:24.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stefanie SEMPER" + }, + "dc:identifier": "SDN:R40::PI0235", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0285/", + "pav:authoredOn": "2026-02-25 09:10:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0285/1/" + }, + "dce:identifier": "SDN:R40::PI0285", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0285", + "skos:altLabel": "Esther PORTELA RODRIGUEZ", + "dc:date": "2026-02-25 09:10:14.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Esther PORTELA RODRIGUEZ" + }, + "dc:identifier": "SDN:R40::PI0285", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0208/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0208/1/" + }, + "dce:identifier": "SDN:R40::PI0208", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0208", + "skos:altLabel": "Waldemar WALCZOWSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Waldemar WALCZOWSKI" + }, + "dc:identifier": "SDN:R40::PI0208", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0139/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0139/1/" + }, + "dce:identifier": "SDN:R40::PI0139", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0139", + "skos:altLabel": "Nobuyuki SHIKAMA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nobuyuki SHIKAMA" + }, + "dc:identifier": "SDN:R40::PI0139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0053/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0053/1/" + }, + "dce:identifier": "SDN:R40::PI0053", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0053", + "skos:altLabel": "Elodie MARTINEZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Elodie MARTINEZ" + }, + "dc:identifier": "SDN:R40::PI0053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0161/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0161/1/" + }, + "dce:identifier": "SDN:R40::PI0161", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0161", + "skos:altLabel": "Robert WELLER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Robert WELLER" + }, + "dc:identifier": "SDN:R40::PI0161", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0148/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0148/1/" + }, + "dce:identifier": "SDN:R40::PI0148", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0148", + "skos:altLabel": "Peter HACKER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter HACKER" + }, + "dc:identifier": "SDN:R40::PI0148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0170/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0170/1/" + }, + "dce:identifier": "SDN:R40::PI0170", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0170", + "skos:altLabel": "Satoru YOKOI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Satoru YOKOI" + }, + "dc:identifier": "SDN:R40::PI0170", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0018/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0018/1/" + }, + "dce:identifier": "SDN:R40::PI0018", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0018", + "skos:altLabel": "Birgit KLEIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Birgit KLEIN" + }, + "dc:identifier": "SDN:R40::PI0018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0244/", + "pav:authoredOn": "2025-10-08 10:58:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0244/1/" + }, + "dce:identifier": "SDN:R40::PI0244", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0244", + "skos:altLabel": "BaekJo KIM", + "dc:date": "2025-10-08 10:58:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "BaekJo KIM" + }, + "dc:identifier": "SDN:R40::PI0244", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0048/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0048/1/" + }, + "dce:identifier": "SDN:R40::PI0048", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0048", + "skos:altLabel": "Diarmuid O'CONCHUBHAIR", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Diarmuid O'CONCHUBHAIR" + }, + "dc:identifier": "SDN:R40::PI0048", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0003/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0003/1/" + }, + "dce:identifier": "SDN:R40::PI0003", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0003", + "skos:altLabel": "Akira KUWANO-YOSHIDA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Akira KUWANO-YOSHIDA" + }, + "dc:identifier": "SDN:R40::PI0003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0266/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0266/1/" + }, + "dce:identifier": "SDN:R40::PI0266", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0266", + "skos:altLabel": "Louis MARIE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Louis MARIE" + }, + "dc:identifier": "SDN:R40::PI0266", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0027/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0027/1/" + }, + "dce:identifier": "SDN:R40::PI0027", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0027", + "skos:altLabel": "Catherine WOODY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Catherine WOODY" + }, + "dc:identifier": "SDN:R40::PI0027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0097/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0097/1/" + }, + "dce:identifier": "SDN:R40::PI0097", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0097", + "skos:altLabel": "Jianping XU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jianping XU" + }, + "dc:identifier": "SDN:R40::PI0097", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0111/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0111/1/" + }, + "dce:identifier": "SDN:R40::PI0111", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0111", + "skos:altLabel": "KiRyong KANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "KiRyong KANG" + }, + "dc:identifier": "SDN:R40::PI0111", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0058/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0058/1/" + }, + "dce:identifier": "SDN:R40::PI0058", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0058", + "skos:altLabel": "Fabien ROQUET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fabien ROQUET" + }, + "dc:identifier": "SDN:R40::PI0058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0142/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0142/1/" + }, + "dce:identifier": "SDN:R40::PI0142", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0142", + "skos:altLabel": "Oliver ZIELINSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Oliver ZIELINSKI" + }, + "dc:identifier": "SDN:R40::PI0142", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0168/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0168/1/" + }, + "dce:identifier": "SDN:R40::PI0168", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0168", + "skos:altLabel": "Sarah PURKEY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sarah PURKEY" + }, + "dc:identifier": "SDN:R40::PI0168", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0114/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0114/1/" + }, + "dce:identifier": "SDN:R40::PI0114", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0114", + "skos:altLabel": "Koichi ISHIKAWA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Koichi ISHIKAWA" + }, + "dc:identifier": "SDN:R40::PI0114", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0077/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0077/1/" + }, + "dce:identifier": "SDN:R40::PI0077", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0077", + "skos:altLabel": "Heather FUREY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Heather FUREY" + }, + "dc:identifier": "SDN:R40::PI0077", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0250/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0250/1/" + }, + "dce:identifier": "SDN:R40::PI0250", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0250", + "skos:altLabel": "Bieito FERNANDEZ CASTRO", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bieito FERNANDEZ CASTRO" + }, + "dc:identifier": "SDN:R40::PI0250", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0021/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0021/1/" + }, + "dce:identifier": "SDN:R40::PI0021", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0021", + "skos:altLabel": "Boris DEWITTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Boris DEWITTE" + }, + "dc:identifier": "SDN:R40::PI0021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0187/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0187/1/" + }, + "dce:identifier": "SDN:R40::PI0187", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0187", + "skos:altLabel": "Sung-Dae KIM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sung-Dae KIM" + }, + "dc:identifier": "SDN:R40::PI0187", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0272/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0272/1/" + }, + "dce:identifier": "SDN:R40::PI0272", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0272", + "skos:altLabel": "Natalia SHEPEL", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Natalia SHEPEL" + }, + "dc:identifier": "SDN:R40::PI0272", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0039/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0039/1/" + }, + "dce:identifier": "SDN:R40::PI0039", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0039", + "skos:altLabel": "Daigo YANAGIMOTO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Daigo YANAGIMOTO" + }, + "dc:identifier": "SDN:R40::PI0039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0212/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0212/1/" + }, + "dce:identifier": "SDN:R40::PI0212", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0212", + "skos:altLabel": "Wilmar VAN DER ZWET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Wilmar VAN DER ZWET" + }, + "dc:identifier": "SDN:R40::PI0212", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0217/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0217/1/" + }, + "dce:identifier": "SDN:R40::PI0217", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0217", + "skos:altLabel": "Yanfeng WANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yanfeng WANG" + }, + "dc:identifier": "SDN:R40::PI0217", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0175/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0175/1/" + }, + "dce:identifier": "SDN:R40::PI0175", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0175", + "skos:altLabel": "Sheena FENNELL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sheena FENNELL" + }, + "dc:identifier": "SDN:R40::PI0175", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0062/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0062/1/" + }, + "dce:identifier": "SDN:R40::PI0062", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0062", + "skos:altLabel": "Feng ZHOU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Feng ZHOU" + }, + "dc:identifier": "SDN:R40::PI0062", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0231/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0231/1/" + }, + "dce:identifier": "SDN:R40::PI0231", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0231", + "skos:altLabel": "Francisco DOS SANTOS", + "dc:date": "2024-04-25 11:42:03.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Francisco DOS SANTOS" + }, + "dc:identifier": "SDN:R40::PI0231", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0197/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0197/1/" + }, + "dce:identifier": "SDN:R40::PI0197", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0197", + "skos:altLabel": "Thomas PEACOCK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thomas PEACOCK" + }, + "dc:identifier": "SDN:R40::PI0197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0253/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0253/1/" + }, + "dce:identifier": "SDN:R40::PI0253", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0253", + "skos:altLabel": "Celine HEUZE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Celine HEUZE" + }, + "dc:identifier": "SDN:R40::PI0253", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0093/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0093/1/" + }, + "dce:identifier": "SDN:R40::PI0093", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0093", + "skos:altLabel": "Jens MEINCKE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jens MEINCKE" + }, + "dc:identifier": "SDN:R40::PI0093", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0276/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0276/1/" + }, + "dce:identifier": "SDN:R40::PI0276", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0276", + "skos:altLabel": "Povl ABRAHAMSEN", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Povl ABRAHAMSEN" + }, + "dc:identifier": "SDN:R40::PI0276", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0047/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0047/1/" + }, + "dce:identifier": "SDN:R40::PI0047", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0047", + "skos:altLabel": "Detlef QUADFASEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Detlef QUADFASEL" + }, + "dc:identifier": "SDN:R40::PI0047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0284/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0284/1/" + }, + "dce:identifier": "SDN:R40::PI0284", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0284", + "skos:altLabel": "Vincent TAILLANDIER", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Vincent TAILLANDIER" + }, + "dc:identifier": "SDN:R40::PI0284", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0066/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0066/1/" + }, + "dce:identifier": "SDN:R40::PI0066", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0066", + "skos:altLabel": "Fraser DAVIDSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fraser DAVIDSON" + }, + "dc:identifier": "SDN:R40::PI0066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0007/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0007/1/" + }, + "dce:identifier": "SDN:R40::PI0007", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0007", + "skos:altLabel": "Andrea FASSBENDER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andrea FASSBENDER" + }, + "dc:identifier": "SDN:R40::PI0007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0257/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0257/1/" + }, + "dce:identifier": "SDN:R40::PI0257", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0257", + "skos:altLabel": "Fiona CARSE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fiona CARSE" + }, + "dc:identifier": "SDN:R40::PI0257", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0076/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0076/1/" + }, + "dce:identifier": "SDN:R40::PI0076", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0076", + "skos:altLabel": "Guoping GAO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Guoping GAO" + }, + "dc:identifier": "SDN:R40::PI0076", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0171/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0171/1/" + }, + "dce:identifier": "SDN:R40::PI0171", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0171", + "skos:altLabel": "Satoshi MITARAI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Satoshi MITARAI" + }, + "dc:identifier": "SDN:R40::PI0171", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0221/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0221/1/" + }, + "dce:identifier": "SDN:R40::PI0221", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0221", + "skos:altLabel": "Young-Hwa KIM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Young-Hwa KIM" + }, + "dc:identifier": "SDN:R40::PI0221", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0118/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0118/1/" + }, + "dce:identifier": "SDN:R40::PI0118", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0118", + "skos:altLabel": "Laurent COPPOLA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laurent COPPOLA" + }, + "dc:identifier": "SDN:R40::PI0118", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0184/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0184/1/" + }, + "dce:identifier": "SDN:R40::PI0184", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0184", + "skos:altLabel": "Stephen RISER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephen RISER" + }, + "dc:identifier": "SDN:R40::PI0184", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0220/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0220/1/" + }, + "dce:identifier": "SDN:R40::PI0220", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0220", + "skos:altLabel": "Yonghua CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yonghua CHEN" + }, + "dc:identifier": "SDN:R40::PI0220", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0267/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0267/1/" + }, + "dce:identifier": "SDN:R40::PI0267", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0267", + "skos:altLabel": "Louis PRIEUR", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Louis PRIEUR" + }, + "dc:identifier": "SDN:R40::PI0267", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0060/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0060/1/" + }, + "dce:identifier": "SDN:R40::PI0060", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0060", + "skos:altLabel": "Fei CHAI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fei CHAI" + }, + "dc:identifier": "SDN:R40::PI0060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0228/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0228/1/" + }, + "dce:identifier": "SDN:R40::PI0228", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0228", + "skos:altLabel": "Zenghong LIU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Zenghong LIU" + }, + "dc:identifier": "SDN:R40::PI0228", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0167/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0167/1/" + }, + "dce:identifier": "SDN:R40::PI0167", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0167", + "skos:altLabel": "Sang-Boom RYOO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sang-Boom RYOO" + }, + "dc:identifier": "SDN:R40::PI0167", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0098/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0098/1/" + }, + "dce:identifier": "SDN:R40::PI0098", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0098", + "skos:altLabel": "Jianqing ZHOU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jianqing ZHOU" + }, + "dc:identifier": "SDN:R40::PI0098", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0216/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0216/1/" + }, + "dce:identifier": "SDN:R40::PI0216", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0216", + "skos:altLabel": "Xu JIANPING", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xu JIANPING" + }, + "dc:identifier": "SDN:R40::PI0216", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0127/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0127/1/" + }, + "dce:identifier": "SDN:R40::PI0127", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0127", + "skos:altLabel": "Mauricio M MATA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mauricio M MATA" + }, + "dc:identifier": "SDN:R40::PI0127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/2/" + }, + "dce:identifier": "SDN:R40::PI0103", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0103", + "skos:altLabel": "Josep Lluis PELEGRI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Josep Lluis PELEGRI" + }, + "dc:identifier": "SDN:R40::PI0103", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0238/", + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0238/1/" + }, + "dce:identifier": "SDN:R40::PI0238", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0238", + "skos:altLabel": "Craig STEVENS", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Craig STEVENS" + }, + "dc:identifier": "SDN:R40::PI0238", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0149/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0149/1/" + }, + "dce:identifier": "SDN:R40::PI0149", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0149", + "skos:altLabel": "Peter LAZAREVICH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter LAZAREVICH" + }, + "dc:identifier": "SDN:R40::PI0149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0150/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0150/1/" + }, + "dce:identifier": "SDN:R40::PI0150", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0150", + "skos:altLabel": "Peter OKE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter OKE" + }, + "dc:identifier": "SDN:R40::PI0150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0136/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0136/1/" + }, + "dce:identifier": "SDN:R40::PI0136", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0136", + "skos:altLabel": "Nicholas P FOUKAL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nicholas P FOUKAL" + }, + "dc:identifier": "SDN:R40::PI0136", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0203/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0203/1/" + }, + "dce:identifier": "SDN:R40::PI0203", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0203", + "skos:altLabel": "Turki ALRADDADI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Turki ALRADDADI" + }, + "dc:identifier": "SDN:R40::PI0203", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0281/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0281/1/" + }, + "dce:identifier": "SDN:R40::PI0281", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0281", + "skos:altLabel": "Sophie CASITAS", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sophie CASITAS" + }, + "dc:identifier": "SDN:R40::PI0281", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0050/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0050/1/" + }, + "dce:identifier": "SDN:R40::PI0050", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0050", + "skos:altLabel": "Dongliang YUAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dongliang YUAN" + }, + "dc:identifier": "SDN:R40::PI0050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0218/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0218/1/" + }, + "dce:identifier": "SDN:R40::PI0218", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0218", + "skos:altLabel": "Yoichi TANIMOTO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yoichi TANIMOTO" + }, + "dc:identifier": "SDN:R40::PI0218", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0015/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0015/1/" + }, + "dce:identifier": "SDN:R40::PI0015", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0015", + "skos:altLabel": "Bernard BOURLES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bernard BOURLES" + }, + "dc:identifier": "SDN:R40::PI0015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0275/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0275/1/" + }, + "dce:identifier": "SDN:R40::PI0275", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0275", + "skos:altLabel": "Pierre DUTRIEUX", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pierre DUTRIEUX" + }, + "dc:identifier": "SDN:R40::PI0275", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0146/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0146/1/" + }, + "dce:identifier": "SDN:R40::PI0146", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0146", + "skos:altLabel": "Pelle E ROBBINS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pelle E ROBBINS" + }, + "dc:identifier": "SDN:R40::PI0146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0129/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0129/1/" + }, + "dce:identifier": "SDN:R40::PI0129", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0129", + "skos:altLabel": "Miguel SANTOS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Miguel SANTOS" + }, + "dc:identifier": "SDN:R40::PI0129", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0180/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0180/1/" + }, + "dce:identifier": "SDN:R40::PI0180", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0180", + "skos:altLabel": "Stephane BLAIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephane BLAIN" + }, + "dc:identifier": "SDN:R40::PI0180", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0262/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0262/1/" + }, + "dce:identifier": "SDN:R40::PI0262", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0262", + "skos:altLabel": "Jorgen BENDTSEN", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jorgen BENDTSEN" + }, + "dc:identifier": "SDN:R40::PI0262", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0200/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0200/1/" + }, + "dce:identifier": "SDN:R40::PI0200", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0200", + "skos:altLabel": "Tom TRULL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tom TRULL" + }, + "dc:identifier": "SDN:R40::PI0200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/1/" + }, + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/2/" + }, + "dce:identifier": "SDN:R40::PI0183", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0183", + "skos:altLabel": "Steve RINTOUL", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Steve RINTOUL" + }, + "dc:identifier": "SDN:R40::PI0183", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0241/", + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0241/1/" + }, + "dce:identifier": "SDN:R40::PI0241", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0241", + "skos:altLabel": "Felicity MCCORMACK", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Felicity MCCORMACK" + }, + "dc:identifier": "SDN:R40::PI0241", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0282/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0282/1/" + }, + "dce:identifier": "SDN:R40::PI0282", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0282", + "skos:altLabel": "Stephane RAYNAUD", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephane RAYNAUD" + }, + "dc:identifier": "SDN:R40::PI0282", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0186/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0186/1/" + }, + "dce:identifier": "SDN:R40::PI0186", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0186", + "skos:altLabel": "Steven JAYNE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Steven JAYNE" + }, + "dc:identifier": "SDN:R40::PI0186", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0224/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0224/1/" + }, + "dce:identifier": "SDN:R40::PI0224", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0224", + "skos:altLabel": "Yugo SHIMIZU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yugo SHIMIZU" + }, + "dc:identifier": "SDN:R40::PI0224", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0268/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0268/1/" + }, + "dce:identifier": "SDN:R40::PI0268", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0268", + "skos:altLabel": "Malika KHEIREDDINE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Malika KHEIREDDINE" + }, + "dc:identifier": "SDN:R40::PI0268", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0110/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0110/1/" + }, + "dce:identifier": "SDN:R40::PI0110", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0110", + "skos:altLabel": "Kensuke TAKEUCHI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Kensuke TAKEUCHI" + }, + "dc:identifier": "SDN:R40::PI0110", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0137/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0137/1/" + }, + "dce:identifier": "SDN:R40::PI0137", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0137", + "skos:altLabel": "Nick HARDMAN-MOUNTFORD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nick HARDMAN-MOUNTFORD" + }, + "dc:identifier": "SDN:R40::PI0137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0265/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0265/1/" + }, + "dce:identifier": "SDN:R40::PI0265", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0265", + "skos:altLabel": "Laurent MEMERY", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laurent MEMERY" + }, + "dc:identifier": "SDN:R40::PI0265", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0189/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0189/1/" + }, + "dce:identifier": "SDN:R40::PI0189", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0189", + "skos:altLabel": "Susan WIJFFELS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Susan WIJFFELS" + }, + "dc:identifier": "SDN:R40::PI0189", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0031/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0031/1/" + }, + "dce:identifier": "SDN:R40::PI0031", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0031", + "skos:altLabel": "Christine COATANOAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christine COATANOAN" + }, + "dc:identifier": "SDN:R40::PI0031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0178/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0178/1/" + }, + "dce:identifier": "SDN:R40::PI0178", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0178", + "skos:altLabel": "Sophie CRAVATTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sophie CRAVATTE" + }, + "dc:identifier": "SDN:R40::PI0178", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0080/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0080/1/" + }, + "dce:identifier": "SDN:R40::PI0080", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0080", + "skos:altLabel": "Herve CLAUSTRE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Herve CLAUSTRE" + }, + "dc:identifier": "SDN:R40::PI0080", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0113/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0113/1/" + }, + "dce:identifier": "SDN:R40::PI0113", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0113", + "skos:altLabel": "Klaus-Peter KOLTERMANN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Klaus-Peter KOLTERMANN" + }, + "dc:identifier": "SDN:R40::PI0113", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0022/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0022/1/" + }, + "dce:identifier": "SDN:R40::PI0022", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0022", + "skos:altLabel": "Breck OWENS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Breck OWENS" + }, + "dc:identifier": "SDN:R40::PI0022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0034/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0034/1/" + }, + "dce:identifier": "SDN:R40::PI0034", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0034", + "skos:altLabel": "Christophe MAES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christophe MAES" + }, + "dc:identifier": "SDN:R40::PI0034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0063/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0063/1/" + }, + "dce:identifier": "SDN:R40::PI0063", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0063", + "skos:altLabel": "Fengying JI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fengying JI" + }, + "dc:identifier": "SDN:R40::PI0063", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0116/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0116/1/" + }, + "dce:identifier": "SDN:R40::PI0116", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0116", + "skos:altLabel": "Lars STEMMANN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Lars STEMMANN" + }, + "dc:identifier": "SDN:R40::PI0116", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0232/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0232/1/" + }, + "dce:identifier": "SDN:R40::PI0232", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0232", + "skos:altLabel": "Markus JANOUT", + "dc:date": "2024-04-25 11:42:03.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Markus JANOUT" + }, + "dc:identifier": "SDN:R40::PI0232", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0119/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0119/1/" + }, + "dce:identifier": "SDN:R40::PI0119", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0119", + "skos:altLabel": "Lili ZENG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Lili ZENG" + }, + "dc:identifier": "SDN:R40::PI0119", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0273/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0273/1/" + }, + "dce:identifier": "SDN:R40::PI0273", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0273", + "skos:altLabel": "Nathan BRIGGS", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nathan BRIGGS" + }, + "dc:identifier": "SDN:R40::PI0273", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0230/", + "pav:authoredOn": "2023-07-31 13:30:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0230/1/" + }, + "dce:identifier": "SDN:R40::PI0230", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0230", + "skos:altLabel": "Colin STEDMON", + "dc:date": "2023-07-31 13:30:31.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Colin STEDMON" + }, + "dc:identifier": "SDN:R40::PI0230", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0215/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0215/1/" + }, + "dce:identifier": "SDN:R40::PI0215", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0215", + "skos:altLabel": "Xavier CARTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xavier CARTON" + }, + "dc:identifier": "SDN:R40::PI0215", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0151/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0151/1/" + }, + "dce:identifier": "SDN:R40::PI0151", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0151", + "skos:altLabel": "Peter THOMPSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter THOMPSON" + }, + "dc:identifier": "SDN:R40::PI0151", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0030/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0030/1/" + }, + "dce:identifier": "SDN:R40::PI0030", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0030", + "skos:altLabel": "Chris BULL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Chris BULL" + }, + "dc:identifier": "SDN:R40::PI0030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0256/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0256/1/" + }, + "dce:identifier": "SDN:R40::PI0256", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0256", + "skos:altLabel": "Enrico ZAMBIANCHI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Enrico ZAMBIANCHI" + }, + "dc:identifier": "SDN:R40::PI0256", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0233/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0233/1/" + }, + "dce:identifier": "SDN:R40::PI0233", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0233", + "skos:altLabel": "Meike MARTINS", + "dc:date": "2024-04-25 11:42:03.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Meike MARTINS" + }, + "dc:identifier": "SDN:R40::PI0233", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0072/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0072/1/" + }, + "dce:identifier": "SDN:R40::PI0072", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0072", + "skos:altLabel": "Giorgio DALL'OLMO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Giorgio DALL'OLMO" + }, + "dc:identifier": "SDN:R40::PI0072", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0071/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0071/1/" + }, + "dce:identifier": "SDN:R40::PI0071", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0071", + "skos:altLabel": "Gilles REVERDIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gilles REVERDIN" + }, + "dc:identifier": "SDN:R40::PI0071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0154/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0154/1/" + }, + "dce:identifier": "SDN:R40::PI0154", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0154", + "skos:altLabel": "Pierre-Marie POULAIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pierre-Marie POULAIN" + }, + "dc:identifier": "SDN:R40::PI0154", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0100/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0100/1/" + }, + "dce:identifier": "SDN:R40::PI0100", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0100", + "skos:altLabel": "Jon TURTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jon TURTON" + }, + "dc:identifier": "SDN:R40::PI0100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0236/", + "pav:authoredOn": "2024-11-11 09:32:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0236/1/" + }, + "dce:identifier": "SDN:R40::PI0236", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0236", + "skos:altLabel": "Johan SODERQVIST", + "dc:date": "2024-11-11 09:32:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Johan SODERQVIST" + }, + "dc:identifier": "SDN:R40::PI0236", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0075/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0075/1/" + }, + "dce:identifier": "SDN:R40::PI0075", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0075", + "skos:altLabel": "Guillaume MAZE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Guillaume MAZE" + }, + "dc:identifier": "SDN:R40::PI0075", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0013/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0013/1/" + }, + "dce:identifier": "SDN:R40::PI0013", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0013", + "skos:altLabel": "Ariel TROISI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ariel TROISI" + }, + "dc:identifier": "SDN:R40::PI0013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0141/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0141/1/" + }, + "dce:identifier": "SDN:R40::PI0141", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0141", + "skos:altLabel": "Olaf KLATT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Olaf KLATT" + }, + "dc:identifier": "SDN:R40::PI0141", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0157/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0157/1/" + }, + "dce:identifier": "SDN:R40::PI0157", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0157", + "skos:altLabel": "Renske GELDERLOOS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Renske GELDERLOOS" + }, + "dc:identifier": "SDN:R40::PI0157", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0054/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0054/1/" + }, + "dce:identifier": "SDN:R40::PI0054", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0054", + "skos:altLabel": "Emil STANEV", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emil STANEV" + }, + "dc:identifier": "SDN:R40::PI0054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/2/" + }, + "dce:identifier": "SDN:R40::PI0199", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0199", + "skos:altLabel": "Tobias RAMALHO DOS SANTOS FERREIRA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Tobias RAMALHO DOS SANTOS FERREIRA" + }, + "dc:identifier": "SDN:R40::PI0199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0239/", + "pav:authoredOn": "2025-06-27 11:02:01.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0239/1/" + }, + "dce:identifier": "SDN:R40::PI0239", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0239", + "skos:altLabel": "Denise FERNANDEZ", + "dc:date": "2025-06-27 11:02:01.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Denise FERNANDEZ" + }, + "dc:identifier": "SDN:R40::PI0239", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0095/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0095/1/" + }, + "dce:identifier": "SDN:R40::PI0095", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0095", + "skos:altLabel": "Jerome VIALARD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jerome VIALARD" + }, + "dc:identifier": "SDN:R40::PI0095", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0002/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0002/1/" + }, + "dce:identifier": "SDN:R40::PI0002", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0002", + "skos:altLabel": "Akira KUSAKA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Akira KUSAKA" + }, + "dc:identifier": "SDN:R40::PI0002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0037/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0037/1/" + }, + "dce:identifier": "SDN:R40::PI0037", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0037", + "skos:altLabel": "Conall O'MALLEY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conall O'MALLEY" + }, + "dc:identifier": "SDN:R40::PI0037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0271/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0271/1/" + }, + "dce:identifier": "SDN:R40::PI0271", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0271", + "skos:altLabel": "Natalia D'AVILA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Natalia D'AVILA" + }, + "dc:identifier": "SDN:R40::PI0271", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0078/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0078/1/" + }, + "dce:identifier": "SDN:R40::PI0078", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0078", + "skos:altLabel": "Helen PHILLIPS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Helen PHILLIPS" + }, + "dc:identifier": "SDN:R40::PI0078", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0005/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0005/1/" + }, + "dce:identifier": "SDN:R40::PI0005", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0005", + "skos:altLabel": "Alban LAZAR", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Alban LAZAR" + }, + "dc:identifier": "SDN:R40::PI0005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0192/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0192/1/" + }, + "dce:identifier": "SDN:R40::PI0192", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0192", + "skos:altLabel": "Takuya HASEGAWA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Takuya HASEGAWA" + }, + "dc:identifier": "SDN:R40::PI0192", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0274/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0274/1/" + }, + "dce:identifier": "SDN:R40::PI0274", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0274", + "skos:altLabel": "Nicolas KOLODZIEJCZIK", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nicolas KOLODZIEJCZIK" + }, + "dc:identifier": "SDN:R40::PI0274", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0247/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0247/1/" + }, + "dce:identifier": "SDN:R40::PI0247", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0247", + "skos:altLabel": "Andrea DOGLIOLI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andrea DOGLIOLI" + }, + "dc:identifier": "SDN:R40::PI0247", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0008/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0008/1/" + }, + "dce:identifier": "SDN:R40::PI0008", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0008", + "skos:altLabel": "Andreas STERL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andreas STERL" + }, + "dc:identifier": "SDN:R40::PI0008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0195/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0195/1/" + }, + "dce:identifier": "SDN:R40::PI0195", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0195", + "skos:altLabel": "Thierry DELCROIX", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thierry DELCROIX" + }, + "dc:identifier": "SDN:R40::PI0195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0190/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0190/1/" + }, + "dce:identifier": "SDN:R40::PI0190", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0190", + "skos:altLabel": "Sven PETERSEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sven PETERSEN" + }, + "dc:identifier": "SDN:R40::PI0190", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0277/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0277/1/" + }, + "dce:identifier": "SDN:R40::PI0277", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0277", + "skos:altLabel": "Rainer KIKO", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Rainer KIKO" + }, + "dc:identifier": "SDN:R40::PI0277", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0004/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0004/1/" + }, + "dce:identifier": "SDN:R40::PI0004", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0004", + "skos:altLabel": "Alain SERPETTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Alain SERPETTE" + }, + "dc:identifier": "SDN:R40::PI0004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0132/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0132/1/" + }, + "dce:identifier": "SDN:R40::PI0132", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0132", + "skos:altLabel": "Mohomudally BEEBEEJAUN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mohomudally BEEBEEJAUN" + }, + "dc:identifier": "SDN:R40::PI0132", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0198/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0198/1/" + }, + "dce:identifier": "SDN:R40::PI0198", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0198", + "skos:altLabel": "Tmel OGUZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tmel OGUZ" + }, + "dc:identifier": "SDN:R40::PI0198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0045/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0045/1/" + }, + "dce:identifier": "SDN:R40::PI0045", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0045", + "skos:altLabel": "Dean ROEMMICH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dean ROEMMICH" + }, + "dc:identifier": "SDN:R40::PI0045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0040/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0040/1/" + }, + "dce:identifier": "SDN:R40::PI0040", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0040", + "skos:altLabel": "Dake CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dake CHEN" + }, + "dc:identifier": "SDN:R40::PI0040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0173/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0173/1/" + }, + "dce:identifier": "SDN:R40::PI0173", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0173", + "skos:altLabel": "Serguey GLADYSHEV", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Serguey GLADYSHEV" + }, + "dc:identifier": "SDN:R40::PI0173", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/2/" + }, + "dce:identifier": "SDN:R40::PI0122", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0122", + "skos:altLabel": "Luis Felipe SILVA SANTOS", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Luis Felipe SILVA SANTOS" + }, + "dc:identifier": "SDN:R40::PI0122", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0086/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0086/1/" + }, + "dce:identifier": "SDN:R40::PI0086", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0086", + "skos:altLabel": "Inmaculada RUIZ-PARRADO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Inmaculada RUIZ-PARRADO" + }, + "dc:identifier": "SDN:R40::PI0086", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0115/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0115/1/" + }, + "dce:identifier": "SDN:R40::PI0115", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0115", + "skos:altLabel": "Koppillil RADHAKRISHNAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Koppillil RADHAKRISHNAN" + }, + "dc:identifier": "SDN:R40::PI0115", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0204/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0204/1/" + }, + "dce:identifier": "SDN:R40::PI0204", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0204", + "skos:altLabel": "Vincent DUTREUIL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Vincent DUTREUIL" + }, + "dc:identifier": "SDN:R40::PI0204", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0043/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0043/1/" + }, + "dce:identifier": "SDN:R40::PI0043", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0043", + "skos:altLabel": "Daniel BALLESTERO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Daniel BALLESTERO" + }, + "dc:identifier": "SDN:R40::PI0043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0028/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0028/1/" + }, + "dce:identifier": "SDN:R40::PI0028", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0028", + "skos:altLabel": "Cecile CABANES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Cecile CABANES" + }, + "dc:identifier": "SDN:R40::PI0028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0156/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0156/1/" + }, + "dce:identifier": "SDN:R40::PI0156", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0156", + "skos:altLabel": "Rena CZESCHEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Rena CZESCHEL" + }, + "dc:identifier": "SDN:R40::PI0156", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0125/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0125/1/" + }, + "dce:identifier": "SDN:R40::PI0125", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0125", + "skos:altLabel": "Marek STAWARZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Marek STAWARZ" + }, + "dc:identifier": "SDN:R40::PI0125", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0069/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0069/1/" + }, + "dce:identifier": "SDN:R40::PI0069", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0069", + "skos:altLabel": "Gerasimos KORRES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gerasimos KORRES" + }, + "dc:identifier": "SDN:R40::PI0069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0207/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0207/1/" + }, + "dce:identifier": "SDN:R40::PI0207", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0207", + "skos:altLabel": "Virginie THIERRY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Virginie THIERRY" + }, + "dc:identifier": "SDN:R40::PI0207", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0046/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0046/1/" + }, + "dce:identifier": "SDN:R40::PI0046", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0046", + "skos:altLabel": "Denis GILBERT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Denis GILBERT" + }, + "dc:identifier": "SDN:R40::PI0046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0128/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0128/1/" + }, + "dce:identifier": "SDN:R40::PI0128", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0128", + "skos:altLabel": "Michel ARHAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Michel ARHAN" + }, + "dc:identifier": "SDN:R40::PI0128", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/1/" + }, + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/2/" + }, + "dce:identifier": "SDN:R40::PI0145", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0145", + "skos:altLabel": "Pedro VELEZ", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Pedro VELEZ" + }, + "dc:identifier": "SDN:R40::PI0145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pedro VELEZ-BELCHI" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0049/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0049/1/" + }, + "dce:identifier": "SDN:R40::PI0049", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0049", + "skos:altLabel": "Dimitris KASSIS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dimitris KASSIS" + }, + "dc:identifier": "SDN:R40::PI0049", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0181/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0181/1/" + }, + "dce:identifier": "SDN:R40::PI0181", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0181", + "skos:altLabel": "Stephanie CORREARD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephanie CORREARD" + }, + "dc:identifier": "SDN:R40::PI0181", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0160/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0160/1/" + }, + "dce:identifier": "SDN:R40::PI0160", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0160", + "skos:altLabel": "Robert S PICKART", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Robert S PICKART" + }, + "dc:identifier": "SDN:R40::PI0160", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0210/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0210/1/" + }, + "dce:identifier": "SDN:R40::PI0210", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0210", + "skos:altLabel": "Wei FAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Wei FAN" + }, + "dc:identifier": "SDN:R40::PI0210", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0123/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0123/1/" + }, + "dce:identifier": "SDN:R40::PI0123", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0123", + "skos:altLabel": "M RAVICHANDRAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "M RAVICHANDRAN" + }, + "dc:identifier": "SDN:R40::PI0123", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0081/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0081/1/" + }, + "dce:identifier": "SDN:R40::PI0081", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0081", + "skos:altLabel": "Hiroyuki YAMADA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hiroyuki YAMADA" + }, + "dc:identifier": "SDN:R40::PI0081", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0251/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0251/1/" + }, + "dce:identifier": "SDN:R40::PI0251", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0251", + "skos:altLabel": "Camille LIQUE", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Camille LIQUE" + }, + "dc:identifier": "SDN:R40::PI0251", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0164/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0164/1/" + }, + "dce:identifier": "SDN:R40::PI0164", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0164", + "skos:altLabel": "Russ DAVIS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Russ DAVIS" + }, + "dc:identifier": "SDN:R40::PI0164", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0163/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0163/1/" + }, + "dce:identifier": "SDN:R40::PI0163", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0163", + "skos:altLabel": "Rosemary MORROW", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Rosemary MORROW" + }, + "dc:identifier": "SDN:R40::PI0163", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0106/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0106/1/" + }, + "dce:identifier": "SDN:R40::PI0106", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0106", + "skos:altLabel": "Julia UITZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Julia UITZ" + }, + "dc:identifier": "SDN:R40::PI0106", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0084/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0084/1/" + }, + "dce:identifier": "SDN:R40::PI0084", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0084", + "skos:altLabel": "Hubert LOISEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hubert LOISEL" + }, + "dc:identifier": "SDN:R40::PI0084", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0245/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0245/1/" + }, + "dce:identifier": "SDN:R40::PI0245", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0245", + "skos:altLabel": "Alexandre GUERRA", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Alexandre GUERRA" + }, + "dc:identifier": "SDN:R40::PI0245", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0234/", + "pav:authoredOn": "2024-11-11 09:32:24.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0234/1/" + }, + "dce:identifier": "SDN:R40::PI0234", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0234", + "skos:altLabel": "Marius ARTHUN", + "dc:date": "2024-11-11 09:32:24.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Marius ARTHUN" + }, + "dc:identifier": "SDN:R40::PI0234", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0019/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0019/1/" + }, + "dce:identifier": "SDN:R40::PI0019", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0019", + "skos:altLabel": "Blair GREENAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Blair GREENAN" + }, + "dc:identifier": "SDN:R40::PI0019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0166/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0166/1/" + }, + "dce:identifier": "SDN:R40::PI0166", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0166", + "skos:altLabel": "Sabrina SPEICH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sabrina SPEICH" + }, + "dc:identifier": "SDN:R40::PI0166", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0147/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0147/1/" + }, + "dce:identifier": "SDN:R40::PI0147", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0147", + "skos:altLabel": "Peter BRANDT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter BRANDT" + }, + "dc:identifier": "SDN:R40::PI0147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0248/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0248/1/" + }, + "dce:identifier": "SDN:R40::PI0248", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0248", + "skos:altLabel": "Andri RAMDHANI", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andri RAMDHANI" + }, + "dc:identifier": "SDN:R40::PI0248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/1/" + }, + "pav:authoredOn": "2024-04-25 11:42:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/2/" + }, + "dce:identifier": "SDN:R40::PI0087", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0087", + "skos:altLabel": "Isabelle TAUPIER-LETAGE", + "dc:date": "2024-04-25 11:42:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Isabelle TAUPIER-LETAGE" + }, + "dc:identifier": "SDN:R40::PI0087", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0188/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0188/1/" + }, + "dce:identifier": "SDN:R40::PI0188", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0188", + "skos:altLabel": "Sunke SCHMIDTKO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sunke SCHMIDTKO" + }, + "dc:identifier": "SDN:R40::PI0188", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0090/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0090/1/" + }, + "dce:identifier": "SDN:R40::PI0090", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0090", + "skos:altLabel": "Jang-Won SEO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jang-Won SEO" + }, + "dc:identifier": "SDN:R40::PI0090", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0169/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0169/1/" + }, + "dce:identifier": "SDN:R40::PI0169", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0169", + "skos:altLabel": "Sato NAOKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sato NAOKI" + }, + "dc:identifier": "SDN:R40::PI0169", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0011/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0011/1/" + }, + "dce:identifier": "SDN:R40::PI0011", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0011", + "skos:altLabel": "Antje BOETIUS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Antje BOETIUS" + }, + "dc:identifier": "SDN:R40::PI0011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0280/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0280/1/" + }, + "dce:identifier": "SDN:R40::PI0280", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0280", + "skos:altLabel": "Simon QUINIOU", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Simon QUINIOU" + }, + "dc:identifier": "SDN:R40::PI0280", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0014/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0014/1/" + }, + "dce:identifier": "SDN:R40::PI0014", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0014", + "skos:altLabel": "Arne KORTZINGER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Arne KORTZINGER" + }, + "dc:identifier": "SDN:R40::PI0014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0201/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0201/1/" + }, + "dce:identifier": "SDN:R40::PI0201", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0201", + "skos:altLabel": "Tomowo WATANABE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tomowo WATANABE" + }, + "dc:identifier": "SDN:R40::PI0201", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0242/", + "pav:authoredOn": "2025-06-30 16:01:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0242/1/" + }, + "dce:identifier": "SDN:R40::PI0242", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0242", + "skos:altLabel": "Shigeki HOSODA", + "dc:date": "2025-06-30 16:01:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Shigeki HOSODA" + }, + "dc:identifier": "SDN:R40::PI0242", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0155/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0155/1/" + }, + "dce:identifier": "SDN:R40::PI0155", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0155", + "skos:altLabel": "Pritha TUTASI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pritha TUTASI" + }, + "dc:identifier": "SDN:R40::PI0155", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0017/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0017/1/" + }, + "dce:identifier": "SDN:R40::PI0017", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0017", + "skos:altLabel": "Bettina FACH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bettina FACH" + }, + "dc:identifier": "SDN:R40::PI0017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0283/", + "pav:authoredOn": "2026-02-24 11:49:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0283/1/" + }, + "dce:identifier": "SDN:R40::PI0283", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0283", + "skos:altLabel": "Thomas BADEWIEN", + "dc:date": "2026-02-24 11:49:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thomas BADEWIEN" + }, + "dc:identifier": "SDN:R40::PI0283", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0286/", + "pav:authoredOn": "2026-03-16 09:14:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0286/1/" + }, + "dce:identifier": "SDN:R40::PI0286", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0286", + "skos:altLabel": "Candice HALL", + "dc:date": "2026-03-16 09:14:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Candice HALL" + }, + "dc:identifier": "SDN:R40::PI0286", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0196/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0196/1/" + }, + "dce:identifier": "SDN:R40::PI0196", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0196", + "skos:altLabel": "Thierry MOUTIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thierry MOUTIN" + }, + "dc:identifier": "SDN:R40::PI0196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0107/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0130/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0254/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0094/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0176/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0117/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0260/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0225/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0089/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0222/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0258/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0264/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0133/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0159/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0229/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0243/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0237/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0202/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0191/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0219/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0153/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0172/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0255/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0143/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0108/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0131/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0226/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0177/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0088/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0261/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0270/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0206/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0279/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0223/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0134/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0158/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0105/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0091/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0252/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0213/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0152/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0259/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0246/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0109/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0121/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0182/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0205/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0278/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0227/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0249/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0209/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0162/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0074/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0165/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0193/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0120/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0092/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0214/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0211/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0174/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0269/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0194/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0124/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0240/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0179/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0263/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0235/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0285/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0208/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0161/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0170/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0244/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0266/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0111/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0142/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0168/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0114/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0250/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0272/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0212/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0217/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0175/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0231/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0253/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0093/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0276/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0284/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0257/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0171/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0221/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0118/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0184/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0220/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0267/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0228/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0167/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0216/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0238/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0281/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0218/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0275/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0129/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0180/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0262/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0241/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0282/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0186/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0224/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0268/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0110/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0265/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0178/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0113/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0116/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0232/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0119/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0273/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0230/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0215/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0151/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0256/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0233/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0154/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0236/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0141/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0157/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0239/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0271/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0192/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0274/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0247/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0190/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0277/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0132/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0173/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0115/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0204/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0156/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0125/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0207/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0128/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0181/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0160/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0210/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0123/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0251/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0164/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0163/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0106/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0245/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0234/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0166/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0090/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0169/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0280/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0201/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0242/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0155/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0283/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0286/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Principal Investigator (PI) names in charge of Argo floats. Argo netCDF variable PI_NAME is populated by R40 altLabel.", + "dc:title": "Argo Principal Investigator (PI) names", + "skos:prefLabel": "Argo Principal Investigator (PI) names", + "owl:versionInfo": "10", + "dc:date": "2026-03-17 02:00:00.0", + "skos:altLabel": "PI_NAME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PI_NAME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/R41.jsonld b/file_checker_spec/NVS/R41.jsonld new file mode 100644 index 0000000..ba79329 --- /dev/null +++ b/file_checker_spec/NVS/R41.jsonld @@ -0,0 +1,2468 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100037/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100037/1/" + }, + "dce:identifier": "SDN:R41::R4100037", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100037", + "skos:altLabel": "Argo JAMSTEC", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo JAMSTEC" + }, + "dc:identifier": "SDN:R41::R4100037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Japanese Argo program led by JAMSTEC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100033/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100033/1/" + }, + "dce:identifier": "SDN:R41::R4100033", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100033", + "skos:altLabel": "Argo eq. IRELAND", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. IRELAND" + }, + "dc:identifier": "SDN:R41::R4100033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program led by National University of Ireland." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100056/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100056/1/" + }, + "dce:identifier": "SDN:R41::R4100056", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100056", + "skos:altLabel": "Argo SOUTH AFRICA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SOUTH AFRICA" + }, + "dc:identifier": "SDN:R41::R4100056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "South African Argo program led by SEAON - Floats are sponsored by SAEON (South African Environmental Observations Network) and SANAP (South African National Antarctic Program)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100023/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100023/1/" + }, + "dce:identifier": "SDN:R41::R4100023", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100023", + "skos:altLabel": "Argo GABON", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo GABON" + }, + "dc:identifier": "SDN:R41::R4100023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Gabon." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100005/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100005/1/" + }, + "dce:identifier": "SDN:R41::R4100005", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100005", + "skos:altLabel": "Argo BRAZIL Navy", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo BRAZIL Navy" + }, + "dc:identifier": "SDN:R41::R4100005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from the Brazilian Navy." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100058/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100058/1/" + }, + "dce:identifier": "SDN:R41::R4100058", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100058", + "skos:altLabel": "Argo SRI LANKA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SRI LANKA" + }, + "dc:identifier": "SDN:R41::R4100058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Sri Lanka." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100059/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100059/1/" + }, + "dce:identifier": "SDN:R41::R4100059", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100059", + "skos:altLabel": "Argo SWEDEN", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SWEDEN" + }, + "dc:identifier": "SDN:R41::R4100059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Swedish Argo program led by University of Gothenburg." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100071/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100071/1/" + }, + "dce:identifier": "SDN:R41::R4100071", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100071", + "skos:altLabel": "Argo BGC CHINA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo BGC CHINA" + }, + "dc:identifier": "SDN:R41::R4100071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Chinese Argo BGC program led by CSIO." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100047/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100047/1/" + }, + "dce:identifier": "SDN:R41::R4100047", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100047", + "skos:altLabel": "Argo NETHERLANDS", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo NETHERLANDS" + }, + "dc:identifier": "SDN:R41::R4100047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Netherland Argo program led by KNMI." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100070/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100070/1/" + }, + "dce:identifier": "SDN:R41::R4100070", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100070", + "skos:altLabel": "Argo US supplemental", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo US supplemental" + }, + "dc:identifier": "SDN:R41::R4100070", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Supplementary Argo contribution from USA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100014/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100014/1/" + }, + "dce:identifier": "SDN:R41::R4100014", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100014", + "skos:altLabel": "Argo CHILE", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo CHILE" + }, + "dc:identifier": "SDN:R41::R4100014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Chile." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100066/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100066/1/" + }, + "dce:identifier": "SDN:R41::R4100066", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100066", + "skos:altLabel": "Argo WHOI", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo WHOI" + }, + "dc:identifier": "SDN:R41::R4100066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US Argo program led by Woods Hole Oceanographic Institution." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100031/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100031/1/" + }, + "dce:identifier": "SDN:R41::R4100031", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100031", + "skos:altLabel": "Argo INDONESIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo INDONESIA" + }, + "dc:identifier": "SDN:R41::R4100031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indonesian Argo program led by Institute Pertanian Bogor University." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100034/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100034/1/" + }, + "dce:identifier": "SDN:R41::R4100034", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100034", + "skos:altLabel": "Argo IRELAND", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo IRELAND" + }, + "dc:identifier": "SDN:R41::R4100034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Irish Argo program led by Marine Institute." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100028/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100028/1/" + }, + "dce:identifier": "SDN:R41::R4100028", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100028", + "skos:altLabel": "Argo ICBM", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo ICBM" + }, + "dc:identifier": "SDN:R41::R4100028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "German Argo program led by ICBM, University of Oldenburg." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100061/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100061/1/" + }, + "dce:identifier": "SDN:R41::R4100061", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100061", + "skos:altLabel": "Argo UK", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo UK" + }, + "dc:identifier": "SDN:R41::R4100061", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "UK Argo program led by NOC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100003/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100003/1/" + }, + "dce:identifier": "SDN:R41::R4100003", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100003", + "skos:altLabel": "Argo eq. AUSTRALIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. AUSTRALIA" + }, + "dc:identifier": "SDN:R41::R4100003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program led by CSIRO." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100069/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100069/1/" + }, + "dce:identifier": "SDN:R41::R4100069", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100069", + "skos:altLabel": "Argo AOML-NOAA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo AOML-NOAA" + }, + "dc:identifier": "SDN:R41::R4100069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US Argo program led by Atlantic Oceanographic and Meteorological Laboratory of NOAA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100017/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100017/1/" + }, + "dce:identifier": "SDN:R41::R4100017", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100017", + "skos:altLabel": "Argo DENMARK", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo DENMARK" + }, + "dc:identifier": "SDN:R41::R4100017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Danish Argo programme led by DTU." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100024/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100024/1/" + }, + "dce:identifier": "SDN:R41::R4100024", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100024", + "skos:altLabel": "Argo AWI", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo AWI" + }, + "dc:identifier": "SDN:R41::R4100024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "German Argo program led by AWI." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100026/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100026/1/" + }, + "dce:identifier": "SDN:R41::R4100026", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100026", + "skos:altLabel": "Argo eq. UHH", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. UHH" + }, + "dc:identifier": "SDN:R41::R4100026", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program led by IFM." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100045/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100045/1/" + }, + "dce:identifier": "SDN:R41::R4100045", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100045", + "skos:altLabel": "Argo MEXICO", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo MEXICO" + }, + "dc:identifier": "SDN:R41::R4100045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Mexican Argo program led by CICESE." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100049/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100049/1/" + }, + "dce:identifier": "SDN:R41::R4100049", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100049", + "skos:altLabel": "Argo NEW ZEALAND", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo NEW ZEALAND" + }, + "dc:identifier": "SDN:R41::R4100049", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "New-Zealand Argo program led by NIWA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100013/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100013/1/" + }, + "dce:identifier": "SDN:R41::R4100013", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100013", + "skos:altLabel": "Argo eq. CHINA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. CHINA" + }, + "dc:identifier": "SDN:R41::R4100013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program operated by China." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100067/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100067/1/" + }, + "dce:identifier": "SDN:R41::R4100067", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100067", + "skos:altLabel": "Argo UW", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo UW" + }, + "dc:identifier": "SDN:R41::R4100067", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US Argo program led by University of Washington." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100001/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100001/1/" + }, + "dce:identifier": "SDN:R41::R4100001", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100001", + "skos:altLabel": "Argo ARGENTINA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo ARGENTINA" + }, + "dc:identifier": "SDN:R41::R4100001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argentinian Argo program led by SHN and supported by WHOI." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100063/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100063/1/" + }, + "dce:identifier": "SDN:R41::R4100063", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100063", + "skos:altLabel": "Argo eq. UK", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. UK" + }, + "dc:identifier": "SDN:R41::R4100063", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program operated by UK." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100040/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100040/1/" + }, + "dce:identifier": "SDN:R41::R4100040", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100040", + "skos:altLabel": "Argo KENYA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo KENYA" + }, + "dc:identifier": "SDN:R41::R4100040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Kenya." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100002/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100002/1/" + }, + "dce:identifier": "SDN:R41::R4100002", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100002", + "skos:altLabel": "Argo AUSTRALIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo AUSTRALIA" + }, + "dc:identifier": "SDN:R41::R4100002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Australian Argo program, funded by the Commonwealth Scientific and Industrial Research Organization (CSIRO), the Bureau of Meteorology (BoM), the Antarctic Climate and Ecosystems Co-operative Research Centre, University of Tasmania, and cooperating within the Australian Integrated Marine Observing System (IMOS)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100054/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100054/1/" + }, + "dce:identifier": "SDN:R41::R4100054", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100054", + "skos:altLabel": "Argo RUSSIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo RUSSIA" + }, + "dc:identifier": "SDN:R41::R4100054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Russian Argo program led by FERHRI." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100050/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100050/1/" + }, + "dce:identifier": "SDN:R41::R4100050", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100050", + "skos:altLabel": "Argo PERU", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo PERU" + }, + "dc:identifier": "SDN:R41::R4100050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Peru." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100055/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100055/1/" + }, + "dce:identifier": "SDN:R41::R4100055", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100055", + "skos:altLabel": "Argo SAUDI ARABIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SAUDI ARABIA" + }, + "dc:identifier": "SDN:R41::R4100055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Saudi Arabian Argo program led by KAUST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100051/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100051/1/" + }, + "dce:identifier": "SDN:R41::R4100051", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100051", + "skos:altLabel": "Argo POLAND", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo POLAND" + }, + "dc:identifier": "SDN:R41::R4100051", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Polish Argo program led by IOPAN." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100060/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100060/1/" + }, + "dce:identifier": "SDN:R41::R4100060", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100060", + "skos:altLabel": "DEKOSIM", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DEKOSIM" + }, + "dc:identifier": "SDN:R41::R4100060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Turkish Argo program led by ISM-METU - DEKOSIM is an interdisciplinary research project funded by the Turkish Ministry of Development." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100015/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100015/1/" + }, + "dce:identifier": "SDN:R41::R4100015", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100015", + "skos:altLabel": "Argo COLOMBIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo COLOMBIA" + }, + "dc:identifier": "SDN:R41::R4100015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Columbia." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100043/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100043/1/" + }, + "dce:identifier": "SDN:R41::R4100043", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100043", + "skos:altLabel": "Argo LEBANON", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo LEBANON" + }, + "dc:identifier": "SDN:R41::R4100043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Lebanon." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100018/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100018/1/" + }, + "dce:identifier": "SDN:R41::R4100018", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100018", + "skos:altLabel": "Argo ECUADOR", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo ECUADOR" + }, + "dc:identifier": "SDN:R41::R4100018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ecuadorian Argo program led by INOCAR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100004/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100004/1/" + }, + "dce:identifier": "SDN:R41::R4100004", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100004", + "skos:altLabel": "Argo BRAZIL", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo BRAZIL" + }, + "dc:identifier": "SDN:R41::R4100004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Brazilian Argo program - Collaboration between FURG &." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100011/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100011/1/" + }, + "dce:identifier": "SDN:R41::R4100011", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100011", + "skos:altLabel": "Argo CHINA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo CHINA" + }, + "dc:identifier": "SDN:R41::R4100011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Chinese Argo program led by Second Institute of Oceanography." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100008/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100008/1/" + }, + "dce:identifier": "SDN:R41::R4100008", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100008", + "skos:altLabel": "Argo CANADA Dalhousie University", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo CANADA Dalhousie University" + }, + "dc:identifier": "SDN:R41::R4100008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Canadian Argo program led by Dalhousie University (Dal) and Memorial University of Argo Newfoundland (MUN)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100036/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100036/1/" + }, + "dce:identifier": "SDN:R41::R4100036", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100036", + "skos:altLabel": "ITINERIS", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ITINERIS" + }, + "dc:identifier": "SDN:R41::R4100036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Italian Argo program led by CNR and funded under the ITINERIS project." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100032/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100032/1/" + }, + "dce:identifier": "SDN:R41::R4100032", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100032", + "skos:altLabel": "Argo INDIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo INDIA" + }, + "dc:identifier": "SDN:R41::R4100032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indian Argo program led by INCOIS." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100053/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100053/1/" + }, + "dce:identifier": "SDN:R41::R4100053", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100053", + "skos:altLabel": "Argo ROMANIA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo ROMANIA" + }, + "dc:identifier": "SDN:R41::R4100053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Romanian Argo program led by GEOECOMAR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100022/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100022/1/" + }, + "dce:identifier": "SDN:R41::R4100022", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100022", + "skos:altLabel": "Argo eq. FRANCE", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. FRANCE" + }, + "dc:identifier": "SDN:R41::R4100022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program operated by France.Equivalent Argo programs regroup floats contributing to Argo but that are not in the \"global implementation phase\" with respect to the Argo framework at the time of deployment." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100039/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100039/1/" + }, + "dce:identifier": "SDN:R41::R4100039", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100039", + "skos:altLabel": "Argo JMA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo JMA" + }, + "dc:identifier": "SDN:R41::R4100039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Japanese Argo program led by JMA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100007/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100007/1/" + }, + "dce:identifier": "SDN:R41::R4100007", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100007", + "skos:altLabel": "Argo CANADA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo CANADA" + }, + "dc:identifier": "SDN:R41::R4100007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Canadian Argo program led by DFO." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100041/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100041/1/" + }, + "dce:identifier": "SDN:R41::R4100041", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100041", + "skos:altLabel": "Argo KIOST", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo KIOST" + }, + "dc:identifier": "SDN:R41::R4100041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Korean Argo program led by KIOST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100025/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100025/1/" + }, + "dce:identifier": "SDN:R41::R4100025", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100025", + "skos:altLabel": "Argo BSH", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo BSH" + }, + "dc:identifier": "SDN:R41::R4100025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "German Argo program led by BSH." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100021/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100021/1/" + }, + "dce:identifier": "SDN:R41::R4100021", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100021", + "skos:altLabel": "Argo FRANCE", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo FRANCE" + }, + "dc:identifier": "SDN:R41::R4100021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "French Argo program operated by France." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100048/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100048/1/" + }, + "dce:identifier": "SDN:R41::R4100048", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100048", + "skos:altLabel": "Argo NORWAY", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo NORWAY" + }, + "dc:identifier": "SDN:R41::R4100048", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Norvegian Argo program led by IMR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100044/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100044/1/" + }, + "dce:identifier": "SDN:R41::R4100044", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100044", + "skos:altLabel": "Argo MAURITIUS", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo MAURITIUS" + }, + "dc:identifier": "SDN:R41::R4100044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Mauritius." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100029/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100029/1/" + }, + "dce:identifier": "SDN:R41::R4100029", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100029", + "skos:altLabel": "Argo IOW", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo IOW" + }, + "dc:identifier": "SDN:R41::R4100029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "German Argo program led by IOW, Rostock." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100064/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100064/1/" + }, + "dce:identifier": "SDN:R41::R4100064", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100064", + "skos:altLabel": "Argo UKRAINE", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo UKRAINE" + }, + "dc:identifier": "SDN:R41::R4100064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ukrainian Argo program led by UAC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100035/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100035/1/" + }, + "dce:identifier": "SDN:R41::R4100035", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100035", + "skos:altLabel": "Argo ITALY", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo ITALY" + }, + "dc:identifier": "SDN:R41::R4100035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Italian Argo program led by OGS and funded by CNR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100010/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100010/1/" + }, + "dce:identifier": "SDN:R41::R4100010", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100010", + "skos:altLabel": "Argo CANADA ONC", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo CANADA ONC" + }, + "dc:identifier": "SDN:R41::R4100010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Canadian Argo program led by Ocean Networks Canada (ONC)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100065/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100065/1/" + }, + "dce:identifier": "SDN:R41::R4100065", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100065", + "skos:altLabel": "Argo SIO", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SIO" + }, + "dc:identifier": "SDN:R41::R4100065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US Argo program led by Scripps Institution of Oceanography." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100042/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100042/1/" + }, + "dce:identifier": "SDN:R41::R4100042", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100042", + "skos:altLabel": "Argo NIMS/KMA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo NIMS/KMA" + }, + "dc:identifier": "SDN:R41::R4100042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Korean Argo program led by KMA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100016/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100016/1/" + }, + "dce:identifier": "SDN:R41::R4100016", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100016", + "skos:altLabel": "Argo COSTA RICA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo COSTA RICA" + }, + "dc:identifier": "SDN:R41::R4100016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Coasta Rica." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100012/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100012/1/" + }, + "pav:authoredOn": "2026-04-09 11:27:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100012/2/" + }, + "dce:identifier": "SDN:R41::R4100012", + "pav:version": "2", + "skos:notation": "SDN:R41::R4100012", + "skos:altLabel": "Argo Deep CHINA", + "dc:date": "2026-04-09 11:27:03.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo Deep CHINA" + }, + "dc:identifier": "SDN:R41::R4100012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep Argo program led by Laoshan Laboratory in China. It includes the developments and operations of HM4000 and Xuanwu (HM6000) deep floats." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100046/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100046/1/" + }, + "dce:identifier": "SDN:R41::R4100046", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100046", + "skos:altLabel": "Argo MOROCCO", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo MOROCCO" + }, + "dc:identifier": "SDN:R41::R4100046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Contribution to Argo from Morocco." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100020/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100020/1/" + }, + "dce:identifier": "SDN:R41::R4100020", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100020", + "skos:altLabel": "Argo FINLAND", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo FINLAND" + }, + "dc:identifier": "SDN:R41::R4100020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Finish Argo program led by FMI. The aim of the programme is to study the water mass distribution and evolution in the Nordic Seas and the Arctic Ocean and their impacts on the overflow and on the North Atlantic thermohaline circulation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100009/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100009/1/" + }, + "dce:identifier": "SDN:R41::R4100009", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100009", + "skos:altLabel": "Argo eq. CANADA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo eq. CANADA" + }, + "dc:identifier": "SDN:R41::R4100009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Canadian Argo program led by DFO." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100027/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100027/1/" + }, + "dce:identifier": "SDN:R41::R4100027", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100027", + "skos:altLabel": "Argo GEOMAR", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo GEOMAR" + }, + "dc:identifier": "SDN:R41::R4100027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "German Argo program led by Geomar, Kiel." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100052/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100052/1/" + }, + "dce:identifier": "SDN:R41::R4100052", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100052", + "skos:altLabel": "Argo PORTUGAL", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo PORTUGAL" + }, + "dc:identifier": "SDN:R41::R4100052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Portuguese Argo program led by IPMA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100057/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100057/1/" + }, + "dce:identifier": "SDN:R41::R4100057", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100057", + "skos:altLabel": "Argo SPAIN", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo SPAIN" + }, + "dc:identifier": "SDN:R41::R4100057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Spanish Argo program led by IEO and operated by SOCIB." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100030/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100030/1/" + }, + "dce:identifier": "SDN:R41::R4100030", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100030", + "skos:altLabel": "Argo GREECE", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo GREECE" + }, + "dc:identifier": "SDN:R41::R4100030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Greek Argo program led by HCMR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100019/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100019/1/" + }, + "dce:identifier": "SDN:R41::R4100019", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100019", + "skos:altLabel": "Euro-Argo", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Euro-Argo" + }, + "dc:identifier": "SDN:R41::R4100019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "European Argo program led by Euro-Argo." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100038/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100038/1/" + }, + "dce:identifier": "SDN:R41::R4100038", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100038", + "skos:altLabel": "Argo JAPAN", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo JAPAN" + }, + "dc:identifier": "SDN:R41::R4100038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Equivalent Argo program for Japan" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100062/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100062/1/" + }, + "pav:authoredOn": "2026-03-20 15:44:25.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100062/2/" + }, + "dce:identifier": "SDN:R41::R4100062", + "pav:version": "2", + "skos:notation": "SDN:R41::R4100062", + "skos:altLabel": "Argo UK Bio", + "dc:date": "2026-03-20 15:44:25.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo UK Bio" + }, + "dc:identifier": "SDN:R41::R4100062", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "UK Argo BGC program led by NOC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100068/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100068/1/" + }, + "dce:identifier": "SDN:R41::R4100068", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100068", + "skos:altLabel": "Argo PMEL-NOAA", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo PMEL-NOAA" + }, + "dc:identifier": "SDN:R41::R4100068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "US Argo program led by Pacific Marine Environmental Laboratory of NOAA." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100006/", + "pav:authoredOn": "2026-03-19 11:04:26.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100006/1/" + }, + "dce:identifier": "SDN:R41::R4100006", + "pav:version": "1", + "skos:notation": "SDN:R41::R4100006", + "skos:altLabel": "Argo Bulgaria", + "dc:date": "2026-03-19 11:04:26.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo BULGARIA" + }, + "dc:identifier": "SDN:R41::R4100006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bulgarian Argo program led by IO-BAS." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R41/current/R4100068/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Argo floats managed under the same lead agency. A program is bound to one country, one or several agencies with defined roles, and has contact points with defined roles. The same agency can implement multiple programs. Some cases such as EuroArgo (European Research Infrastructure Consortium) use a multinational agency and \"Europe\" as country. Argo netCDF variable PROGRAM_NAME is populated by R41 prefLabel.", + "dc:title": "Argo program name", + "skos:prefLabel": "Argo program name", + "owl:versionInfo": "3", + "dc:date": "2026-04-10 03:00:01.0", + "skos:altLabel": "PROGRAM_NAME", + "dc:creator": "GOOS/OceanOPS Vocabulary Governance", + "dc:alternative": "PROGRAM_NAME", + "rdfs:comment": "Governance for vocabularies managed by the Global Ocean Observing System (GOOS) under OceanOPS (https://www.ocean-ops.org) and hosted on the NERC Vocabulary Server (NVS).", + "grg:RE_RegisterOwner": "GOOS/OceanOPS Vocabulary Governance", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/RD2.jsonld b/file_checker_spec/NVS/RD2.jsonld new file mode 100644 index 0000000..0782cd7 --- /dev/null +++ b/file_checker_spec/NVS/RD2.jsonld @@ -0,0 +1,335 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/8/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/8/1/" + }, + "dce:identifier": "SDN:RD2::8", + "pav:version": "1", + "skos:notation": "SDN:RD2::8", + "skos:altLabel": "8", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated value" + }, + "dc:identifier": "SDN:RD2::8", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated value (interpolated, extrapolated or other estimation)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/2/" + }, + "dce:identifier": "SDN:RD2::9", + "pav:version": "2", + "skos:notation": "SDN:RD2::9", + "skos:altLabel": "9", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Missing Value" + }, + "dc:identifier": "SDN:RD2::9", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Missing value. Data parameter will record FillValue." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/2/" + }, + "dce:identifier": "SDN:RD2::2", + "pav:version": "2", + "skos:notation": "SDN:RD2::2", + "skos:altLabel": "2", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Probably good data" + }, + "dc:identifier": "SDN:RD2::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Delayed-mode evaluation is based on insufficient information. An error estimate is supplied." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/2/" + }, + "dce:identifier": "SDN:RD2::3", + "pav:version": "2", + "skos:notation": "SDN:RD2::3", + "skos:altLabel": "3", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Probably bad data that are potentially adjustable" + }, + "dc:identifier": "SDN:RD2::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An adjustment may (or may not) have been applied, but the value may still be bad. An error estimate is supplied." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/5/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/5/1/" + }, + "dce:identifier": "SDN:RD2::5", + "pav:version": "1", + "skos:notation": "SDN:RD2::5", + "skos:altLabel": "5", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value changed" + }, + "dc:identifier": "SDN:RD2::5", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value changed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/2/" + }, + "dce:identifier": "SDN:RD2::4", + "pav:version": "2", + "skos:notation": "SDN:RD2::4", + "skos:altLabel": "4", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Bad data" + }, + "dc:identifier": "SDN:RD2::4", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Not adjustable. Adjusted data are replaced by FillValue." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/2/" + }, + "dce:identifier": "SDN:RD2::1", + "pav:version": "2", + "skos:notation": "SDN:RD2::1", + "skos:altLabel": "1", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Good data" + }, + "dc:identifier": "SDN:RD2::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No adjustment is needed, or the adjusted value is statistically consistent with good quality reference data. An error estimate is supplied." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/0/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/0/1/" + }, + "dce:identifier": "SDN:RD2::0", + "pav:version": "1", + "skos:notation": "SDN:RD2::0", + "skos:altLabel": "0", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "No QC" + }, + "dc:identifier": "SDN:RD2::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No delayed-mode quality-control (QC) was performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Quality flag scale for delayed-mode measurements. Argo netCDF {param}_ADJUSTED_QC when data_mode='D' are populated by RD2 altLabel, with {param} consisting of R03 altLabels. Associated FillValue is an empty space in Argo NetCDF files. This case can occur, e.g., in Argo multi-cycle files when the maximum number of vertical level is not reached by a cycle, or for levels not concerning a specific sensor, or for sampling schemes not concerning a sensor.", + "dc:title": "Argo delayed-mode quality control measurement flags", + "skos:prefLabel": "Argo delayed-mode quality control measurement flags", + "owl:versionInfo": "1", + "dc:date": "2024-04-19 03:00:08.0", + "skos:altLabel": "DM_QC_FLAG", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "DM_QC_FLAG", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/RP2.jsonld b/file_checker_spec/NVS/RP2.jsonld new file mode 100644 index 0000000..b0db7e8 --- /dev/null +++ b/file_checker_spec/NVS/RP2.jsonld @@ -0,0 +1,289 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/C/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/C/1/" + }, + "dce:identifier": "SDN:RP2::C", + "pav:version": "1", + "skos:notation": "SDN:RP2::C", + "skos:altLabel": "C", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "50% - 75% of profile good" + }, + "dc:identifier": "SDN:RP2::C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 50% (included) and 75% (excluded) of all levels in the profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/E/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/E/1/" + }, + "dce:identifier": "SDN:RP2::E", + "pav:version": "1", + "skos:notation": "SDN:RP2::E", + "skos:altLabel": "E", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "0% - 25% of profile good" + }, + "dc:identifier": "SDN:RP2::E", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 0% (excluded) and 25% (excluded) of all levels in a given profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/D/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/D/1/" + }, + "dce:identifier": "SDN:RP2::D", + "pav:version": "1", + "skos:notation": "SDN:RP2::D", + "skos:altLabel": "D", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "25% - 50% of profile good" + }, + "dc:identifier": "SDN:RP2::D", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 25% (included) and 50% (excluded) of all levels in the profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/F/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/F/1/" + }, + "dce:identifier": "SDN:RP2::F", + "pav:version": "1", + "skos:notation": "SDN:RP2::F", + "skos:altLabel": "F", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "0% of profile good" + }, + "dc:identifier": "SDN:RP2::F", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "0% of all levels in the profile contain good data. This means that all levels are associated with quality control (QC) flags of 3, 4, 6 or 7. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/1/" + }, + "pav:authoredOn": "2025-08-28 11:45:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/2/" + }, + "dce:identifier": "SDN:RP2::N", + "pav:version": "2", + "skos:notation": "SDN:RP2::N", + "skos:altLabel": "N", + "dc:date": "2025-08-28 11:45:51.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "No QC" + }, + "dc:identifier": "SDN:RP2::N", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No quality control (QC) was performed on any of the profile levels." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/B/1/" + }, + "dce:identifier": "SDN:RP2::B", + "pav:version": "1", + "skos:notation": "SDN:RP2::B", + "skos:altLabel": "B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "75% - 100% of profile good" + }, + "dc:identifier": "SDN:RP2::B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 75% (included) and 100% (excluded) of all levels in the profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/A/1/" + }, + "dce:identifier": "SDN:RP2::A", + "pav:version": "1", + "skos:notation": "SDN:RP2::A", + "skos:altLabel": "A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "100% of profile good" + }, + "dc:identifier": "SDN:RP2::A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "100% of all levels in the profile contain good data. This means that all levels are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/E/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/B/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Quality control flag scale for whole profiles. Argo netCDF variables PROFILE_{param}_QC are populated by RP2 altLabel, with {param} consisting of R03 altLabels. Associated FillValue is an empty space in Argo NetCDF files. This case occurs when no QC is performed or no usable flag values are present.", + "dc:title": "Argo profile quality control flags", + "skos:prefLabel": "Argo profile quality control flags", + "owl:versionInfo": "1", + "dc:date": "2025-08-29 03:00:01.0", + "skos:altLabel": "PROF_QC_FLAG", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PROF_QC_FLAG", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/OneArgo/ArgoVocabs" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/file_checker_spec/NVS/dateOfUpdate.txt b/file_checker_spec/NVS/dateOfUpdate.txt new file mode 100644 index 0000000..4225209 --- /dev/null +++ b/file_checker_spec/NVS/dateOfUpdate.txt @@ -0,0 +1 @@ +2026-04-21T09:24:48.256314 \ No newline at end of file diff --git a/file_checker_spec/argo-R03-deprecated-physical_params-spec b/file_checker_spec/argo-R03-deprecated-physical_params-spec new file mode 100644 index 0000000..2757980 --- /dev/null +++ b/file_checker_spec/argo-R03-deprecated-physical_params-spec @@ -0,0 +1,70 @@ +// This table lists attribute/values accepted or deprecated in previous format version of the physical parameter table (The NVS R03 table is the current reference) +//i.e. it lists which param/local_attribute.key/local_attribute.value or param/property.key/property.value pairs +//trigger a warning, are accepted or rejected. + +// columns +// PARAM_NAME | local_attribute.key or property.key | local_attribute.value or property.value | status (reject/warning/pass) | message | versions | deprecation_date +BPHASE_DOXY | long_name | OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR | pass | | [2.2] | 04/04/2018 +BPHASE_DOXY | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +BPHASE_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +C1PHASE_DOXY | category | c | pass | | [2.3,3.0] | 04/04/2018 +C2PHASE_DOXY | valid_min | 10.f | pass | | [2.3,3.0] | 04/04/2018 +C2PHASE_DOXY | valid_max | 70.f | pass | | [2.3,3.0] | 04/04/2018 +C2PHASE_DOXY | category | c | pass | | [2.3,3.0] | 04/04/2018 +CNDC | long_name | ELECTRICAL CONDUCTIVITY | pass | | [2.2,2.3,3.0] | 04/04/2018 +CNDC | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +CNDC | valid_max | 60.f | pass | | [2.2] | 04/04/2018 +CNDC | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +COUNT_DOXY | long_name | COUNT_DOXY | pass | | [2.3] | 04/04/2018 +COUNT_DOXY | long_name | Raw counts reported by sensos such as SBE43 | pass | | [2.2] | 04/04/2018 +COUNT_DOXY | valid_min | 0.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +COUNT_DOXY | valid_max | 100.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +COUNT_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +DOXY | long_name | DISSOLVED OXYGEN | pass | | [2.2,2.3,3.0] | 04/04/2018 +DOXY | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +DOXY | valid_min | 0.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +DOXY | valid_max | 650.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +DPHASE_DOXY | long_name | Calibrated phase shirt reported by sensors such as Aandera Optode | pass | | [2.2] | 04/04/2018 +DPHASE_DOXY | long_name | DPHASE_DOXY | pass | | [2.3] | 04/04/2018 +DPHASE_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +FREQUENCY_DOXY | long_name | FREQUENCY_DOXY | pass | | [2.3] | 04/04/2018 +FREQUENCY_DOXY | long_name | Frequency reported by sensors such as SBE43 | pass | | [2.2] | 04/04/2018 +FREQUENCY_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +MLPL_DOXY | category | c | pass | | [2.3,3.0] | 04/04/2018 +MOLAR_DOXY | long_name | MOLAR_DOXY | pass | | [2.2,2.3] | 04/04/2018 +MOLAR_DOXY | standard_name | Technical value reported by sensors such as Aandera Optode | pass | | [2.2] | 04/04/2018 +MOLAR_DOXY | units | micromole/litre | pass | | [2.2,2.3,3.0] | 04/04/2018 +MOLAR_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +PHASE_DOXY | long_name | Phase shift reported by oxygen sensor | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | units | degree | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | valid_min | 10.f | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | valid_max | 70.f | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | category | c | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | fillValue | 99999. | pass | | [2.3,3.0] | 04/04/2018 +PHASE_DOXY | data_type | float | pass | | [2.3,3.0] | 04/04/2018 +PRES | long_name | SEA PRESSURE | pass | | [2.2,2.3,3.0] | 04/04/2018 +PRES | standard_name | In situ measurement, sea surface = 0 | pass | | [2.2] | 04/04/2018 +PRES_DOXY | long_name | SEA PRESSURE FROM DOXY SENSOR | pass | | [2.2] | 04/04/2018 +PRES_DOXY | long_name | Sea water pressure at the depth of oxygen sampling | pass | | [2.3,3.0] | 04/04/2018 +PRES_DOXY | standard_name | In situ measurement, sea surface = 0 | pass | | [2.2] | 04/04/2018 +PRES_DOXY | units | decibar | pass | | [2.2,2.3,3.0] | 04/04/2018 +PRES_DOXY | valid_min | 0.f | pass | | [2.3,3.0] | 04/04/2018 +PRES_DOXY | valid_max | 12000.f | pass | | [2.3,3.0] | 04/04/2018 +PRES_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +PRES_DOXY | fillValue | 99999. | pass | | [2.2,2.3,3.0] | 04/04/2018 +PRES_DOXY | data_type | float | pass | | [2.2,2.3,3.0] | 04/04/2018 +PSAL | long_name | PRACTICAL SALINITY | pass | | [2.2,2.3,3.0] | 04/04/2018 +PSAL | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +PSAL | valid_min | 0.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +PSAL | valid_max | 42.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +TEMP | long_name | SEA TEMPERATURE IN SITU ITS-90 SCALE | pass | | [2.2,2.3,3.0] | 04/04/2018 +TEMP | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +TEMP | valid_min | -2.f | pass | | [2.2,2.3,3.0] | 04/04/2018 +TEMP_DOXY | long_name | SEA TEMPERATURE FROM DOXY SENSOR (ITS-90 SCALE) | pass | | [2.2,2.3,3.0] | 04/04/2018 +TEMP_DOXY | standard_name | In situ measurement | pass | | [2.2] | 04/04/2018 +TEMP_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 +TPHASE_DOXY | category | c | pass | | [2.3,3.0] | 04/04/2018 +VOLTAGE_DOXY | long_name | VOLTAGE_DOXY | pass | | [2.3] | 04/04/2018 +VOLTAGE_DOXY | long_name | Voltage reported by sensors such as SBE43 | pass | | [2.2] | 04/04/2018 +VOLTAGE_DOXY | category | c | pass | | [2.2,2.3,3.0] | 04/04/2018 diff --git a/file_checker_spec/argo-bio_config_names-spec-v3.1 b/file_checker_spec/argo-bio_config_names-spec-v3.1 deleted file mode 100644 index 03396d6..0000000 --- a/file_checker_spec/argo-bio_config_names-spec-v3.1 +++ /dev/null @@ -1,110 +0,0 @@ -// $Revision: 1184 $ -// $Date: 2020-10-23 17:47:59 +0000 (Fri, 23 Oct 2020) $ - -//CONFIGURATION PARAMETERS TO BE REPORTED IN THE METADATA FILE -// (updated bio-argo 26 Oct 2020) - -//Parameter label proposed name | Parameter definition | Template Values for | Template Values for | Template Values for | Templates Values for numbers | FLOAT TYPE | MANDATORY/OPTIONAL | CHANGEABLE/SET - -CONFIG_DepthZoneDepthZonePressureThreshold_dbar | Threshold between depth zone #N and depth zone #N+1 for (in dbar). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | Depth zone number: = 1..4 | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_DepthZoneSlicesThickness_dbar | Slices thickness for in the depth zone # (in dbar). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | Depth zone number: = 1..5 | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_DescentToParkPresSamplingPeriod_seconds | Sampling period of the during the descent to parking pressure (in seconds). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_DepthZoneSamplingPeriod_seconds | Sampling period of the during in the depth zone # (in minutes). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Depth zone number: = 1..5 | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_DriftAtParkPresSamplingPeriod_minutes | Sampling period of the during the drift at parking pressure (in minutes). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_DescentToProfilePresSamplingPeriod_seconds | Sampling period of the during the descent to profile pressure (in seconds). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_DriftAtProfilePresSamplingPeriod_minutes | Sampling period of the during the drift at profile pressure (in minutes). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_AscentSamplingPeriod_seconds | Sampling period of the during the ascending profile (in seconds). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_DepthZonePowerAcquisitionMode_NUMBER | Power acquisition mode of the in the depth zone # (0 : none, 2 : pulsed, 3 : continuous). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | Depth zone number: = 1..5 | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_PowerAcquisitionMode_NUMBER | Power acquisition mode of the Sensor defined by Input options for CTD (1 : continuous, 2 : pulsed). Input options for Optode (0: none, 1 : continuous, 2 : pulsed). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | | PROVOR ProvBioII, ARVOR Iridium | M (set in the default configuration file) | C -CONFIG_DepthZoneDataProcessingMode_NUMBER | Data processing output of the in the depth zone # (0 : raw, 1 : average, 7 : average/median/standard deviation). | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | | Depth zone number: = 1..5 | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_WarmUpTime_msec | Time, needed after the is powered ON, to provide its first sample (in milli-seconds). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | | PROVOR ProvBioII | M (set in the default configuration file) | S -CONFIG_PowerSwitchDelayMin_msec | Minimum waiting time needed by the between a switch OFF and a switch ON (in milli-seconds). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | | PROVOR ProvBioII | M (set in the default configuration file) | S -CONFIG_FirstValidSample_NUMBER | Rank of the first valid sample provided by the (0 is the rank of the first sample). | Crover, Ctd, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Suna | | | | PROVOR ProvBioII | M (set in the default configuration file) | S -CONFIG_CtdMinTransmittedPressure_dbar | Minimum value of transmitted Ctd pressure measurements (in dbar). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_CtdMaxTransmittedPressure_dbar | Maximum value of transmitted Ctd pressure measurements (in dbar). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_CtdMinTransmittedTemperature_mdegC | Minimum value of transmitted Ctd temperature measurements (in milli-DegC). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_CtdMaxTransmittedTemperature_mdegC | Maximum value of transmitted Ctd temperature measurements (in milli-DegC). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_CtdMinTransmittedSalinity_mpsu | Minimum value of transmitted Ctd salinity measurements (in milli-PSU). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_CtdMaxTransmittedSalinity_mpsu | Maximum value of transmitted Ctd salinity measurements (in milli-PSU). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OptodeMinTransmittedC1Phase_angularDeg | Minimum value of transmitted Optode C1 phase measurements (in degrees). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OptodeMaxTransmittedC1Phase_angularDeg | Maximum value of transmitted Optode C1 phase measurements (in degrees). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OptodeMinTransmittedC2Phase_angularDeg | Minimum value of transmitted Optode C2 phase measurements (in degrees). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OptodeMaxTransmittedC2Phase_angularDeg | Maximum value of transmitted Optode C2 phase measurements (in degrees). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OptodeMinTransmittedBPhase_angularDeg | Minimum value of transmitted Optode B phase measurements (in degrees). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OptodeMaxTransmittedBPhase_angularDeg | Maximum value of transmitted Optode B phase measurements (in degrees). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OptodeMinTransmittedDPhase_angularDeg | Minimum value of transmitted Optode D phase measurements (in degrees). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OptodeMaxTransmittedDPhase_angularDeg | Maximum value of transmitted Optode D phase measurements (in degrees). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OptodeMinTransmittedTemperature_mdegC | Minimum value of transmitted Optode temperature measurements (in milli-DegC). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OptodeMaxTransmittedTemperature_mdegC | Maximum value of transmitted Optode temperature measurements (in milli-DegC). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OcrMinTransmitted_COUNT | Minimum value of transmitted Ocr # measurements (in counts). | | DownIrr, DownRad, UpIrr, UpRad | | = 1..3 | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OcrMaxTransmitted_COUNT | Maximum value of transmitted Ocr # measurements (in counts). | | DownIrr, DownRad, UpIrr, UpRad | | = 1..3 | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OcrMinTransmittedPar_COUNT | Minimum value of transmitted Ocr Photosynthetic Active Radiation measurements (in counts). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_OcrMaxTransmittedPar_COUNT | Maximum value of transmitted Ocr Photosynthetic Active Radiation measurements (in counts). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_MinTransmittedBeta_COUNT | Minimum value of transmitted beta measurements (in counts). | Eco, Flbb | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_MaxTransmittedBeta_COUNT | Minimum value of transmitted beta measurements (in counts). | Eco, Flbb | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_MinTransmittedFluorescence_COUNT | Minimum value of transmitted Fluorescence of measurements (in counts). | Eco, Flbb, Flntu | Cdom, Chla | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_MaxTransmittedFluorescence_COUNT | Minimum value of transmitted Fluorescence of measurements (in counts). | Eco, Flbb, Flntu | Cdom, Chla | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_FlntuMaxTransmittedTurbidity_COUNT | Maximum value of transmitted Flntu turbidity measurements (in counts). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_FlntuMinTransmittedTurbidity_COUNT | Minimum value of transmitted Flntu turbidity measurements (in counts). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_CroverMinTransmittedBeamAttenuation_m^-1 | Minimum value of transmitted Crover beam attenuation measurements (in 1/m). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_CroverMaxTransmittedBeamAttenuation_m^-1 | Maximum value of transmitted Crover beam attenuation measurements (in 1/m). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_SunaDataType_NUMBER | Type of transmitted data from te Suna sensor (0 : nitrate concentration, 1 : Apf frame spectrum). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_SunaMinTransmittedNitrateConcentration_umol/L | Minimum value of transmitted Suna nitrate concentration measurements (in micro-Mol/L). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_SunaMaxTransmittedNitrateConcentration_umol/L | Maximum value of transmitted Suna nitrate concentration measurements (in micro-Mol/L). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_VectorBoardShowModeOn_LOGICAL | Is the vector board show mode ON? (Yes/No). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_SensorBoardShowModeOn_LOGICAL | Is the sensor board show mode ON? (Yes/No). | | | | | PROVOR ProvBioII | M (set in the default configuration file) | C -CONFIG_SunaApfFrameOutputPixelBegin_NUMBER | The Apf frame definition allows for a variable number of spectrometer pixels (also called channels) to be included in the frame. The two pixel values are configured indirectly via the wavelength range of the spectrum to be output (Suna Hardware Manual, section 4.2.3, input/output configuration parameters, data wavelength low/high.) The firmware converts the wavelength values to spectrometer pixels. | | | | | PROVOR ProvBioII | M (if exists) | S -CONFIG_SunaApfFrameOutputPixelEnd_NUMBER | The Apf frame definition allows for a variable number of spectrometer pixels (also called channels) to be included in the frame. The two pixel values are configured indirectly via the wavelength range of the spectrum to be output (Suna Hardware Manual, section 4.2.3, input/output configuration parameters, data wavelength low/high.) The firmware converts the wavelength values to spectrometer pixels. | | | | | PROVOR ProvBioII | M (if exists) | S -CONFIG_VerticalPressureOffset_dbar | vertical pressure offset due to the fact that the sensor is not exactly at the Ctd pressure | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | | | PROVOR ProvBioII | O | S -CONFIG_BetaWavelength_nm | Wavelength of Beta # measurements (in nanometer). | Eco, Flbb | | | Beta number: = 1� | PROVOR ProvBioII | M | S -CONFIG_BetaBandwidth_nm | Bandwidth of Beta # measurements (in nanometer). | Eco, Flbb | | | Beta number: = 1� | PROVOR ProvBioII | O | S -CONFIG_OcrWavelength_nm | Wavelength of Ocr # measurements (in nanometer). | | DownIrr, DownRad, UpIrr, UpRad | | Irradiance or radiance number: = 1..3 | PROVOR ProvBioII | M | S -CONFIG_OcrBandwidth_nm | Bandwidth of Ocr # measurements (in nanometer). | | DownIrr, DownRad, UpIrr, UpRad | | Irradiance or radiance number: = 1..3 | PROVOR ProvBioII | O | S -CONFIG_SunaWithScoop_LOGICAL | Suna with scoop which redirects flow through Suna optics | | | | | PROVOR ProvBioII | M | S -CONFIG_InPumpedStream_LOGICAL | Bio Argo sensors can either be mounted separately to the Ctd or mounted within the Ctd pumped stream. Values: Yes = 1, No = 0 | Crover, Isus | | | | | M | S -CONFIG_NitrateSampling_NUMBER | Nitrate sampling flag. Values:<0:enable; 0:disable; >0:enable and initialize | | | | | | M | S -CONFIG_FlbbSampling_NUMBER | Specifies whether the Flbb instrument is set to sample. Values: Zero disables sampling and nonzero enables sampling. | | | | | | M | S -CONFIG_FluorescenceExcitationWavelength_nm | Wavelength of for excitation of fluorescence measurements (in nanometer) | Cyc, Eco, Flbb, Flntu | Cdom, Chla | | | | O | S -CONFIG_FluorescenceEmissionWavelength_nm | Wavelength of for emission of fluorescence measurements (in nanometer) | Cyc, Eco, Flbb, Flntu | Cdom, Chla | | | | O | S -CONFIG_FluorescenceExcitationBandwidth_nm | Bandwidth of for excitation of fluorescence measurements (in nanometer) | Cyc, Eco, Flbb, Flntu | Cdom, Chla | | | | O | S -CONFIG_FluorescenceEmissionBandwidth_nm | Bandwidth of for emission of fluorescence measurements (in nanometer) | Cyc, Eco, Flbb, Flntu | Cdom, Chla | | | | O | S -CONFIG_CroverBeamAttenuationWavelength_nm | Wavelength of Crover for Beam attenuation measurements (in nanometer) | | | | | | M | S -CONFIG_BetaAngle_angularDeg | Angle of Beta measurements (in degrees) | Eco, Flbb | | | | | O | S -CONFIG_CroverBeamAttenuationBandwidth_nm | Bandwidth of Crover for Beam attenuation measurements (in nanometer) | | | | | | O | S -CONFIG_TurbidityWavelength_nm | Wavelength of for Turbidity measurements (in nanometer) | Flntu, Stm | | | | | O | S -CONFIG_TimePressureOffset_seconds | Time interval between and pressure measurements due to the fact that the answer is not simultaneous with the CTD/pressure answer | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | | | | O | S -CONFIG_IgnoreSamplesWhenPumpActive_LOGICAL | Ignore sample measurements acquired while the hydraulic pump is running. Values: Yes = 1, No = 0 | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | | | | O | -CONFIG_SetClockSensorCard_LOGICAL | When the float Real Time Clock is set, also set the clock of the measurement card. | | | | | PROVOR_IV | O | -CONFIG_DepthZoneDataSynchronizationMode_NUMBER | Data of the can be reported as they have been sampled or synchronized with one CTD parameter (PRES or TEMP or PSAL). The synchronization is done with the timely closest sample of the CTD (see float manual for details). | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Stm, Suna, Sfet | | | Depth zone number: = 1..5 | PROVOR_IV | O | -CONFIG_NumberOfDepthZone_NUMBER | Number of depth zones defined for the sensor while sampling during the phase of the cycle. | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | | PROVOR_IV | O | -CONFIG_DepthZoneStartPres_dbar | Start pressure to define the depth zone # of the sensor while sampling during the phase of the cycle. | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Depth zone number: = 1..NumberOfDepthZone_NUMBER | PROVOR_IV | O | -CONFIG_DepthZoneStopPres_dbar | Stop pressure to define the depth zone # of the sensor while sampling during the phase of the cycle. | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Depth zone number: = 1..NumberOfDepthZone_NUMBER | PROVOR_IV | O | -CONFIG_DepthZoneSamplingPeriod_dbar | Sampling period for the depth zone # of the sensor while sampling during the phase of the cycle. | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Depth zone number: = 1..NumberOfDepthZone_NUMBER | PROVOR_IV | O | -CONFIG_DepthZonePowerAcquisitionMode_NUMBER | Power acquisition mode for the depth zone # of the sensor while sampling during the phase of the cycle. | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Depth zone number: = 1..NumberOfDepthZone_NUMBER | PROVOR_IV | O | -CONFIG_DepthZoneRawDataAcquisition_NUMBER | Number of additional raw data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Depth zone number: = 1..NumberOfDepthZone_NUMBER | PROVOR_IV | O | -CONFIG_DepthZoneNumberOfSubSampling_NUMBER | Number of subsamplings of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Depth zone number: = 1..NumberOfDepthZone_NUMBER | PROVOR_IV | O | -CONFIG_DepthZoneSubSamplingDataProcessingMode_NUMBER | Data processing mode for the subsampling # of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Depth zone number: = 1..NumberOfDepthZone_NUMBER Subsampling: = 1..NumberOfSubSampling_NUMBER | PROVOR_IV | O | -CONFIG_DepthZoneSubSamplingDataProcessingRate_NUMBER | Data processing rate for the subsampling # of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle. | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Depth zone number: = 1..NumberOfDepthZone_NUMBER Subsampling: = 1..NumberOfSubSampling_NUMBER | PROVOR_IV | O | -CONFIG_NumberOfSamplingScheme_NUMBER | Number of sampling schemes defined for the sensor while sampling during the phase of the cycle. | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | | PROVOR_IV | O | -CONFIG_SamplingSchemeStartTime_seconds | Start time to define the sampling scheme # of the sensor while sampling during the phase of the cycle. | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Sampling Scheme: =1�NumberOfSamplingScheme_NUMBER | PROVOR_IV | O | -CONFIG_SamplingSchemeStopTime_seconds | Stop time to define the sampling scheme # of the sensor while sampling during the phase of the cycle. | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Sampling Scheme: =1�NumberOfSamplingScheme_NUMBER | PROVOR_IV | O | -CONFIG_SamplingSchemeSamplingPeriod_seconds | Sampling period of the sampling scheme # of the sensor while sampling during the phase of the cycle. | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Sampling Scheme: =1�NumberOfSamplingScheme_NUMBER | PROVOR_IV | O | -CONFIG_SamplingSchemePowerAcquisitionMode_NUMBER | Power acquisition mode for the sampling scheme # of the sensor while sampling during the phase of the cycle. | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Sampling Scheme: =1�NumberOfSamplingScheme_NUMBER | PROVOR_IV | O | -CONFIG_SamplingSchemeRawDataAcquisition_NUMBER | Number of additional raw data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Sampling Scheme: =1�NumberOfSamplingScheme_NUMBER | PROVOR_IV | O | -CONFIG_SamplingSchemeNumberOfSubSampling_NUMBER | Number of subsamplings of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Sampling Scheme: =1�NumberOfSamplingScheme_NUMBER | PROVOR_IV | O | -CONFIG_SamplingSchemeSubSamplingDataProcessingMode_NUMBER | Data processing mode for the subsampling # of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Sampling scheme: =1�NumberOfSamplingScheme_NUMBER Subsampling: = 1..NumberOfSubSampling_NUMBER | PROVOR_IV | O | -CONFIG_SamplingSchemeSubSamplingDataProcessingRate_NUMBER | Data processing rate for the subsampling # of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle. | Crover, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Sampling scheme: =1�NumberOfSamplingScheme_NUMBER Subsampling: = 1..NumberOfSubSampling_NUMBER | PROVOR_IV | O | -CONFIG_MeasurementsInAir_LOGICAL | Sensors can be mounted on a stick to perform measurements in Air. Values: Yes = 1, No = 0 | Optode | | | | PROVOR | O | S -CONFIG_DepthZoneNumberOfSamples_NUMBER | Number of samples for the depth zone # of the sensor while sampling during the phase of the cycle. | Crover, Ctd, Cyc, Eco, Flbb, Flntu, Ocr, Optode, Sfet, Stm, Suna | | AscentPhase, BuoyancyReductionPhase, DescentToParkPhase, DescentToProfPhase, ParkDriftPhase, ProfDriftPhase, SurfaceDriftPhase | Depth zone number: = 1..NumberOfDepthZone_NUMBER | PROVOR_IV | O | -CONFIG_CpAscentPhaseNumberOfDepthZone_NUMBER | Number of ascent depth zones defined for the sensor used in continuous profiling mode. | Ctd, Sfet | | | | | O | -CONFIG_CpAscentPhaseDepthZoneStartPres_dbar | Start pressure to define the ascent depth zone # of the sensor used in continuous profiling mode. | Ctd, Sfet | | | Depth zone number: = 1..NumberOfDepthZone_NUMBER | | O | -CONFIG_CpAscentPhaseDepthZoneStopPres_dbar | Stop pressure to define the ascent depth zone # of the sensor used in continuous profiling mode. | Ctd, Sfet | | | Depth zone number: = 1..NumberOfDepthZone_NUMBER | | O | -CONFIG_CpAscentPhaseDepthZoneSlicesThickness_dbar | SlicesThickness of the ascent depth zone # of the sensor used in continuous profiling mode. | Ctd, Sfet | | | Depth zone number: = 1..NumberOfDepthZone_NUMBER | | O | -CONFIG_CpAscentPhaseDepthZoneSampleRate_hertz | Sample rate for the ascent depth zone # of the sensor used in continuous profiling mode. | Ctd, Sfet | | | Depth zone number: = 1..NumberOfDepthZone_NUMBER | | O | -CONFIG_CpAscentPhaseDepthZoneSamplingPeriod_seconds | Sampling period for the ascent depth zone # of the sensor used in continuous profiling mode. | Ctd, Sfet | | | Depth zone number: = 1..NumberOfDepthZone_NUMBER | | O | -CONFIG_InAirMeasurementNumberOfSamples_NUMBER | Number of measurements sampled before and after inflating the air bladder for the sensor during the in air measurement phase. | Optode | | | | | O | -CONFIG_InAirMeasurementSamplingPeriod_seconds | Sampling period for the sensor during the in air measurement phase. | Ctd, Eco, Ocr, Optode, Sfet, Suna, Crover | | | | | O | -CONFIG_SfetMinTransmittedVrsPh_volts | Minimum value of transmitted Vrs_pH measurements (in volts). | | | | | | O | -CONFIG_SfetMaxTransmittedVrsPh_volts | Maximum value of transmitted Vrs_pH measurements (in volts). | | | | | | O | -CONFIG_OptodeVerticalPressureOffset_dbar | Vertical pressure offset of the optode sensor | | | | | | O | -CONFIG_Optode2VerticalPressureOffset_dbar | Vertical pressure offset of the secondary optode sensor | | | | | | O | diff --git a/file_checker_spec/argo-core_config_names-spec-v3.1 b/file_checker_spec/argo-core_config_names-spec-v3.1 deleted file mode 100644 index ad5affa..0000000 --- a/file_checker_spec/argo-core_config_names-spec-v3.1 +++ /dev/null @@ -1,259 +0,0 @@ -// $Revision: 1184 $ -// $Date: 2020-10-23 17:47:59 +0000 (Fri, 23 Oct 2020) $ - -//CONFIGURATION PARAMETERS TO BE REPORTED IN THE METADATA FILE -// (updated core-argo 02 Jul 2020) - -//"[Please note that for all configuration parameters the units are flexible, i.e. for the parameter CONFIG_AscentSpeed the units could be in mm/s or cm/s depending on the float type - as long as the units adhere to the standard unit definitions as described for the technical files.]" | | "mandatory, if applicable" | highly desirable | -//"Pre-deployment / launch configuration parameters are reported in the launch configuration section of the metafile, this includes the subset of parameters that do not change for the life of the float. The subset of configuration parameters that change for each mission are reported in the mission configuration section of the metafile." | | | | -//"PLEASE NOTE that the units for all configuration parameters are interchangeable, i.e. both CONFIG_ConnectionTimeOut_minutes and CONFIG_ConnectionTimeOut_seconds are acceptable" | | | | - -//Configuration Variable Name | Explanation | Mandatory/Optional | Comment/Action | Float Type - -CONFIG_InverseGain_COUNT | " = PRES, PSAL or TEMP. Inverse of the gain used to pack the P, T and S data, changeable via 2-way communications." | O | changeable | SOLO-II -CONFIG_Offset_COUNT | " = PRES, PSAL or TEMP. Offset used to pack the P, T and S data, changeable via 2-way communications. " | O | changeable | SOLO-II -CONFIG_AscentAdjustmentToBuoyancy_seconds | "commonly cited as 'buoyancy nudge', this controls the ascent rate, units could be COUNT or whatever is reported, i.e. for SOLOII it is seconds pump is run to adjust float rise rate on ascent." | O | changeable? | APEX APF9 -CONFIG_AscentEndThreshold_dbar | Threshold used by the float to stop ascent speed control and pump actions. | O | | ARVOR Iridium -CONFIG_AscentSamplingPeriod_seconds | Sampling period during the ascending profile (in seconds). | O | | -CONFIG_AscentSpeed_mm/s | ascent speed during upcast (can be used to estimate the profile duration). | "M if exists?, O" | changeable | "NEMO(Iridium), SOLO" -CONFIG_AscentSpeedFactor_NUMBER | This factor defines the speed of the ascent phase (between 0: nominal speed and 5: lowest speed). | O | | PROVOR -CONFIG_AscentSpeedMin_mm/s | Float minimum ascent speed before activating the pump. | O | | -CONFIG_AscentSpeedStartPressureThresholdForSlowPhase_dbar | Pressure threshold to start the slow ascent speed phase. | O | | PROVOR -CONFIG_AscentTime_hours | preset duration of ascent | "M if exists?, O" | note - have changed 'interval' to 'duration' to be more explanatory and consistent with other variables | APEX -CONFIG_AscentToSurfaceTimeOut_hours | maximum time a float will try to reach its target depth (surface) before aborting this step | "M if exists?, O for others" | | "APEX, APEX APF9, NINJA, SOLO, SOLOII" -CONFIG_AscentVerticalThresholdForBuoyancyAction_dbar | "If the float vertical motion, during CONFIG_PressureCheckTimeAscent_minutes, is less than this threshold, the float makes buoyancy adjustments." | O | | ARVOR Iridium -CONFIG_BitMaskMonthsIceDetectionActive_NUMBER | This parameter indicates for which months the ice detection algorithm is active. The bit mask is input as a 3 digit hexadecimal value in the mission file sent to the float. This parameter in the metadata file however is the decimal number of that hexadecimal value. For example for the Southern Hemisphere the default position is to have the ice detection algorithm active for all months except February. (The hexadecimal value in the mission file is 'FFD' and the number for the configuration parameter in the metafile would be 4093). The northern hemisphere default would be all months active except for August. In this case the hexadecimal value is 'F7F' and the number in the configuration parameter in the metafile would be 3967). | O | changeable | "APEX, SOLO, others.." -CONFIG_BitMaskMonthsIceEvasionActive_NUMBER | When is ice evasion active - months in reverse order. This is a parameter for AC1 which provides the months it should be used. | | | PROVOR -CONFIG_BuoyancyMinimum_COUNT | "The minimum allowable buoyancy position in counts, overriding any other count setting. This configuration parameter prevents the movement of oil from the oil compartment of the bladder into the oil reservoir at the specified count to manage the maximum depth of a descent. In general CONFIG_BuoyancyMinimum_COUNT should be set less than the CONFIG_PistonProfile_COUNT." | O | | APEX APF11 -CONFIG_BuoyancyNudgeToPark_COUNT | The number of counts to change the piston position from its current position in the direction that will bring the float closer to the Park depth. It is applied after three successive pressure samples that are outside the dead band specified by CONFIG_PressureTargetToleranceDuringDrift_dbar. | O | | APEX APF11 -CONFIG_BuoyancyReductionFirstThreshold_dbar | First threshold of the buoyancy reduction phase (see float manual for explanations). | O | | PROVOR -CONFIG_BuoyancyReductionSecondThreshold_dbar | Second threshold of the buoyancy reduction phase (see float manual for explanations). | O | | PROVOR -CONFIG_ClockAscentEndTimeProfile1_HHMM | Profiler configuration - Ascent end time - Profile 1 | O | the expected time at the surface of Profile 1 | -CONFIG_ClockAscentEndTimeProfile2_HHMM | Profiler configuration - Ascent end time - Profile 2 | O | the expected time at the surface of Profile 2 | -CONFIG_ClockAscentEndTimeProfile3_HHMM | Profiler configuration - Ascent end time - Profile 3 | O | the expected time at the surface of Profile 3 | -CONFIG_ClockAscentStart_minutes | "Preset time to start ascent profile, if units = MINUTES (in minutes past midnight), if units = HH (24 hour clock)" | O | "potentially phase determining, phase 0 if never changed" | ? -CONFIG_ClockPresetStartCycle_LOGICAL | Cycle to start at a preset time 0: Disabled; 1: Enabled | O | "potentially phase determining, phase 0 if never changed" | ? -CONFIG_ClockStartCycle_minutes | "preset time to start the cycle, minutes after midnight" | O | "potentially phase determining, phase 0 if never changed" | NEMO(Iridium) -CONFIG_CompensatorHyperRetraction_COUNT | setting for the compensator hyper-retraction | O | phase 0 | APEX APF9 -CONFIG_ConnectionFailureTimeOut_minutes | Is the maximum time allowed for the float to connect to the RUDICS server; i.e. it tries to connect during 30 minutes (values set for these floats) if it fails it is probably because it is under ice (that has not been detected by ISA or hanging algorithms). | | | -CONFIG_ConnectionInitialTimeOut_seconds | Connection time out allowed for initial connection to teh RUDICS server - i.e. is the maximum time allowed for the float to connect to the RUDICS server; i.e. it tries to connect during 30 minutes (values set for these floats) if it fails it is probably because it is under ice (that has not been detected by ISA or hanging algorithms). | O | | APEX APF11 -CONFIG_ConnectionTimeOut_seconds | "Connection time-out, i.e. maximum transmission period for one telemetry session (an example: for this float version it is the maximum duration of the RUDICS session; for example if the RUDICS session lasts more that 2 hours (value set for these floats which are ice floats which may have stored cycles to transmits) the float disconnects and starts a new deep cycle (the remaining stored data will be transmitted next transmission session)." | O | | APEX APF9i -CONFIG_CPActivationPressure_dbar | CP Activation Pressure | O | | -CONFIG_CTDPumpStopPressure_dbar | "The pressure at which the CTD pump is switched off. As the float ascends, the code looks at the pressure and if <= CONFIG_CTDPumpStopPressure, the CTD is turned off. CTDPumpStopPressure is a firmware threshold and as such, data may continue to be collected for a limited span after the threshold is recognized. Especially in floats that return high resolution discrete data, there might be data collected shallower than the cut off, due to the discrete nature of the pressure data and also due to the time necessary for the firmware to turn off the CTD once the pressure threshold is reached. For example for SOLOII floats the CTD is switched off at 1dbar, and typically the shallowest data is from 0.5 to 0.8 dbar. This shallow data should be carefully assessed for its validity." | O | | "PROVOR, ARVOR, SOLO II" -CONFIG_CTDPumpStopPressureOffset_dbar | "The pressure in decibars added to the most recently measured pressure at the surface, the sum of which is the pressure at which the conductivity, temperature and pressure sampling stops for a pumped type CTD. It is also the pressure at which the Surface phase begins." | O | | APEX APF11 -CONFIG_CTDPumpStopPressurePlusThreshold_dbar | "The sum of CONFIG_CTDPumpStopPressure_dbar plus a pressure threshold or overlap (Poverlap). For PROVOR floats, Poverlap is defined as follows: Poverlap = bin_size/2 for PROVOR floats with software versions < 5816A00 and ARVOR floats with software versions < 5605A00. Poverlap = 0.5 dbar for PROVOR floats with software versions >= 5816A00 and ARVOR floats with software versions >=5605A00." | O | | "PROVOR, ARVOR, SOLO II" -CONFIG_CycleTime_hours | "For APEX and ARVOR floats this is the total duration of one cycle, usually 240 hours (10 days). For SOLO floats this is the total duration of one cycle, assuming that all float operations reach their full time-out intervals before moving to the next float stage. Typically the actual cycle time will be shorter than this value." | "M, if applies" | | "APEX, APEX APF9, NINJA, NEMO(Iridium), PROVOR, ARVOR, POPS, SOLO, SOLOII, Isopycnal Park APEX" -CONFIG_DebugBits_NUMBER | Awaiting clarification. A request is in with Webb for more information | O | | -CONFIG_DeepestPressureAscendingProfile_dbar | deepest pressure sampled in the ascending profile - example 2000 for a profile starting at 2000 dbar | O | "clarification sought - does this differ from profile pressure? If not, delete this variable" | "possbily APEX APF9, NEMO(Iridium)" -CONFIG_DeepestPressureDescendingProfile_dbar | deepest pressure sampled in the descending profile - example 500 for a profile ending at 500 dbar | O | "clarification sought - does this differ from profile pressure? If not, delete this variable" | APEX -CONFIG_DeepProfileFirstFloat_LOGICAL | "Some APEX floats are set to do a ""profile on deployment"". This means that when the float is deployed it skips the drift phase at the PARKING depth and sinks directly to the PROFILE depth and starts ascending for the first profile. Independent of the Park and Profile cycle length, the first profile is always a Deep Profile that begins at the Profile Depth. This means the float returns a CTD profile relatively soon, typically less than a day, after the float is deployed. This feature supports comparison of the -initial float profile with a conventional CTD cast from the ship. The result is that the first cycle is of shorter duration with a profile depth equal to PROFILE configuration pressure (regardless of the CONFIG_ParkAndProfileCycleCounter_COUNT configuration information). (Yes = 1, No = 0)." | O | | "APEX, PROVOR" -CONFIG_DelayBeforeMissionStart_minutes | Float waiting period before the first cycle of its mission (in minutes). | | | -CONFIG_DepthTable_NUMBER | Depth table number for profiler sampling pressures | O | phase 0 | APEX -CONFIG_DescentAdjustmentToBuoyancy_seconds | "Commonly cited as 'buoyancy nudge', this controls the descent rate, units could be COUNT or whatever is reported, i.e. for SOLOII it is seconds pump is run to adjust float descent rate from drift depth to profile depth. The SOLO-II floats are ballasted for profile depth, if the floats are poorly ballasted, float will descend quite fast to profile depth. The more pumping that is done at 1000db that is unnecessary at 2000db will save energy and it can be used as an energy saving measure. Occasionally this means the float will stop short of profile depth but won't have grounded. " | O | | -CONFIG_DescentSpeed_mm/s | Descent speed during downcast (can be used to estimate the time to descent from parking pressure to profile pressure) | "M, if applies, O for others" | changeable | NEMO(Iridium) -CONFIG_DescentSpeedMin_mm/s | Float minimum descent speed before activating the valve. | O | | PROVOR -CONFIG_DescentToParkPresSamplingTime_seconds | Sampling period during the descent to parking pressure (in seconds). | | | -CONFIG_DescentToParkTimeOut_hours | maximum time a float will try to reach its target depth (park) before aborting this step | "M if exists?, O for others" | | "APEX, APEX APF9, SOLO, SOLOII" -CONFIG_DescentToProfTimeOut_hours | maximum amount of time allowed for the float to descend to Profile pressure from Park pressure | "M if exists?, O for others" | this variable should cover 'DELAI parameter required for tajectory processing | "APEX, APEX APF9, SOLO, SOLOII" -CONFIG_DescentVerticalThresholdForBuoyancyAction_dbar | "If the float vertical motion, during CONFIG_PressureCheckTimeDescent_minutes, is less than this threshold, the float makes buoyancy adjustments." | O | | ARVOR Iridium -CONFIG_Direction_NUMBER | "Ascending = 1, Descending = 2, Ascending and Descending = 3" | M | | "APEX, APEX APF9, NINJA, NEMO(Iridium), PROVOR, ARVOR, POPS, SOLO, SOLOII, Isopycnal Park APEX, some NOVA floats measure both ascending and descending" -CONFIG_DownTime_hours | preset duration of the down time (start of descent to start of ascent) - changed from : CONFIG_DownTimeInterval_hours and CONFIG_DownTimeOut | "M if exists?, O" | important for trajectory files | "APEX, NINJA" -CONFIG_DownTimeAutumnWinter_hours | preset duration of the down time (start of descent to start of ascent) specific to theautumn/winter period | O | changeable | -CONFIG_DownTimeExpiryTimeOfDay_minutes | "a time out value (time of day, i.e. in minutes past midnight) for expiration of the down time" | O | | -CONFIG_DownTimeSpringSummer_hours | preset duration of the down time (start of descent to start of ascent) specific to the spring/summer period | O | changeable | -CONFIG_EmergencyModeWaterLeakDetection_LOGICAL | "If set to ""yes"", the float will transition to the Emergency mode upon detection of an internal water leak. If set to ""no"", the float will only log the condition to the system_log.txt file." | O | | APEX APF11 -CONFIG_FirstBuoyancyNudge_COUNT | test message data - initial buoyancy nudge which is used at both the beginning and end of the profile | O | phase 0 | APEX APF9 -CONFIG_FloatReferenceDay_FloatDay | "Profiler configuration - Reference day, for PROVOR and ARVOR floats this is: The day number on which the first profile is to be made. The day when the mission starts is zero." | O | phase 0 | "APEX, PROVOR, ARVOR" -CONFIG_GPSAcquisitionEndCycle_LOGICAL | The float performs a GPS session to acquire a GPS fix at the end of the cycle (Yes=1/No=0). | O | | PROVOR -CONFIG_GPSAcquisitionEndOfLife_LOGICAL | The float performs a GPS session to acquire a GPS fix in each End Of Life transmission (Yes=1/No=0). | O | | PROVOR -CONFIG_GPSImprovedLocation_LOGICAL | "Use the GPS improved location mode. This mode can be used when the float altitude is 0 meter, it provides better locations." | O | | PROVOR -CONFIG_GPSSetClock_LOGICAL | Set the float Real Time Clock with GPS time. | O | To disable float clock set from GPS time when at surface. | PROVOR -CONFIG_GPSSetClockSensorCard_LOGICAL | "When the float Real Time Clock is set, also set the clock of the measurement card." | | JP Comments: Don't know how to name the CTS5 electronic cards (there is one card for the float and the CTD and one for the Bio sensors). Esmee comments: JP this was labelled as GPS - is it appropriate to put GPS in front of original proposed name? | PROVOR -CONFIG_GPSTimeout_seconds | Timeout for GPS acquisition. | O | | NOVA/DOVA -CONFIG_GroundingMode_LOGICAL | "Action performed by the float when a grounding is detected. 0: the float changes its drift pressure, 1: the float stays on the seabed until the next phase of the cycle. For PROVOR CTS5 the number assigned to each mode has changed - see float manual for details for this model." | O | | -CONFIG_GroundingModeDeepZoneThickness_dbar | "In case of grounding during the ""descent to profile depth"" phase, this parameter (PM18 in float user manual) defines the thickness of a new deep zone (from profile start pressure) for the purpose of data reduction. The thickness of the slices is 1 dbar in this zone. Should be set to 0 to disable this function." | | | -CONFIG_GroundingModeForProfileDepth_NUMBER | "Action performed by the float when a grounding is detected during descent to profile depth. For PROVOR CTS5 floats: 2: the float stays on the seabed until the ascent start time, 3: the ascent starts immediately." | O | In this float version the actions to be performed when a grounding is detected at parking depth (stored in CONFIG_GroundingMode_NUMBER) or at profile depth (stored in CONFIG_GroundingModeForProfileDepth_NUMBER) may differ. Consequently we need 2 configuration parameters. | PROVOR -CONFIG_GroundingModeMinPresThreshold_dbar | "If in grounding mode 0, the float changes its drift pressure only if its current pressure is greater than this value." | O | | -CONFIG_GroundingModePresAdjustment_dbar | "If in grounding mode 0, the float changes its drift pressure to its programmed one minus this value only if its current pressure is greater than this value." | O | | -CONFIG_HangingMode_NUMBER | Action performed by the float when a hanging is detected (see float manual for details). [JP additional comments on behaviour for PROVOR floats: The hanging mode is the same idea as the grounding mode but for an ascent phase. When the float detects a too low vertical motion after having activated its pump to try to ascend it enters in a hanging mode (it is probably stuck at the sea floor). This parameter configures (with the same idea as CONFIG_GroundingMode_NUMBER for grounding) what should be the actions to perform to try to escape from hanging (it can activate its pump and valve alternatively to try to escape or abandon the ascent and switch to the next scheduled task]. | O | | PROVOR -CONFIG_HydraulicDataTransmission_LOGICAL | "The float transmits hydraulic data at the end of the cycle. The float records the pump/valve actions (time, pressure, duration); these data can be transmitted (or not) in specific SBD messages through a remote control command. Input: (Yes=1/No=0)." | O | | ARVOR Iridium -CONFIG_HyperRetractionStopPressure_dbar | "For Apex APF11 Iridium floats, Hyper Retraction is used to pull in an amount of oil to temporarily increase a float�s density as it leaves the ocean surface. The result of the increased float density allows a float to move through a mixed density layer more easily or allows a float to descend at a faster rate. In particular, the HyperRetractPressure is the pressure that the float uses to restore the piston back to the ParkDescentCount." | O | | APEX APF11 -CONFIG_IceDetection_degC | Ice temperature in [degree Celsius/1e3] where profiles are aborted because of ice formation conditions | M if applies | | "APEX, APEX APF9, APEX APF9i, NEMO(Iridium)" -CONFIG_IceDetectionAcousticStartPressureThreshold_dbar | Pressure threshold to start the acoustic ice detection test. | M if applies | "[JP additional comments: Concerning ice detection and avoidance, this float uses 3 algorithms:- AC1: it stops profiles at a given depth for given months in the year- ISA: the (well known) ISA algorithm which determines possible ice coverage from TEMP (and PSAL in this case) measurements- AID: the Acoustic Ice Detection which used an acoustic altimeter to detect ice at sea surface]." | PROVOR -CONFIG_IceDetectionAscentVerticalThresholdForBuoyancyAction_dbar | Similar to CONFIG_AscentVerticalThresholdForBuoyancyAction_dbar but for a float in ice detection mode. | O | | "PROVOR, ARVOR" -CONFIG_IceDetectionConnectionTimeOut_minutes | Similar to CONFIG_ConnectionTimeOut_minutes but for the first telemetry session of a float in ice detection mode(i.e. in ice detection mode the float reduces the timeout of the first Iridium connection: if the first connection fails the cycle is aborted (ice probably present) but if the first connection succeeds (waters free of ice) the float switches to the nominal timeout (CONFIG_ConnectionTimeOut_minutes) for the following transmissions of the current cycle). | O | | "PROVOR, ARVOR" -CONFIG_IceDetectionConsecutiveDetectionBeforeFloatSurfaceInhibition_Number | "Number of consecutive ISA detections before float surface inhibition.If fewer consecutive ice detections are made, then the float will immediately seek the surface if mixed layer temp is warm." | O | | "PROVOR, ARVOR" -CONFIG_IceDetectionDescentVerticalThresholdToEndBuoyancyInversionPhase_dbar | When the cycle is aborted this threshold is used to detect speed inversion and to stop buoyancy inversion phase. | O | | "PROVOR, ARVOR" -CONFIG_IceDetectionISAMode_NUMBER | "Mode of the ISA ice detection algorithm (see float manual for details). For this firmware Mar 2018 the values are (0: not used, 1: algorithm based on temperature median value, 2: algorithm based on temperature median value and associated salinities)" | O | | -CONFIG_IceDetectionMaxDaysNoTransmission_NUMBER | Maximum delay (in days/cycles) of no transmission due to the ice detection algorithm. This parameter is used to disable the ice detection algorithm and force the float to surface even if ice is detected. | O | | "PROVOR, ARVOR" -CONFIG_IceDetectionMixedLayerPMax_dbar | Maximum sampling pressure used by ice cover detection algorithm. i.e. start pressure threshold for ice detection algorithm) | M if applies | | -CONFIG_IceDetectionMixedLayerPMin_dbar | Minimum sampling pressure used by ice cover detection algorithm. (i..e end pressure threshold for ice detection algorithm) | M if applies | | -CONFIG_IceDetectionNoVerticalMotionTimeOut_csec | "When the float is in ice detection mode if, despite of pump actions, no vertical motion is detected during this delay, the cycle is aborted." | O | | "PROVOR, ARVOR" -CONFIG_IceDetectionOilVolumeForFirstValveAction_cm^3 | Volume of the first valve action of a buoyancy inversion phase. | O | | APEX APF11 -CONFIG_IceDetectionOilVolumeMinForGroundingDetection_cm^3 | Similar to CONFIG_OilVolumeMinForGroundingDetection_cm^3 but for a float in a buoyancy inversion phase. | O | | "PROVOR, ARVOR" -CONFIG_IceDetectionOilVolumePerValveAction_cm^3 | Valve action duration during the buoyancy inversion phase. | O | | "PROVOR, ARVOR" -CONFIG_IceDetectionPressureInterval_dbar | "Period of the ice detection algorithm. ""It is the pressure interval used by the float to collect T and S samples between CONFIG_IceDetectionMixedLayerPMax_dbar and -CONFIG_IceDetectionMixedLayerPMin_dbar for the TEMP comparison."" Origjnal proposed name was : CONFIG_IceDetectionPeriod_dbar" | O | "It is the pressure interval used by the float to collect T and S samples between CONFIG_IceDetectionMixedLayerPMax_dbar and -CONFIG_IceDetectionMixedLayerPMin_dbar for the TEMP comparison." | PROVOR -CONFIG_IceDetectionPumpActionMaxTimeAscent_csec | Similar to CONFIG_PumpActionMaxTimeAscent_csec but for a float in ice detection mode. | O | | "PROVOR, ARVOR" -CONFIG_IceDetectionSalinityCoefficient_NUMBER | Coefficient used when Salinity is considered in the ice evasion criteria (i.e. median(TEMP) < CONFIG_IceDetection_degC+CONFIG_IceDetectionSalinityCoefficient_NUMBER*median(PSAL)). | O | | PROVOR -CONFIG_IceDetectionSpringInhibitionAscentEnd_dbar | Ice evasion depth for the spring inhibition part of the ISA algorithm. | | "What I undersand is that ""spring inhibition"" is the first step of the ISA algorithm. If the ISA algorithm raised (with the TEMP comparison) a profile evasion in the last CONFIG_IceDetectionSpringInhibitionDelaySinceLastIceEvasion_NUMBER days, the profile is aborted (without entering in the TEMP comparison loop) at CONFIG_IceDetectionSpringInhibitionAscentEnd_dbar." | PROVOR -CONFIG_IceDetectionSpringInhibitionDelaySinceLastIceEvasion_NUMBER | "Maximum delay (in days/cycles) since the last ice evasion date to attempt a surfacing. This is often called the 'Spring', where the float stays underwater for a time even though the temperature has warmed." | O | "What I undersand is that ""spring inhibition"" is the first step of the ISA algorithm. If the ISA algorithm raised (with the TEMP comparison) a profile evasion in the last CONFIG_IceDetectionSpringInhibitionDelaySinceLastIceEvasion_NUMBER days, the profile is aborted (without entering in the TEMP comparison loop) at CONFIG_IceDetectionSpringInhibitionAscentEnd_dbar." | PROVOR -CONFIG_IceDetectionStartPressure_dbar | Start pressure of the ice detection algorithm. | | "The float collects T and S samples from CONFIG_IceDetectionMixedLayerPMax_dbar (=50dbar) but starts the TEMP comparison at CONFIG_IceDetectionStart_dbar (=20dbar). Thus, the samples collected between 50 and 20 dbar are used for the first TEMP comparison." | PROVOR -CONFIG_IceDetectionTestDuration_seconds | Duration of the ice detection test. | O? | [Esmee comments: JP _ is this acoustic ice detection only? Or all three listed above? | PROVOR -CONFIG_IceEvasionStopPressure_dbar | "Ice evasion depth. This is a parameter for AC1 ice algorithm which abort the profile at a prescribed depth (CONFIG_IceEvasionDepth_dbar) without any check on environmental conditions (as described in my email, AC1, ISA and AID algorithm are used together in the ice version of the CTS5)." | O | Original proposed name was: CONFIG_IceEvasionDepth_dbar | -CONFIG_IceDetectionMaxCycles_NUMBER | "The maximum number of Ice Descent and Ice Ascent cycles the float will perform when it is unable to perform telemetry. When it has completed the specified number of cycles, the float will continue with the next profiling cycle.Range: 0�24 cyclesIf IceDescentCycles is disabled, the float will try to detect an ice cap if it cannot find the sky. If IceDescentCycles is enabled, the float will not try to detect the ice cap and will operate in accordance with �Ice Descent and Ice Ascent Cycles�where it tries to drift out from under an ice cap." | O | | -CONFIG_IceDetectionFirstTelemetryDay_NUMBER | "First day of the year during which telemetry is attempted during the Surface phase. When the float surfaces on a day that is not specified, it does not attempt telemetry and immediately begins the Park Descent phase for the next profiling cycle. TelemetryDays are specified with a start day and an end day. The start day is the first day of the transmit season for the year. The end day is the last day of the transmit season for the year. A setting of 0 0 disables TelemetryDays, and the float attempts telemetry during each Surface Phase." | O | | -CONFIG_IceDetectionEndTelemetryDay_NUMBER | "Last day of the year during which telemetry is attempted during the Surface phase. When the float surfaces on a day that is not specified, it does not attempt telemetry and immediately begins the Park Descent phase for the next profiling cycle. TelemetryDays are specified with a start day and an end day. The start day is the first day of the transmit season for the year. The end day is the last day of the transmit season for the year. A setting of 0 0 disables TelemetryDays, and the float attempts telemetry during each Surface Phase." | O | | -CONFIG_IceDetectionTelemetryTimeout_minutes | "The amount of time in minutes allowed for the float to complete telemetry. A setting of 0 disables IceTelemetryTimeout, and the time available is instead determined by the remaining UpTime of the Ascent phase." | O | | -CONFIG_InAirMeasurementPeriodicity_NUMBER | "Cycle periodicity of the ""in air measurement"" phase:- 0 means no ""in air acquisition""- 1 means ""in air acquisition"" every cycle- N means ""in air acquisition"" one cycle every ""N"" cycles" | | | -CONFIG_InAirMeasurementSamplingPeriod_seconds | "Sampling period during the ""in air measurement"" phase." | | | -CONFIG_InAirMeasurementTime_minutes | "Duration of the ""in air measurement"" phase." | | | -CONFIG_InternalCycleLastGregDay_DD | Last day to use float cycle duration # (in gregorian day). (D is a number denoting the internal cycle label) | O | | -CONFIG_InternalCycleLastGregMonth_MM | Last month to use float cycle duration # (in gregorian month). (D is a number denoting the internal cycle label) | O | | -CONFIG_InternalCycleLastGregYear_YYYY | "Last year to use float cycle duration # (in gregorian year, two digits). (D is a number denoting the internal cycle label)" | O | | -CONFIG_InternalCycleTime_hours | Internal cycle duration # (in hours). (D is a number denoting the internal cycle label) | O | | -CONFIG_InternalPressureCalibrationCoef1_NUMBER | First coefficient used to compute float internal pressure in mBars from sensor counts. | O | | -CONFIG_InternalPressureCalibrationCoef2_NUMBER | Second coefficient used to compute float internal pressure in mBars from sensor counts. | O | | -CONFIG_LoggingVerbosity_NUMBER | "Logging verbosity is an integer (values in range [0,4] for these floats) describing the parameters to be output. An integer in the range [0,4] that determines the logging verbosity with lower values producing more terse logging. A verbosity of 2 yields standard logging." | O | | -CONFIG_MaxAttemptsGPSAcquisitionBeforeResetGPS_COUNT | Maximum number of GPS location acquisition retries before it resets the GPS. | O | | ARVOR Iridium -CONFIG_MaxCycles_NUMBER | "Applies to PROVOR and ARVOR floats, profiler configuration - Number of cycles before float turns itself off, goes into end of life mode, or into recovery mode" | O | phase 0 | "PROVOR, ARVOR, NEMO(Iridium), NINJA" -CONFIG_MaxDelayBeforeCycleStart_minutes | "The maximum extra time a float can stay on the surface after transmitting. This feature is used for SOLOII floats to try and make them stay in a particular area, e.g. near the equator for equatorial floats. If a float is drifting at the surface and moving in the direction we want, we turn the feature on to keep it drifting at the surface in a favourable direction. If the float is moving in a direction we don't want, then we turn this feature off, so the float dives immediately. " | O | changeable | SOLOII -CONFIG_MaxSizeEngineeringLogFile_kbyte | Maximum size of engineering log file. | O | | APEX APF9i -CONFIG_MeasureBattery_LOGICAL | "measure the battery voltage and report it? (Yes = 1, No = 0)" | O | | "APEX, APEX APF9, APEX APF9i, NEMO(Iridum), NINJA, POPS, ARVOR, PROVOR, SOLO, SOLOII" -CONFIG_MinValveActionForSurfaceGroundingDetection_COUNT | Minimum number of surface valve attempts without change in pressure to set the surface grounding flag. | O | | NOVA/DOVA -CONFIG_MissionPreludeAutoTest_LOGICAL | "If set to ""yes"", the float will transition to the Park Descent phase at the end of the period determined by CONFIG_MissionPreludeTime_hours only if the self test passes. If the self test fails, the float will go into Emergency mode. If set to ""no"", the float will transition to the Park Descent phase whether or not the self test passes. In addition, the test results, pass or fail, will be logged to the system_log.txt file." | O | | APEX APF11 -CONFIG_MissionPreludeTime_hours | This is the duration the float transmits test messages for (from start up) before the first dive. It�s crucial in calculating the time of the first descent. | O | phase 0 | APEX -CONFIG_MissionSignature_NUMBER | Awaiting clarification. A request is in with Webb for more information | O | | -CONFIG_NumberOfInternalCycles_COUNT | Number of internal cycles. Note that the sub-cycle (i.e. final Argo cycle) durations are not really defined they are deduced from CONFIG_SurfaceDay_FloatDay and CONFIG_SurfaceTime_HH). | O | | -CONFIG_NumberOfOutOfTolerancePresBeforeReposition_COUNT | Number of consecutive pressure measurements outside the target pressure interval before performing a drift readjustment. | O | | -CONFIG_NumberOfSubCycles_NUMBER | Number of sub-cycles performs by the float during one float cycle. | O | | -CONFIG_OilVolumeLastPumpActionBuoyancyAcquisition_cm^3 | Volume of the last pump action of the buoyancy acquisition phase. Original proposed name was: CONFIG_PumpActionOilVolumeBuoyancyAcquisition_cm^3 | O | | PROVOR -CONFIG_OilVolumeMaxPerPumpActionReposition_cm^3 | "This information is used as a threshold for the pump action duration for reposition in the parking drift interval. The pump flow is known for each float and CONFIG_OilVolumeMaxPerPumpActionReposition_cm^3 is converted to a maxDurationOfPumpActionReposition. When a reposition should be performed, the float computes the needed pump action duration. In some specific cases the result can be a huge pump action duration and the result must be thresholded by maxDurationOfPumpActionReposition." | O | | PROVOR -CONFIG_OilVolumeMaxPerValveAction_cm^3 | "This information is used as a threshold for the valve action durations. The valve flow is known for each float and CONFIG_OilVolumeMaxPerValveAction_cm^3 is converted to a maxDurationOfValveAction. During descent phases the float regularly computes a valve duration to sink to the target depth. In some specific cases the result can be a huge valve action duration and the result must be thresholded by maxDurationOfValveAction.So yes, this information is a configuration parameter (and for Remocean float it can be modified via remote controls, but of course by specialist in PROVOR vector configuration)." | O | | -CONFIG_OilVolumeMinForGroundingDetection_cm^3 | "This information is a threshold used to detect a grounding of the float. If there is no vertical motion after having tranfered CONFIG_OilVolumeMinForGroundingDetection_cm^3 through the valve, the grounded flag is activated and the float acts as configurated by the CONFIG_GroundingMode_LOGICAL parameter.So, yes it is a configuration parameter (and I can easily understand that it can be modified via remote control since some PROVOR floats have experienced erroneous grounding detection (under study but perhaps due to in-situ conditions)." | O | | -CONFIG_OilVolumeMinPerValveAction_cm^3 | This information is used as a threshold for the valve action durations. The valve flow is known for each float and CONFIG_OilVolumeMinPerValveAction_cm^3 is converted to a minDurationOfValveAction. During descent phases the float regularly computes a valve duration to sink to the target depth. In some specific cases the result can be a brief valve action duration and the result must be thresholded by minDurationOfValveAction. | O | | NOVA/DOVA -CONFIG_OilVolumePerPumpActionAscent_cm^3 | Nominal oil volume of each pump action during ascent. | O | | PROVOR -CONFIG_OilVolumePerPumpActionDescent_cm^3 | Nominal oil volume of each pump action during descent (when the float brakes because of a too fast descent speed). | O | | PROVOR -CONFIG_OkVacuum_COUNT | Internal vacuum threshold (counts). | O | | -CONFIG_ParkAndProfileCycleCounter_COUNT | The number of profiles performed from Park depth before a deep profile is done. | O | changeable | APEX -CONFIG_ParkPressure_dbar | park pressure - this may change if the float is reprogrammed and must be reported in the mission configuration settings | M where applies (i.e not for floats that park at a density level rather than a pressure level such as the APEX Isopycnal Park Floats). | moved from the highly desirable section of the meta file as they are configuration varaibles that could change with eaach phase | "APEX, APEX APF9, NINJA, NEMO(Iridium), PROVOR, ARVOR, POPS, SOLO, SOLOII" -CONFIG_ParkSamplesPerAverage_COUNT | "If float reports average values, then this is the number of samples per value reported. For example, for a float that samples hourly during the park period for 105 hours, and reports the average P and T, this would be 105. " | O | changeable | APEX -CONFIG_ParkSamplingMethod_LOGICAL | "Have to convert string input to LOGICAL (1 = averaged, 0 = spot sampling)" | O | changeable | APEX -CONFIG_ParkSamplingNumberValsReported_COUNT | "Number of values reported during a single park period, e.g. a float may perform hourly sampling for 105 hrs and report this as two averaged samples for that park period" | O | changeable | APEX -CONFIG_ParkSamplingPeriod_hours | "specifies sampling period during the park phase, e.g. for APEX floats could be hourly or for ARVOR floats 12 hourly, for SOLO/SOLOII floats this definition is: P,T,S is sampled during drift (park) every CONFIG_ParkSamplingPeriod_hours, e.g. every 2 hours." | O | changeable | "APEX, APEX APF9i, Isopycnal Park APEX, PROVOR, ARVOR, POPS, NEMO(Iridium), NINJA, SOLO, SOLOII" -CONFIG_ParkSamplingPeriodSecondary_hours | "Some floats have two different park sampling periods in a cycle, e.g. 1.5 hours followed by 6 hours. This is the configuration parameter for the secondary sampling period during the park phase following CONFIG_ParkSamplingPeriod_hours " | O | changeable | if applicable -CONFIG_ParkTime_hours | "time spent at the parking pressure, not including descending and ascending times - example 222 for 9 days and 6 hours at park pressure" | "M if exists?, O for others" | | "APEX, SOLO, SOLOII" -CONFIG_PistonFullExtension_COUNT | | O | | "APEX, APEX APF9i, NEMO(Iridium)" -CONFIG_PistonFullRetraction_COUNT | | O | | "APEX, APEX APF9i, NEMO(Iridium)" -CONFIG_PistonPark_COUNT | "preset park piston position, in counts " | O | | "APEX, APEX APF9i" -CONFIG_PistonPositionBallast_COUNT | | O | clarification? | ? -CONFIG_PistonPositionHyperRetraction_COUNT | "For Apex APF11 Iridium floats, Hyper Retraction is used to pull in an amount of oil to temporarily increase a float�s density as it leaves the ocean surface. The result of the increased float density allows a float to move through a mixed density layer more easily or allows a float to descend at a faster rate. In particular, the HyperRetractCount is the temporary piston position used when the float leaves the Surface and starts a ParkDescent." | O | | APEX APF11 -CONFIG_PistonPositionPressureActivation_COUNT | preset piston position for pressure activation | O | can only go in phase 0 | APEX APF9 -CONFIG_PistonProfile_COUNT | "preset profile piston position, in counts " | O | | "APEX, APEX APF9i" -CONFIG_PressureActivation_dbar | depth at which float is set to pressure activate | O | | "SOLO, SOLOII" -CONFIG_PressureActivationCheckTime_hours | "in pressure activated floats this parameter sets how often the float will test whether it is in the water, e.g. Every 2 hours" | O | | APEX -CONFIG_PressureActivationMode_LOGICAL | Use the pressure activation feature. | O | | -CONFIG_PressureActivationTimeout_seconds | The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. | O | | -CONFIG_PressureBladderMax_dbar | maximum air bladder pressure setting - units could be COUNT | O | phase 0 | ? -CONFIG_PressureBladderTarget_dbar | Target bladder pressure - units could be COUNT | O | phase 0 | APEX -CONFIG_PressureCheckTimeAscent_minutes | Period of the pressure checks during the float ascent to surface. | O | | PROVOR -CONFIG_PressureCheckTimeBuoyancyReductionPhase_seconds | Period of the pressure checks after each valve action before checking the pressure during the buoyancy reduction phase (in seconds). | O | | -CONFIG_PressureCheckTimeDescent_minutes | Period of the pressure checks during the float descent (after CONFIG_BuoyancyReductionSecondThreshold_dbar). | O | | PROVOR -CONFIG_PressureCheckTimeDescentToParkingDepth_seconds | The interval in seconds between float samples of the pressure to determine if the Park depth has been reached. | O | | APEX APF11 -CONFIG_PressureCheckTimeDescentToProfileDepth_seconds | The interval in seconds between float samples of the pressure to determine if the Profile depth has been reached. | O | | APEX APF11 -CONFIG_PressureCheckTimeParking_minutes | Period of the pressure checks during the float drift at park or profile depth. | O | | NOVA/DOVA -CONFIG_PressureCheckTimeStabilization_minutes | Period of the pressure checks during the float stabilization phases. | O | | NOVA/DOVA -CONFIG_PressureMaxBeforeEmergencyAscent_dbar | Emergency ascent phase start pressure (in dbars). | O | | -CONFIG_PressureOffsetDelayBeforeResetCommand_minutes | Float waiting period before the surface ResetOffset CTD command. [NKE introduced a delay (in minutes) between the end of the transmission and the ResetOffset command (because surface pressure measurements seem to be corrupted by float transmission]. | O | | NKE -CONFIG_PressureOffsetResetAtSurface_LOGICAL | | O | | -CONFIG_PressureOffsetSampledAfterTransmission_LOGICAL | The surface pressure offset is sampled only if an Iridium transmission or a GPS session occured (to be sure that the pressure offset is sampled at the surface). Original proposed names was: CONFIG_SecuredPressureOffsetSampledAtSurface_LOGICAL | O | | PROVOR -CONFIG_PressureStartContinuousProfiling_dbar | preset pressure where continuous profiling begins on ascent | O | phase variable | APEX APF9i -CONFIG_PressureTargetToleranceBeforeReposition_dbar | "Defines the target pressure interval before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy." | O | | PROVOR -CONFIG_PressureTargetToleranceDuringDrift_dbar | Defines the target pressure interval for float drift at parking or profile depth (in dbars). | O | | -CONFIG_PressureTargetToleranceDuringDriftAtParkingDepth_dbar | Defines the target pressure interval for float drift at parking depth (in dbars). | O | | NOVA/DOVA -CONFIG_PressureTargetToleranceDuringDriftAtProfileDepth_dbar | Defines the target pressure interval for float drift at profile depth (in dbars). | | | NOVA/DOVA -CONFIG_PressureTargetToleranceForStabilisation_dbar | Defines the target pressure interval for float stabilisation at parking or profile depth (in dbars). | O | | -CONFIG_PressureTargetToleranceForStabilisationAtParkingDepth_dbar | Defines the target pressure interval for float stabilisation at parking depth (in dbars). | O | | NOVA/DOVA -CONFIG_PressureTargetToleranceForStabilisationAtProfileDepth_dbar | Defines the target pressure interval for float stabilisation at profile depth (in dbars). | O | | NOVA/DOVA -CONFIG_PressureTargetToleranceForStabilisationDuringAscent_dbar | Defines the target pressure interval for float stabilisation during ascent at a prescribed depth. The prescibed depth could be the PRES threshold to start low ascent (but I think this should not be in the definition which should stay more generic). | O | | PROVOR -CONFIG_PressureThresholdDataReduction_dbar | The isobar that divides shallow depths from deep depths for the purpose of data reduction (in dbars). For floats with 2 depth zones. | O | | PROVOR -CONFIG_PressureThresholdDataReductionIntermediateToDeep_dbar | The isobar that divides intermediate depths from deep depths for the purpose of data reduction with 3 depth zones (in dbars). | O | | PROVOR -CONFIG_PressureThresholdDataReductionShallowToIntermediate_dbar | The isobar that divides shallow depths from intermediate depths for the purpose of data reduction with 3 depth zones (in dbars). | O | | PROVOR -CONFIG_ProfileBottomBinInterval_cbar | Depth intervals for bottom depth (algorithm of data reduction). | O | | NOVA/DOVA -CONFIG_ProfileBottomSlicesThickness_dbar | Thickness of the slices for deep depths (algorithm of data reduction) (in dbars). | O | | PROVOR -CONFIG_ProfileDepthInterval_dbar | Target depth interval between final CTD samples when in the spot sampling mode. | O | | NOVA/DOVA -CONFIG_ProfileEvasionBrakingFactor_NUMBER | This factor defines the oil volume transferred from the external bladder when a profile evasion occurs and the float has to brake. The transferred oil volume is CONFIG_ProfileEvasionAscentSpeedFactor_NUMBER times the oil volume of the last pump action. | O | | PROVOR -CONFIG_ProfileIncludeTransitionBin_LOGICAL | "Include transition bins between depth zones (shallow/intermediate/bottom) in the algorithm of data reduction (Yes=1/No=0). Yes: Calculate transition bin between top and middle section, and between middle and bottom section. Transition bins are: (last top bin center + Top_Bin_Interval/2) to (last top bin center + Middle_Bin_Interval/2) and (last middle bin center + Middle_Bin_Interval/2) to (last middle bin center + Bottom_Bin_Interval/2)No: Do not calculate transition bins." | O | | NOVA/DOVA -CONFIG_ProfileIntermediateBinInterval_cbar | Depth intervals for intermediate depth (algorithm of data reduction). | O | | NOVA/DOVA -CONFIG_ProfileIntermediateSlicesThickness_dbar | Thickness of the slices for intermediate depths (algorithm of data reduction) (in dbars). | | | PROVOR -CONFIG_ProfilePressure_dbar | profile pressure - this may change if the float is reprogrammed and must be reported in the mission configuration settings | M | | "APEX, APEX APF9, NINJA, NEMO(Iridium), PROVOR, ARVOR, POPS, SOLO, SOLOII, Isopycnal Park APEX" -CONFIG_ProfileSamplingMethod_LOGICAL | "Have to convert string input to LOGICAL (1 = averaged, 0 = spot sampling)" | O | | NOVA/DOVA -CONFIG_ProfileSurfaceBinInterval_cbar | Depth intervals for shallow depth (algorithm of data reduction). | O | | NOVA/DOVA -CONFIG_ProfileSurfaceSlicesThickness_dbar | Thickness of the slices for shallow depths (algorithm of data reduction) (in dbars). | O | | -CONFIG_ProfileWhereChangePistonPosition_NUMBER | Use last piston position until this profile number | O | can only go in phase 0 | -CONFIG_PumpActionIntervalDuringAscent_COUNT | interval between successive pump activations during ascent | O | | ? -CONFIG_PumpActionMaxTimeAscent_csec | Maximum duration of a pump action during ascent (in centi-seconds). | O | | -CONFIG_PumpActionMaxTimeBuoyancyAcquisition_csec | Maximum duration of the last pump action of the buoyancy acquisition phase. | O | | NOVA/DOVA -CONFIG_PumpActionMaxTimeReposition_csec | Maximum duration of the pump action for a drift readjustment (in centi-seconds). | O | | -CONFIG_PumpActionTimeBuoyancyAcquisition_csec | Duration of the last pump action of the buoyancy acquisition phase (in centi-seconds). | O | | -CONFIG_PumpActionTimeBuoyancyAcquisitionForInAirMeasCycle_csec | "Duration of the last pump action of the buoyancy acquisition phase when a ""in air measurement"" phase is programmed (in centi-seconds). [For a cycle without ""in air measurement phase"" it is CONFIG_PumpActionTimeBuoyancyAcquisition_csec]." | | | -CONFIG_RafosSampling_minutes | Awaiting clarification. Is this a clock time or a period? Is it set or reported by the float? Probably need a more specific name. A request is in with Webbs for more information. | O | | -CONFIG_RecoveryModeActivate_LOGICAL | "Activates or deactivates recovery mode. Recovery mode is operator activated. If activated, the float remains on the surface indefinitely while transmitting its position and log files and downloading new mission and sample configuration parameters if available. If Recovery mode is then deactivated, the float will begin the Park Descent phase of a new mission." | O | | APEX APF11 -CONFIG_RudicsAndIridiumSession_LOGICAL | This float has a RUDICS transmission system. However it is able to connect to Iridium if the user want to get one Iridium position for each cycle. | O | | APEX APF11 -CONFIG_RudicsAndIridiumSessionWhenNoGPS_LOGICAL | "For RUDICS transmission floats, perform also one Iridium session (to get an Iridium position) when the GPS fix is not valid." | O | | APEX APF11 -CONFIG_SeeksToParkPeriods_COUNT | the number of SEEKS (settles) that can be done by the float after descent as it 'settles' towards the drift target. | O | | "SOLO, SOLOII" -CONFIG_SeeksToParkPeriodsIntervals_seconds | The SEEK (settle) time for the float after descent as it 'settles' towards the drift target. For SOLO floats this is a constant. | O | | "SOLO, SOLOII" -CONFIG_SlowAscentPistonAdjustment_COUNT | "when ascent is too slow, this is used to adjust the piston position to speed ascent" | O | | ? -CONFIG_SurfaceDay_FloatDay | Day of the float surfacing | | | -CONFIG_SurfaceTime_HH | Time of day of float surfacing - could be hour of the float surfacing or could be stored as seconds when set as hh:mm:ss (e.g. for PROVOR CTS5) | O | | -CONFIG_SurfaceTimeOut_hours | "time spent on the surface (surface drift) - example 10 for a 10 hour surface drift, for NEMO(Iridium) the definition for this variable is: the time limit for staying at the surface, i.e. maximum surface time." | O ? | "this is set for SOLOII, surface time duration is calculated for APEX and does not need to be reported?" | "APEX, SOLOII, ARVOR, PROVOR, ARVOR, POPS, NEMO(Iridium), NINJA" -CONFIG_SurfaceValveAdditionalActions_COUNT | Target number of additional valve actions performed at the surface during the buoyancy reduction phase. | O | | -CONFIG_SurfaceValveMaxTimeAdditionalActions_csec | Maximum duration of the additional valve actions performed at the surface during the buoyancy reduction phase (in centi-seconds). | O | | -CONFIG_SurfaceWaitPeriodAfterEmergencyAscent_minutes | Duration of the specific surface phase that occurs after an emergency ascent of the float. | O | | APEX APF11 -CONFIG_TargetAscentSpeed_cm/s | Speed of ascent during upcast in cm/s | O | | "APEX, SOLOII, NEMO(Iridium), does not apply to SOLO" -CONFIG_TelemetryAutoTestAtDeployment_LOGICAL | Perform a full auto-test (RUDICS server connection test) at float deployment (Yes=1/No=0).A full auto-test includes a connection test on the RUDICS server and a GPS fix acquisition. | O | | PROVOR -CONFIG_TelemetryEncodeMessage_LOGICAL | Encode the message before transmission (Yes=1/No=0). | O | | -CONFIG_TelemetryMaxRetry_COUNT | Maximum number of telemetry session retries | O | | PROVOR -CONFIG_TelemetryMaxRetrySecondary_COUNT | Some float versions have a secondary telemetry system; in this case the float is able to perform an Iridium session (to get one Iridium position) in addition to the RUDICS version used in the main telemetry session specified by CONFIG_TelemetryMaxRetry_COUNT | O | | APEX APF11 -CONFIG_TelemetryRepeatSessionDelay_minutes | Delay before a second Iridium session performed by the float just before diving for a new cycle (in minutes). | O | | -CONFIG_TelemetryRetransmission_COUNT | "To transmit N Argos messages, the transmission duration of an Argos PROVOR float is : MAX([N*CONFIG_TransmissionRepetitionPeriod_seconds*CONFIG_TelemetryRetransmission_COUNT]/3600, CONFIG_TransmissionMaxTime_hours). -So I will use CONFIG_TelemetryRetransmission_COUNT" | O | | -CONFIG_TelemetryRetryInterval_minutes | Amount of time the float waits before trying to retransmit | O | | -CONFIG_TimeDelayAfterEndOfAscentPressureThreshold_minutes | "At the end of the ascent phase, when the float detects a given pressure (Ex: 6 dbar) it waits for this time delay before starting the pump for the final buoyancy acquisition." | O | | NOVA/DOVA -CONFIG_TimeDelaybeforeDescentRetryWhenStuckAtSurface_minutes | "Time delay between each new attempt to descend when the float is stuck at the surface. When the float cannot reach the pressure threshold defined by ""CONFIG_BuoyancyReductionFirstThreshold_dbar"" after a given number of buoyancy actions it waits a period of time specified by ""CONFIG_TimeDelaybeforeDescentRetryWhenStuckAtSurface_minutes"" before starting a new sequence of buoyancy actions." | O | | ARVOR Iridium -CONFIG_TimeDelaybetweenRecoveryMessage_minutes | Delay time between recovery messages in [minutes] | | | -CONFIG_TimeStartFirstDescentToStartFirstAscent_hours | "Time, in hours, between 1st descent and 1st ascent - period between mission prelude and start of first profile" | O | phase 0 | APEX -CONFIG_TransmissionEndCycle_LOGICAL | The float performs a telemetry transmission at the end of the cycle (Yes=1/No=0). | | | -CONFIG_TransmissionMaxTimeforRecoveryMessage_minutes | Maximum transmission time for recovery messages in [minutes] | | | -CONFIG_TransmissionMinTime_hours | The time the float will remain on the surface transmitting its data at the end of each cycle. At lower latitudes you may wish to increase the value of this parameter to increase the probability of reception of all of your data. | O | | -CONFIG_TransmissionPeriodEndOfLife_minutes | Period of the Iridium transmission when in End Of Life mode (in minutes). | | | -CONFIG_TransmissionRepetitionPeriod_seconds | "transmission repetition rate, metadata for most floats - may be variable for two-way communication" | "M if Argos float, O for other floats, i.e. SOLO" | | "ARGOS, SOLO" -CONFIG_TripInterval_hours | "This is a conversion factor for the up and down times. If it is set to 2, then each 'interval' is equal to 2 hours (or seconds or minutes�) , if it is set to 1, then each 'interval' is equal to 1 unit." | O | | APEX APF8 -CONFIG_TriProfileOption_LOGICAL | "Profiler configuration - Tri profile option (Yes = 1, No = 0)" | O | "from the first generation of PROVOR floats for which a number of configurations are allowed, i.e. if tri profile is yes, it indicates a float which performs 1 deep profile followed by two shallower profiles." | -CONFIG_UpTime_hours | preset duration of the 'up' time (start of ascent to start of descent) - changed from : CONFIG_UpTimeInterval_hours and CONFIG_UpTimeOut | "M if exists?, O" | important for trajectory files | "APEX, NINJA" -CONFIG_ValveActionPeriodFactorBuoyancyReduction_NUMBER | Define the period of valve actions during the second phase of the buoyancy reduction (between CONFIG_BuoyancyReductionFirstThreshold_dbar and CONFIG_BuoyancyReductionSecondThreshold_dbar). The valve is open during CONFIG_ValveTimeActionBuoyancyReduction_csec each CONFIG_ValveTimeActionBuoyancyReduction_csec*CONFIG_ValveActionPeriodFactorBuoyancyReduction_NUMBER. | O | | PROVOR -CONFIG_ValveTimeActionBuoyancyReduction_csec | Duration of the valve actions during the second phase of the buoyancy reduction (between CONFIG_BuoyancyReductionFirstThreshold_dbar and CONFIG_BuoyancyReductionSecondThreshold_dbar). | O | | PROVOR -CONFIG_MultiParkingPhase_NUMBER | Number of multi-parking phases (up to 5 for Provor CTS5 floats). Do Not Use multi-parking CONFIGs if there is only a single, mono drift target throughout the life of a float; If a float has both mono-parking and multi-parking cycles, fill CONFIG_ParkPressure with fillvalue in multi-parking cycles; | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_ParkPressurePhase1_dbar | park pressure of multi-parking phase #1 - this may change if the float is reprogrammed and must be reported in the mission configuration settings | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_ParkPressurePhase2_dbar | park pressure of multi-parking phase #2 - this may change if the float is reprogrammed and must be reported in the mission configuration settings | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_ParkPressurePhase3_dbar | park pressure of multi-parking phase #3 - this may change if the float is reprogrammed and must be reported in the mission configuration settings | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_ParkPressurePhase4_dbar | park pressure of multi-parking phase #4 - this may change if the float is reprogrammed and must be reported in the mission configuration settings | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_ParkPressurePhase5_dbar | park pressure of multi-parking phase #5 - this may change if the float is reprogrammed and must be reported in the mission configuration settings | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_ParkDurationPhase1_seconds | Duration of the park phase #1 in multi-parking mode | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_ParkDurationPhase2_seconds | Duration of the park phase #2 in multi-parking mode | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_ParkDurationPhase3_seconds | Duration of the park phase #3 in multi-parking mode | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_ParkDurationPhase4_seconds | Duration of the park phase #4 in multi-parking mode | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_ParkDurationPhase5_seconds | Duration of the park phase #5 in multi-parking mode | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_PressureTargetToleranceDuringDriftPhase1_dbar | Defines the target pressure interval, during phase #1 of multi-parking mode, for float drift at parking or profile depth (in dbars). | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_PressureTargetToleranceDuringDriftPhase2_dbar | Defines the target pressure interval, during phase #2 of multi-parking mode, for float drift at parking or profile depth (in dbars). | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_PressureTargetToleranceDuringDriftPhase3_dbar | Defines the target pressure interval, during phase #3 of multi-parking mode, for float drift at parking or profile depth (in dbars). | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_PressureTargetToleranceDuringDriftPhase4_dbar | Defines the target pressure interval, during phase #4 of multi-parking mode, for float drift at parking or profile depth (in dbars). | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_PressureTargetToleranceDuringDriftPhase5_dbar | Defines the target pressure interval, during phase #5 of multi-parking mode, for float drift at parking or profile depth (in dbars). | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_PressureTargetToleranceBeforeRepositionPhase1_dbar | Defines the target pressure interval, during phase #1 of multi-parking mode, before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy. | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_PressureTargetToleranceBeforeRepositionPhase2_dbar | Defines the target pressure interval, during phase #2 of multi-parking mode, before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy. | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_PressureTargetToleranceBeforeRepositionPhase3_dbar | Defines the target pressure interval, during phase #3 of multi-parking mode, before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy. | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_PressureTargetToleranceBeforeRepositionPhase4_dbar | Defines the target pressure interval, during phase #4 of multi-parking mode, before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy. | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_PressureTargetToleranceBeforeRepositionPhase5_dbar | Defines the target pressure interval, during phase #5 of multi-parking mode, before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy. | M if applies | multi-parking mode | PROVOR CTS5 -CONFIG_EndOfLifeAtDepth_LOGICAL | End of life at depth management (Yes = 1, No = 0). | O | | \ No newline at end of file diff --git a/file_checker_spec/argo-physical_params-spec-v2.2 b/file_checker_spec/argo-physical_params-spec-v2.2 deleted file mode 100644 index 5df949e..0000000 --- a/file_checker_spec/argo-physical_params-spec-v2.2 +++ /dev/null @@ -1,28 +0,0 @@ -// $Revision: 878 $ -// $Date: 2018-04-04 13:55:45 +0000 (Wed, 04 Apr 2018) $ - -// Special codes: -// "<->" attribute cannot exist; "<*>" attribute optional, value ignored; "<+>" attribute must exist, value is ignored - -// Parameter specifications: -// Version 2.2 and earlier, there was an attribute "comment" and no attribute "standard_name" -// Therefore, the 4th column is used for "comment" -// Also, all parameters were "core" -- the "c" in the category column - -//Col 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -//Order | parameter name | Parameter name short version | long_name | cf_standard_name | cf_standard_name_uri | unit | valid_min | valid_max | core/bio/intermediate | sdn_parameter_urn | sdn_parameter_uri | sdn_uom_urn | sdn_uom_uri | comment | update date | status | Fillvalue | Data Type | - - | CNDC | CNDC | ELECTRICAL CONDUCTIVITY | In situ measurement | | mhos/m | 0.f | 60.f | c | | | | | | | | 99999. | float | - | PRES | PRES | SEA PRESSURE | In situ measurement, sea surface = 0 | | decibar | 0.f | 12000.f | c | | | | | | | | 99999. | float | - | PSAL | PSAL | PRACTICAL SALINITY | In situ measurement | | psu | 0.f | 42.f | c | | | | | | | | 99999. | float | - | TEMP | TEMP | SEA TEMPERATURE IN SITU ITS-90 SCALE | In situ measurement | | degree_Celsius | -2.f | 40.f | c | | | | | | | | 99999. | float | - - | BPHASE_DOXY | BPHASE_DOXY | OPTICAL PHASE-SHIFT FROM OXYGEN SENSOR | In situ measurement | | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | COUNT_DOXY | COUNT_DOXY | Raw counts reported by sensos such as SBE43 | | | * | 0.f | 100.f | c | | | | | | | | 99999. | float | - | DOXY | DOXY | DISSOLVED OXYGEN | In situ measurement | | micromole/kg | 0.f | 650.f | c | | | | | | | | 99999. | float | - | DPHASE_DOXY | DPHASE_DOXY | Calibrated phase shirt reported by sensors such as Aandera Optode | | | degree | <+> | <+> | c | | | | | | | | 99999. | float | - | FREQUENCY_DOXY | FREQUENCY_DOXY | Frequency reported by sensors such as SBE43 | | | hertz | <+> | <+> | c | | | | | | | | 99999. | float | - | MOLAR_DOXY | MOLAR_DOXY | MOLAR_DOXY | Technical value reported by sensors such as Aandera Optode | | micromole/litre | <+> | <+> | c | | | | | | | | 99999. | float | - | PRES_DOXY | PRES_DOXY | SEA PRESSURE FROM DOXY SENSOR | In situ measurement, sea surface = 0 | | decibar | <+> | <+> | c | | | | | | | | 99999. | float | - | VOLTAGE_DOXY | VOLTAGE_DOXY | Voltage reported by sensors such as SBE43 | | | volt | <+> | <+> | c | | | | | | | | 99999. | float | - | TEMP_DOXY | TEMP_DOXY | SEA TEMPERATURE FROM DOXY SENSOR (ITS-90 SCALE) | In situ measurement | | degree_Celsius | -2.f | 40.f | c | | | | | | | | 99999. | float | diff --git a/file_checker_spec/argo-physical_params-spec-v2.3 b/file_checker_spec/argo-physical_params-spec-v2.3 deleted file mode 100644 index 724fd56..0000000 --- a/file_checker_spec/argo-physical_params-spec-v2.3 +++ /dev/null @@ -1,27 +0,0 @@ -// $Revision: 878 $ -// $Date: 2018-04-04 13:55:45 +0000 (Wed, 04 Apr 2018) $ - -// Special codes: -// "<->" attribute cannot exist; "<*>" attribute optional, value ignored; <+> attribute must exist, value is ignored - -//Col 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -//Order | parameter name | Parameter name short version | long_name | cf_standard_name | cf_standard_name_uri | unit | valid_min | valid_max | core/bio/intermediate | sdn_parameter_urn | sdn_parameter_uri | sdn_uom_urn | sdn_uom_uri | comment | update date | status | Fillvalue | Data Type | - - | CNDC | CNDC | ELECTRICAL CONDUCTIVITY | sea_water_electrical_conductivity | | mhos/m | 0.f | 8.5f | c | | | | | | | | 99999. | float | - | PRES | PRES | SEA PRESSURE | <*> | | decibar | 0.f | 12000.f | c | | | | | | | | 99999. | float | - | PRES_DOXY | PRES_DOXY | Sea water pressure at the depth of oxygen sampling | | | decibar | 0.f | 12000.f | c | | | | | | | | 99999. | float | - | PSAL | PSAL | PRACTICAL SALINITY | <*> | | psu | 0.f | 42.f | c | | | | | | | | 99999. | float | - | TEMP | TEMP | SEA TEMPERATURE IN SITU ITS-90 SCALE | <*> | | degree_Celsius | -2.f | 40.f | c | | | | | | | | 99999. | float | - | DOXY | DOXY | DISSOLVED OXYGEN | moles_of_oxygen_per_unit_mass_in_sea_water | | micromole/kg | 0.f | 650.f | c | | | | | | | | 99999. | float | - | BPHASE_DOXY | BPHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | <*> | | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | COUNT_DOXY | COUNT_DOXY | COUNT_DOXY | <*> | | <*> | 0.f | 100.f | c | | | | | | | | 99999. | float | - | C1PHASE_DOXY | C1PHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | | <*> | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | C2PHASE_DOXY | C1PHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | | <*> | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | DPHASE_DOXY | DPHASE_DOXY | DPHASE_DOXY | <*> | | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | FREQUENCY_DOXY | FREQUENCY_DOXY | FREQUENCY_DOXY | <*> | | hertz | 0.f | 25000.f | c | | | | | | | | 99999. | float | - | MOLAR_DOXY | MOLAR_DOXY | MOLAR_DOXY | mole_concentration_of_dissolved_molecular_oxygen_in_sea_water | | micromole/litre | 0.f | 650.f | c | | | | | | | | 99999. | float | - | MLPL_DOXY | MLPL_DOXY | Oxygen concentration reported by the oxygen sensor | <*> | | ml/l | 0.f | 650.f | c | | | | | | | | 99999. | float | - | PHASE_DOXY | PHASE_DOXY | Phase shift reported by oxygen sensor | <*> | | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | TEMP_DOXY | TEMP_DOXY | SEA TEMPERATURE FROM DOXY SENSOR (ITS-90 SCALE) | temperature_of_sensor_for_oxygen_in_sea_water | | degree_Celsius | -2.f | 40.f | c | | | | | | | | 99999. | float | - | TPHASE_DOXY | TPHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | <*> | | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | VOLTAGE_DOXY | VOLTAGE_DOXY | VOLTAGE_DOXY | <*> | | volt | 0.f | 100.f | c | | | | | | | | 99999. | float | diff --git a/file_checker_spec/argo-physical_params-spec-v3.0 b/file_checker_spec/argo-physical_params-spec-v3.0 deleted file mode 100644 index eebce13..0000000 --- a/file_checker_spec/argo-physical_params-spec-v3.0 +++ /dev/null @@ -1,29 +0,0 @@ -// $Revision: 878 $ -// $Date: 2018-04-04 13:55:45 +0000 (Wed, 04 Apr 2018) $ - -// Special codes: -// "<->" attribute cannot exist; "<*>" attribute optional, value ignored; <+> attribute must exist, value is ignored - -// Until version 3.1, all parameters were "core" -- the "c" in the category column - -//Col 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -//Order | parameter name | Parameter name short version | long_name | cf_standard_name | cf_standard_name_uri | unit | valid_min | valid_max | core/bio/intermediate | sdn_parameter_urn | sdn_parameter_uri | sdn_uom_urn | sdn_uom_uri | comment | update date | status | Fillvalue | Data Type | - - | CNDC | CNDC | ELECTRICAL CONDUCTIVITY | sea_water_electrical_conductivity | | mhos/m | 0.f | 8.5f | c | | | | | | | | 99999. | float | - | PRES | PRES | SEA PRESSURE | sea_water_pressure | | decibar | 0.f | 12000.f | c | | | | | | | | 99999. | float | - | PRES_DOXY | PRES_DOXY | Sea water pressure at the depth of oxygen sampling | | | decibar | 0.f | 12000.f | c | | | | | | | | 99999. | float | - | PSAL | PSAL | PRACTICAL SALINITY | sea_water_salinity | | psu | 0.f | 42.f | c | | | | | | | | 99999. | float | - | TEMP | TEMP | SEA TEMPERATURE IN SITU ITS-90 SCALE | sea_water_temperature | | degree_Celsius | -2.f | 40.f | c | | | | | | | | 99999. | float | - | DOXY | DOXY | DISSOLVED OXYGEN | moles_of_oxygen_per_unit_mass_in_sea_water | | micromole/kg | 0.f | 650.f | c | | | | | | | | 99999. | float | - | BPHASE_DOXY | BPHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | <*> | | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | COUNT_DOXY | COUNT_DOXY | Count reported by oxygen sensor | <*> | | <*> | 0.f | 100.f | c | | | | | | | | 99999. | float | - | C1PHASE_DOXY | C1PHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | | <*> | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | C2PHASE_DOXY | C1PHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | | <*> | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | DPHASE_DOXY | DPHASE_DOXY | Calibrated phase shift reported by oxygen sensor | <*> | | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | FREQUENCY_DOXY | FREQUENCY_DOXY | Frequency reported by oxygen sensor | <*> | | hertz | 0.f | 25000.f | c | | | | | | | | 99999. | float | - | MOLAR_DOXY | MOLAR_DOXY | Uncompensated (pressure and salinity) oxygen concentration reported by the oxygen sensor | mole_concentration_of_dissolved_molecular_oxygen_in_sea_water | | micromole/litre | 0.f | 650.f | c | | | | | | | | 99999. | float | - | MLPL_DOXY | MLPL_DOXY | Oxygen concentration reported by the oxygen sensor | <*> | | ml/l | 0.f | 650.f | c | | | | | | | | 99999. | float | - | PHASE_DOXY | PHASE_DOXY | Phase shift reported by oxygen sensor | <*> | | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | TEMP_DOXY | TEMP_DOXY | SEA TEMPERATURE FROM DOXY SENSOR (ITS-90 SCALE) | temperature_of_sensor_for_oxygen_in_sea_water | | degree_Celsius | -2.f | 40.f | c | | | | | | | | 99999. | float | - | TPHASE_DOXY | TPHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | <*> | | degree | 10.f | 70.f | c | | | | | | | | 99999. | float | - | VOLTAGE_DOXY | VOLTAGE_DOXY | Voltage reported by oxygen sensor | <*> | | volt | 0.f | 100.f | c | | | | | | | | 99999. | float | diff --git a/file_checker_spec/argo-physical_params-spec-v3.1 b/file_checker_spec/argo-physical_params-spec-v3.1 deleted file mode 100644 index 1a3156f..0000000 --- a/file_checker_spec/argo-physical_params-spec-v3.1 +++ /dev/null @@ -1,103 +0,0 @@ -// Based on: -//"Argo User's manual reference table 3 : list of physical parameters, last update : 15/02/2022" - -// Specification file: -// $Revision: 1297 $ -// $Date: 2022-03-20 16:26:30 +0000 (Sun, 20 Mar 2022) $ - -//Col 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -//Order parameter name "Parameter name short version" long_name cf_standard_name cf_standard_name_uri unit valid_min valid_max core/bio/intermediate core/intermediate bio sdn_parameter_urn sdn_parameter_uri sdn_uom_urn sdn_uom_uri comment update date status Fillvalue Data Type -1 | CNDC | CNDC | Electrical conductivity | sea_water_electrical_conductivity | | mhos/m | 0.f | 8.5f | ic | SDN:P01::CNDCST01 | http://vocab.nerc.ac.uk/collection/P01/current/CNDCST01/ | SDN:P061::UECA | http://vocab.nerc.ac.uk/collection/P06/current/UECA/ | | 12/29/2001 | active | 99999.f | float | -2 | PRES | PRES | Sea water pressure, equals 0 at sea-level | sea_water_pressure | | decibar | 0.f | 12000.f | c | SDN:P01::PRESPR01 | http://vocab.nerc.ac.uk/collection/P01/current/PRESPR01/ | SDN:P061::UPDB | http://vocab.nerc.ac.uk/collection/P06/current/UPDB/ | 19/10/2013 : revision of the long name | 10/19/2013 | active | 99999.f | float | -3 | PSAL | PSAL | Practical salinity | sea_water_salinity | | psu | 2.f | 41.f | c | SDN:P01::PSALST01 | http://vocab.nerc.ac.uk/collection/P01/current/PSALST01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 12/29/2001 | active | 99999.f | float | -4 | TEMP | TEMP | Sea temperature in-situ ITS-90 scale | sea_water_temperature | | degree_Celsius | -2.5f | 40.f | c | SDN:P01::TEMPST01 | http://vocab.nerc.ac.uk/collection/P01/current/TEMPST01/ | SDN:P061::UPAA | http://vocab.nerc.ac.uk/collection/P06/current/UPAA/ | | 12/29/2001 | active | 99999.f | float | -5 | DOXY | DOXY | Dissolved oxygen | moles_of_oxygen_per_unit_mass_in_sea_water | | micromole/kg | -5.f | 600.f | b | SDN:P01::DOXMZZXX | http://vocab.nerc.ac.uk/collection/P01/current/DOXMZZXX/ | SDN:P061::KGUM | http://vocab.nerc.ac.uk/collection/P06/current/KGUM/ | | 11/4/2015 | active | 99999.f | float | -6 | TEMP_DOXY | TEMP_DOXY | Sea temperature from oxygen sensor ITS-90 scale | temperature_of_sensor_for_oxygen_in_sea_water | | degree_Celsius | -2.f | 40.f | ib | SDN:P01::OXYTAAOP | http://vocab.nerc.ac.uk/collection/P01/current/OXYTAAOP/ | SDN:P061::UPAA | http://vocab.nerc.ac.uk/collection/P06/current/UPAA/ | | 3/2/2015 | active | 99999.f | float | -7 | TEMP_VOLTAGE_DOXY | | Thermistor voltage reported by oxygen sensor | - | | volt | - | - | ib | SDN:P01::TCNTOPTT | http://vocab.nerc.ac.uk/collection/P01/current/TCNTOPTT/ | SDN:P061::UVLT | http://vocab.nerc.ac.uk/collection/P06/current/UVLT/ | Voltage from SBE63 thermistor | 11/18/2015 | active | 99999.f | float | -8 | VOLTAGE_DOXY | VOLTAGE_DOXY | Voltage reported by oxygen sensor | - | | volt | 0.f | 100.f | ib | SDN:P01::OXYOCPVL | http://vocab.nerc.ac.uk/collection/P01/current/OXYOCPVL/ | SDN:P061::UVLT | http://vocab.nerc.ac.uk/collection/P06/current/UVLT/ | | 6/20/2014 | active | 99999.f | float | -9 | FREQUENCY_DOXY | FREQUENCY_DOXY | Frequency reported by oxygen sensor | - | | hertz | 0.f | 25000.f | ib | SDN:P01::OXYOCPFR | http://vocab.nerc.ac.uk/collection/P01/current/OXYOCPFR/ | SDN:P061::UTHZ | http://vocab.nerc.ac.uk/collection/P06/current/UTHZ/ | | 6/20/2014 | active | 99999.f | float | -10 | COUNT_DOXY | COUNT_DOXY | Count reported by oxygen sensor | - | | count | - | - | ib | SDN:P01::OXYOOPCT | http://vocab.nerc.ac.uk/collection/P01/current/OXYOOPCT/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 11/26/2015 | active | 99999.f | float | -11 | BPHASE_DOXY | BPHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | - | | degree | 10.f | 70.f | ib | SDN:P01::OXYCPHAB | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAB/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | reported by Aanderaa 3830 optodes | 4/30/2014 | active | 99999.f | float | -12 | DPHASE_DOXY | DPHASE_DOXY | Calibrated phase shift reported by oxygen sensor | - | | degree | 10.f | 70.f | ib | SDN:P01::OXYCPHAC | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAC/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | reported by Aanderaa 3830 optodes | 7/8/2021 | active | 99999.f | float | -13 | TPHASE_DOXY | TPHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | - | | degree | 10.f | 70.f | ib | SDN:P01::OXYCPHTC | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHTC/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | reported by Aanderaa 4330 and 4330F optodes | 7/8/2021 | active | 99999.f | float | -14 | C1PHASE_DOXY | C1PHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | - | | degree | 10.f | 70.f | ib | SDN:P01::OXYCPHAB | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAB/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | reported by Aanderaa 4330 and 4330F optodes | 7/8/2021 | active | 99999.f | float | -15 | C2PHASE_DOXY | C2PHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | - | | degree | 0.f | 15.f | ib | SDN:P01::OXYCPHAR | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAR/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | reported by Aanderaa 4330 and 4330F optodes | 7/8/2021 | active | 99999.f | float | -16 | MOLAR_DOXY | MOLAR_DOXY | Uncompensated (pressure and salinity) oxygen concentration reported by the oxygen sensor | mole_concentration_of_dissolved_molecular_oxygen_in_sea_water | | micromole/l | 0.f | 650.f | ib | SDN:P01::DOXYMMOP | http://vocab.nerc.ac.uk/collection/P01/current/DOXYMMOP/ | SDN:P061::MMPL | http://vocab.nerc.ac.uk/collection/P06/current/MMPL/ | 21/05/2014 : unit syntax revision | 6/20/2014 | active | 99999.f | float | -17 | PHASE_DELAY_DOXY | PHASE_DELAY_DOXY | Phase delay reported by oxygen sensor | - | | microsecond | 0.f | 99999.f | ib | SDN:P01::OXYCPH01 | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPH01/ | SDN:P061::USEC | http://vocab.nerc.ac.uk/collection/P06/current/USEC/ | SBE63 optode, using value in ms as this is what is reported by sensor | 6/20/2014 | active | 99999.f | float | -18 | MLPL_DOXY | MLPL_DOXY | Oxygen concentration reported by the oxygen sensor | - | | ml/l | 0.f | 650.f | ib | SDN:P01::DOXYZZXX | http://vocab.nerc.ac.uk/collection/P01/current/DOXYZZXX/ | SDN:P061::UMLL | http://vocab.nerc.ac.uk/collection/P06/current/UMLL/ | | 6/19/2013 | active | 99999.f | float | -19 | NB_SAMPLE_CTD | NB_SAMPLE_CTD | Number of samples in each pressure bin for the CTD | - | | count | - | - | ic | SDN:P01::NUMVALES | http://vocab.nerc.ac.uk/collection/P01/current/NUMVALES/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_SHORT | NC_SHORT | -20 | NB_SAMPLE_SFET | NB_SAMPLE_SFET | Number of samples in each pressure bin for the SFET | - | | count | - | - | ib | SDN:P01::NUMVALES | http://vocab.nerc.ac.uk/collection/P01/current/NUMVALES/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_SHORT | NC_SHORT | -21 | NB_SAMPLE_ | NB_SAMPLE_ | Number of samples in each pressure bin for the | - | | count | - | - | ib | SDN:P01::NUMVALES | http://vocab.nerc.ac.uk/collection/P01/current/NUMVALES/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | can be CTD, SFET | 1/20/2022 | active | NC_FILL_SHORT | NC_SHORT | -22 | RPHASE_DOXY | RPHASE_DOXY | Uncalibrated red phase shift reported by oxygen sensor | - | | degree | 10.f | 70.f | ib | SDN:P01::OXYCPHAR | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAR/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | | 10/19/2013 | active | 99999.f | float | -23 | TEMP_COUNT_DOXY | | Count which is expressive of uncalibrated temperature value reported by oxygen sensor | - | | count | - | - | ib | | http://vocab.nerc.ac.uk/collection/P01/current// | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 11/26/2015 | active | 99999.f | float | -24 | LED_FLASHING_COUNT_DOXY | | Number of times oxygen sensor flashing to measure oxygen | - | | count | - | - | ib | | http://vocab.nerc.ac.uk/collection/P01/current// | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | reported by ARO-FT optode. This is a double type variable | 12/09/2024 | active | NC_FILL_DOUBLE | NC_DOUBLE | -25 | PPOX_DOXY | | Partial pressure of oxygen | - | | millibar | -5.f | 5000.f | ib | SDN:P01::PPOXZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/PPOXZZ01/ | SDN:P061::UPBB | http://vocab.nerc.ac.uk/collection/P06/current/UPBB/ | Alternative oxygen quantity of oxygen optodes (for in air measurements) | 2/2/2016 | active | 99999.f | float | -26 | BETA_BACKSCATTERING | OPBS_BBP | Total angle specific volume from backscattering sensor at x nanometers | - | | count | - | - | ib | SDN:P01::NVLTOBS1 | http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | ECO3 sensor FLBB sensor | 1/19/2015 | active | 99999.f | float | -27 | BETA_BACKSCATTERING470 | | Total angle specific volume from backscattering sensor at 470 nanometers | - | | count | - | - | ib | SDN:P01::NVLTOBS1 | http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 8/27/2015 | active | 99999.f | float | -28 | BETA_BACKSCATTERING532 | | Total angle specific volume from backscattering sensor at 532 nanometers | - | | count | - | - | ib | SDN:P01::NVLTOBS1 | http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/19/2015 | active | 99999.f | float | -29 | BETA_BACKSCATTERING700 | | Total angle specific volume from backscattering sensor at 700 nanometers | - | | count | - | - | ib | SDN:P01::NVLTOBS1 | http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/19/2015 | active | 99999.f | float | -30 | FLUORESCENCE_CHLA | FVLT_CHLA | Chlorophyll-A signal from fluorescence sensor | - | | count | - | - | ib | SDN:P01::FCNTRW01 | http://vocab.nerc.ac.uk/collection/P01/current/FCNTRW01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | sdn code independent of electromagic wavelength ECO3 sensor FLNTU sensor FLBB sensor | 4/30/2014 | active | 99999.f | float | -31 | TEMP_CPU_CHLA | TEMP_CPU_CHLA | Thermistor signal from backscattering sensor | - | | count | - | - | ib | SDN:P01::TCNTICPU | http://vocab.nerc.ac.uk/collection/P01/current/TCNTICPU/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | CPU termistor temp in counts from WetLabs FLBB | 1/19/2015 | active | 99999.f | float | -32 | FLUORESCENCE_CDOM | FVLT_CDOM | Raw fluorescence from coloured dissolved organic matter sensor | - | | count | - | - | ib | SDN:P01::FLUOCDOM | http://vocab.nerc.ac.uk/collection/P01/current/FLUOCDOM/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | ECO3 sensor | 3/4/2015 | active | 99999.f | float | -33 | SIDE_SCATTERING_TURBIDITY | OPSS_TURB | Turbidity signal from side scattering sensor | - | | count | - | - | ib | SDN:P01::NCNTTUR1 | http://vocab.nerc.ac.uk/collection/P01/current/NCNTTUR1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | FLNTU sensor | 11/14/2015 | active | 99999.f | float | -34 | TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION | ATTN_CP | Beam attenuation from transmissometer sensor at x nanometers | - | | count | - | - | ib | SDN:P01::NCNTATT1 | http://vocab.nerc.ac.uk/collection/P01/current/NCNTATT1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 11/14/2015 | active | 99999.f | float | -35 | TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660 | | Beam attenuation from transmissometer sensor at 660 nanometers | - | | count | - | - | ib | SDN:P01::NCNTATT1 | http://vocab.nerc.ac.uk/collection/P01/current/NCNTATT1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 2/11/2021 | active | 99999.f | float | -36 | BBP | | Particle backscattering at x nanometers | - | | m-1 | - | - | b | SDN:P01::BSXXXVSF | http://vocab.nerc.ac.uk/collection/P01/current/BSXXXVSF/ | SDN:P061::PMSR | http://vocab.nerc.ac.uk/collection/P06/current/PMSR/ | coefficient or function in cf name? ECO3 sensor | 1/19/2015 | active | 99999.f | float | -37 | BBP470 | Particle backscattering at 470 nanometers | Particle backscattering at 470 nanometers | - | | m-1 | - | - | b | SDN:P01::BB117B01 | http://vocab.nerc.ac.uk/collection/P01/current/BB117B01/ | SDN:P061::PMSR | http://vocab.nerc.ac.uk/collection/P06/current/PMSR/ | coefficient or function in cf name? ECO3 sensor | 8/27/2015 | active | 99999.f | float | -38 | BBP532 | BBP532 | Particle backscattering at 532 nanometers | - | | m-1 | - | - | b | SDN:P01::BB117G01 | http://vocab.nerc.ac.uk/collection/P01/current/BB117G01/ | SDN:P061::PMSR | http://vocab.nerc.ac.uk/collection/P06/current/PMSR/ | coefficient or function in cf name? ECO3 sensor | 1/19/2015 | active | 99999.f | float | -39 | BBP700 | BBP700 | Particle backscattering at 700 nanometers | - | | m-1 | - | - | b | SDN:P01::BB117NIR | http://vocab.nerc.ac.uk/collection/P01/current/BB117NIR/ | SDN:P061::PMSR | http://vocab.nerc.ac.uk/collection/P06/current/PMSR/ | coefficient or function in cf name? ECO3 sensor | 1/19/2015 | active | 99999.f | float | -40 | TURBIDITY | TURB | Sea water turbidity | sea_water_turbidity | | ntu | - | - | b | SDN:P01::TURBXXXX | http://vocab.nerc.ac.uk/collection/P01/current/TURBXXXX/ | SDN:P061::USTU | http://vocab.nerc.ac.uk/collection/P06/current/USTU/ | | 10/19/2013 | active | 99999.f | float | -41 | CP | CP | Particle beam attenuation at x nanometers | - | | m-1 | - | - | b | SDN:P01::ATTNZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/ATTNZZ01/ | SDN:P061::UPRM | http://vocab.nerc.ac.uk/collection/P06/current/UPRM/ | coefficient or function in cf name? C-Rover sensor | 2/5/2014 | active | 99999.f | float | -42 | CP660 | | Particle beam attenuation at 660 nanometers | - | | m-1 | - | - | b | SDN:P01::ATT650AC | http://vocab.nerc.ac.uk/collection/P01/current/ATT650AC/ | SDN:P061::UPRM | http://vocab.nerc.ac.uk/collection/P06/current/UPRM/ | coefficient or function in cf name? C-Rover sensor | 11/14/2015 | active | 99999.f | float | -43 | CHLA | CHLA | Chlorophyll-A | mass_concentration_of_chlorophyll_a_in_sea_water | | mg/m3 | - | - | b | SDN:P01::CPHLPR01 | http://vocab.nerc.ac.uk/collection/P01/current/CPHLPR01/ | SDN:P061::UMMC | http://vocab.nerc.ac.uk/collection/P06/current/UMMC/ | ECO3 sensor | 10/19/2013 | active | 99999.f | float | -44 | CDOM | CDOM | Concentration of coloured dissolved organic matter in sea water | - | | ppb | - | - | b | SDN:P01::CDOMZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/CDOMZZ01/ | SDN:P061::UPPB | http://vocab.nerc.ac.uk/collection/P06/current/UPPB/ | | 11/14/2015 | active | 99999.f | float | -45 | UV_INTENSITY_NITRATE | UV_INT_NTRA | Intensity of ultra violet flux from nitrate sensor | - | | count | - | - | ib | SDN:P01::UVINZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/UVINZZ01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | measurement in counts proportional to light intensity SUNA sensor APF frame 16-bit Spectral values with dimension N_VALUESXX | 11/14/2015 | active | 99999.f | float | -46 | UV_INTENSITY_DARK_NITRATE | UV_INT_D_NTRA | Intensity of ultra violet flux dark measurement from nitrate sensor | - | | count | - | - | ib | SDN:P01::UVDAZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/UVDAZZ01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | average of all 256 dark counts SUNA sensor APF frame 16-bit | 11/14/2015 | active | 99999.f | float | -47 | UV_INTENSITY_DARK_SEAWATER_NITRATE | UV_INT_DSW_NTRA | Intensity of ultra-violet flux dark sea water from nitrate sensor | - | | count | - | - | ib | SDN:P01::UVSDZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/UVSDZZ01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | from light absorption on pixels at shortest wavelengths of array SUNA sensor 16-bit | 11/14/2015 | active | 99999.f | float | -48 | NITRATE | NTRA | Nitrate | moles_of_nitrate_per_unit_mass_in_sea_water | | micromole/kg | - | - | b | SDN:P01::MDMAP005 | http://vocab.nerc.ac.uk/collection/P01/current/MDMAP005/ | SDN:P061::KGUM | http://vocab.nerc.ac.uk/collection/P06/current/KGUM/ | NO3- but netcdf does not support - in variable names so using name rather than abreviation SUNA sensor | 4/30/2014 | active | 99999.f | float | -49 | BISULFIDE | SPWC_NTRA | Bisulfide | - | | micromole/kg | - | - | b | SDN:P01::H2SXZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/H2SXZZ01/ | SDN:P061::KGUM | http://vocab.nerc.ac.uk/collection/P06/current/KGUM/ | HS- but netcdf does not support - in variable names so using name rather than abreviation | 4/30/2014 | active | 99999.f | float | -50 | MOLAR_NITRATE | MOLAR_NTRA | Nitrate | - | | micromole/l | - | - | ib | SDN:P01::NTRZMC01 | http://vocab.nerc.ac.uk/collection/P01/current/NTRZMC01/ | SDN:P06::UPOX | http://vocab.nerc.ac.uk/collection/P06/current/UPOX/ | SUNA sensor | 11/14/2015 | active | 99999.f | float | -51 | FIT_ERROR_NITRATE | FIT_ERROR_NTRA | Nitrate fit error | - | | dimensionless | - | - | ib | SDN:P01::NTFEZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/NTFEZZ01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | SUNA sensor key variable in QC | 11/14/2015 | active | 99999.f | float | -52 | TEMP_NITRATE | TEMP_NITRATE | Internal temperature of the SUNA sensor | - | | degree_Celsius | - | - | ib | | http://vocab.nerc.ac.uk/collection/P01/current// | | http://vocab.nerc.ac.uk/collection/P06/current// | Technical profile provided by the SUNA sensor of the Remocean floats. | 7/8/2014 | active | 99999.f | float | -53 | TEMP_SPECTROPHOTOMETER_NITRATE | TEMP_SPECTROPHOTOMETER_NITRATE | Temperature of the spectrometer | - | | degree_Celsius | - | - | ib | | http://vocab.nerc.ac.uk/collection/P01/current// | | http://vocab.nerc.ac.uk/collection/P06/current// | Technical profile provided by the SUNA sensor of the Remocean floats. | 7/8/2014 | active | 99999.f | float | -54 | HUMIDITY_NITRATE | HUMIDITY_NITRATE | Relative humidity inside the SUNA sensor (If > 50% There is a leak) | - | | percent | 0.f | 100.f | ib | | http://vocab.nerc.ac.uk/collection/P01/current// | | http://vocab.nerc.ac.uk/collection/P06/current// | Technical profile provided by the SUNA sensor of the Remocean floats. | 7/8/2014 | active | 99999.f | float | -55 | VRS_PH | VRS_PH | Voltage difference between reference and source from pH sensor | - | | volt | - | - | ib | SDN:P01::PVLTGC01 | http://vocab.nerc.ac.uk/collection/P01/current/PVLTGC01/ | SDN:P061::UVLT | http://vocab.nerc.ac.uk/collection/P06/current/UVLT/ | voltage between reference and source of sensor | 10/19/2013 | active | 99999.f | float | -56 | TEMP_PH | | Sea temperature from pH sensor | - | | degree_Celsius | -2.f | 40.f | ib | | | | | Sea temperature from pH sensor | 2/2/2016 | active | 99999.f | float | -57 | IB_PH | | Base current of pH sensor | - | | nanoampere | - | - | ib | | | | | Base current of the pH sensor | 2/2/2016 | active | 99999.f | float | -58 | VK_PH | | Counter electrode voltage of pH sensor | - | | volt | - | - | ib | | | | | Counter electrode voltage of the pH sensor | 1/16/2018 | active | 99999.f | float | -59 | IK_PH | | Counter electrode current of pH sensor | - | | nanoampere | - | - | ib | | | | | Counter electrode current of the pH sensor | 1/16/2018 | active | 99999.f | float | -60 | PH_IN_SITU_TOTAL | PH_TOTAL | pH | sea_water_ph_reported_on_total_scale | | dimensionless | - | - | b | SDN:P01::PHMASSXX | http://vocab.nerc.ac.uk/collection/P01/current/PHMASSXX/ | SDN:P06::UUPH | http://vocab.nerc.ac.uk/collection/P06/current/UUPH/ | (pH based on free proton concentration and proton associated with SO4 2- ion) | 11/14/2015 | active | 99999.f | float | -61 | PH_IN_SITU_FREE | PH_FREE | pH | - | | dimensionless | - | - | ib | SDN:P01::PHFRWCAL | http://vocab.nerc.ac.uk/collection/P01/current/PHFRWCAL/ | SDN:P06::UUPH | http://vocab.nerc.ac.uk/collection/P06/current/UUPH/ | (pH based on free proton concentration) | 11/14/2015 | active | 99999.f | float | -62 | PH_IN_SITU_SEAWATER | PH_SEAWATER | pH | - | | dimensionless | - | - | ib | SDN:P01::PHSWWCAL | http://vocab.nerc.ac.uk/collection/P01/current/PHSWWCAL/ | SDN:P06::UUPH | http://vocab.nerc.ac.uk/collection/P06/current/UUPH/ | (pH based on free proton concentration and protons associated with SO4 2- and F- ions) | 11/14/2015 | active | 99999.f | float | -63 | RAW_DOWNWELLING_IRRADIANCE | RAW_DOWN_IRR | Raw downwelling irradiance at x nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -64 | RAW_DOWNWELLING_IRRADIANCE380 | | Raw downwelling irradiance at 380 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -65 | RAW_DOWNWELLING_IRRADIANCE412 | | Raw downwelling irradiance at 412 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -66 | RAW_DOWNWELLING_IRRADIANCE443 | Raw downwelling irradiance at 443 nanometers | Raw downwelling irradiance at 443 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -67 | RAW_DOWNWELLING_IRRADIANCE490 | | Raw downwelling irradiance at 490 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -68 | RAW_DOWNWELLING_IRRADIANCE555 | | Raw downwelling irradiance at 555 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -69 | RAW_DOWNWELLING_IRRADIANCE670 | | Raw downwelling irradiance at 670 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -70 | DOWN_IRRADIANCE | DOWN_IRR | Downwelling irradiance at x nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::DWIRXXED | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXED/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 2/5/2014 | active | 99999.f | float | -71 | DOWN_IRRADIANCE380 | | Downwelling irradiance at 380 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD380E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD380E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -72 | DOWN_IRRADIANCE412 | | Downwelling irradiance at 412 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD412E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD412E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 6/20/2014 | active | 99999.f | float | -73 | DOWN_IRRADIANCE443 | | Downwelling irradiance at 443 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD443E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD443E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -74 | DOWN_IRRADIANCE490 | | Downwelling irradiance at 490 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD490E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD490E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -75 | DOWN_IRRADIANCE555 | | Downwelling irradiance at 555 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD555E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD555E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -76 | DOWN_IRRADIANCE670 | | Downwelling irradiance at 670 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD670E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD670E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 2/11/2021 | active | 99999.f | float | -77 | RAW_UPWELLING_RADIANCE | RAW_UP_RAD | Raw upwelling radiance at x nanometers | - | | count | - | - | ib | SDN:P01::UPRAXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | Satlantic ocr504 | 6/20/2014 | active | NC_FILL_DOUBLE | NC_DOUBLE | -78 | RAW_UPWELLING_RADIANCE412 | | Raw upwelling radiance at 412 nanometers | - | | count | - | - | ib | SDN:P01::UPRAXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | Satlantic ocr504 | 11/14/2015 | active | NC_FILL_DOUBLE | NC_DOUBLE | -79 | RAW_UPWELLING_RADIANCE443 | | Raw upwelling radiance at 443 nanometers | - | | count | - | - | ib | SDN:P01::UPRAXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | Satlantic ocr504 | 11/14/2015 | active | NC_FILL_DOUBLE | NC_DOUBLE | -80 | RAW_UPWELLING_RADIANCE490 | | Raw upwelling radiance at 490 nanometers | - | | count | - | - | ib | SDN:P01::UPRAXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | Satlantic ocr504 | 11/14/2015 | active | NC_FILL_DOUBLE | NC_DOUBLE | -81 | RAW_UPWELLING_RADIANCE555 | | Raw upwelling radiance at 555 nanometers | - | | count | - | - | ib | SDN:P01::UPRAXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | Satlantic ocr504 | 11/14/2015 | active | NC_FILL_DOUBLE | NC_DOUBLE | -82 | UP_RADIANCE | UP_RAD | Upwelling radiance at x nanometers | upwelling_radiance_in_sea_water | | W/m^2/nm/sr | - | - | b | UPRAXXED | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXED/ | SDN:P061::UWNS | http://vocab.nerc.ac.uk/collection/P06/current/UWNS/ | Satlantic ocr504 (unit conversion) | 9/14/2015 | active | 99999.f | float | -83 | UP_RADIANCE412 | | Upwelling radiance at 412 nanometers | upwelling_radiance_in_sea_water | | W/m^2/nm/sr | - | - | b | SDN:P01::RXUU412L | http://vocab.nerc.ac.uk/collection/P01/current/RXUU412L/ | SDN:P061::UWNS | http://vocab.nerc.ac.uk/collection/P06/current/UWNS/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -84 | UP_RADIANCE443 | Upwelling radiance at x nanometers | Upwelling radiance at 443 nanometers | upwelling_radiance_in_sea_water | | W/m^2/nm/sr | - | - | b | SDN:P01::RXUU443L | http://vocab.nerc.ac.uk/collection/P01/current/RXUU443L/ | SDN:P061::UWNS | http://vocab.nerc.ac.uk/collection/P06/current/UWNS/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -85 | UP_RADIANCE490 | | Upwelling radiance at 490 nanometers | upwelling_radiance_in_sea_water | | W/m^2/nm/sr | - | - | b | SDN:P01::RXUU490L | http://vocab.nerc.ac.uk/collection/P01/current/RXUU490L/ | SDN:P061::UWNS | http://vocab.nerc.ac.uk/collection/P06/current/UWNS/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -86 | UP_RADIANCE555 | | Upwelling radiance at 555 nanometers | upwelling_radiance_in_sea_water | | W/m^2/nm/sr | - | - | b | SDN:P01::RXUU555L | http://vocab.nerc.ac.uk/collection/P01/current/RXUU555L/ | SDN:P061::UWNS | http://vocab.nerc.ac.uk/collection/P06/current/UWNS/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -87 | RAW_DOWNWELLING_PAR | RAW_DOWN_PAR | Raw downwelling photosynthetic available radiation | - | | count | - | - | ib | SDN:P01::DWIRRXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRRXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -88 | DOWNWELLING_PAR | DOWN_PAR | Downwelling photosynthetic available radiation | downwelling_photosynthetic_photon_flux_in_sea_water | | microMoleQuanta/m^2/sec | - | - | b | SDN:P01::DWIRRXUD | http://vocab.nerc.ac.uk/collection/P01/current/DWIRRXUD/ | SDN:P061::UMES | http://vocab.nerc.ac.uk/collection/P06/current/UMES/ | | 1/19/2015 | active | 99999.f | float | -89 | TILT | | Inclination of the float axis in respect to the local vertical | - | | degree | - | - | ib | | | | | | 2/2/2016 | active | 99999.f | float | -90 | MTIME | | Fractional day of the individual measurement relative to JULD of the station | - | - | days | -3. | 3 | ic | | | | | | 2/15/2022 | active | 999999. | double | -91 | TEMP_CNDC | | Internal temperature of the conductivity cell | - | - | degree_Celsius | -2.f | 40.f | ic | | | | | | 7/8/2021 | active | 99999.f | float | -92 | CHLA_FLUORESCENCE | | Chlorophyll fluorescence with factory calibration | - | - | ru | -0.2f | 100.f | b | | | | | | 7/8/2021 | active | 99999.f | float | -93 | RAW_DOWNWELLING_IRRADIANCE665 | | Raw downwelling irradiance at 665 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 07/11/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -94 | DOWN_IRRADIANCE665 | | Downwelling irradiance at 665 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD670E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD670E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 07/11/2022 | active | 99999.f | float | \ No newline at end of file diff --git a/file_checker_spec/argo-physical_params-spec-v3.2 b/file_checker_spec/argo-physical_params-spec-v3.2 deleted file mode 100644 index 1a3156f..0000000 --- a/file_checker_spec/argo-physical_params-spec-v3.2 +++ /dev/null @@ -1,103 +0,0 @@ -// Based on: -//"Argo User's manual reference table 3 : list of physical parameters, last update : 15/02/2022" - -// Specification file: -// $Revision: 1297 $ -// $Date: 2022-03-20 16:26:30 +0000 (Sun, 20 Mar 2022) $ - -//Col 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -//Order parameter name "Parameter name short version" long_name cf_standard_name cf_standard_name_uri unit valid_min valid_max core/bio/intermediate core/intermediate bio sdn_parameter_urn sdn_parameter_uri sdn_uom_urn sdn_uom_uri comment update date status Fillvalue Data Type -1 | CNDC | CNDC | Electrical conductivity | sea_water_electrical_conductivity | | mhos/m | 0.f | 8.5f | ic | SDN:P01::CNDCST01 | http://vocab.nerc.ac.uk/collection/P01/current/CNDCST01/ | SDN:P061::UECA | http://vocab.nerc.ac.uk/collection/P06/current/UECA/ | | 12/29/2001 | active | 99999.f | float | -2 | PRES | PRES | Sea water pressure, equals 0 at sea-level | sea_water_pressure | | decibar | 0.f | 12000.f | c | SDN:P01::PRESPR01 | http://vocab.nerc.ac.uk/collection/P01/current/PRESPR01/ | SDN:P061::UPDB | http://vocab.nerc.ac.uk/collection/P06/current/UPDB/ | 19/10/2013 : revision of the long name | 10/19/2013 | active | 99999.f | float | -3 | PSAL | PSAL | Practical salinity | sea_water_salinity | | psu | 2.f | 41.f | c | SDN:P01::PSALST01 | http://vocab.nerc.ac.uk/collection/P01/current/PSALST01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 12/29/2001 | active | 99999.f | float | -4 | TEMP | TEMP | Sea temperature in-situ ITS-90 scale | sea_water_temperature | | degree_Celsius | -2.5f | 40.f | c | SDN:P01::TEMPST01 | http://vocab.nerc.ac.uk/collection/P01/current/TEMPST01/ | SDN:P061::UPAA | http://vocab.nerc.ac.uk/collection/P06/current/UPAA/ | | 12/29/2001 | active | 99999.f | float | -5 | DOXY | DOXY | Dissolved oxygen | moles_of_oxygen_per_unit_mass_in_sea_water | | micromole/kg | -5.f | 600.f | b | SDN:P01::DOXMZZXX | http://vocab.nerc.ac.uk/collection/P01/current/DOXMZZXX/ | SDN:P061::KGUM | http://vocab.nerc.ac.uk/collection/P06/current/KGUM/ | | 11/4/2015 | active | 99999.f | float | -6 | TEMP_DOXY | TEMP_DOXY | Sea temperature from oxygen sensor ITS-90 scale | temperature_of_sensor_for_oxygen_in_sea_water | | degree_Celsius | -2.f | 40.f | ib | SDN:P01::OXYTAAOP | http://vocab.nerc.ac.uk/collection/P01/current/OXYTAAOP/ | SDN:P061::UPAA | http://vocab.nerc.ac.uk/collection/P06/current/UPAA/ | | 3/2/2015 | active | 99999.f | float | -7 | TEMP_VOLTAGE_DOXY | | Thermistor voltage reported by oxygen sensor | - | | volt | - | - | ib | SDN:P01::TCNTOPTT | http://vocab.nerc.ac.uk/collection/P01/current/TCNTOPTT/ | SDN:P061::UVLT | http://vocab.nerc.ac.uk/collection/P06/current/UVLT/ | Voltage from SBE63 thermistor | 11/18/2015 | active | 99999.f | float | -8 | VOLTAGE_DOXY | VOLTAGE_DOXY | Voltage reported by oxygen sensor | - | | volt | 0.f | 100.f | ib | SDN:P01::OXYOCPVL | http://vocab.nerc.ac.uk/collection/P01/current/OXYOCPVL/ | SDN:P061::UVLT | http://vocab.nerc.ac.uk/collection/P06/current/UVLT/ | | 6/20/2014 | active | 99999.f | float | -9 | FREQUENCY_DOXY | FREQUENCY_DOXY | Frequency reported by oxygen sensor | - | | hertz | 0.f | 25000.f | ib | SDN:P01::OXYOCPFR | http://vocab.nerc.ac.uk/collection/P01/current/OXYOCPFR/ | SDN:P061::UTHZ | http://vocab.nerc.ac.uk/collection/P06/current/UTHZ/ | | 6/20/2014 | active | 99999.f | float | -10 | COUNT_DOXY | COUNT_DOXY | Count reported by oxygen sensor | - | | count | - | - | ib | SDN:P01::OXYOOPCT | http://vocab.nerc.ac.uk/collection/P01/current/OXYOOPCT/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 11/26/2015 | active | 99999.f | float | -11 | BPHASE_DOXY | BPHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | - | | degree | 10.f | 70.f | ib | SDN:P01::OXYCPHAB | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAB/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | reported by Aanderaa 3830 optodes | 4/30/2014 | active | 99999.f | float | -12 | DPHASE_DOXY | DPHASE_DOXY | Calibrated phase shift reported by oxygen sensor | - | | degree | 10.f | 70.f | ib | SDN:P01::OXYCPHAC | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAC/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | reported by Aanderaa 3830 optodes | 7/8/2021 | active | 99999.f | float | -13 | TPHASE_DOXY | TPHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | - | | degree | 10.f | 70.f | ib | SDN:P01::OXYCPHTC | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHTC/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | reported by Aanderaa 4330 and 4330F optodes | 7/8/2021 | active | 99999.f | float | -14 | C1PHASE_DOXY | C1PHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | - | | degree | 10.f | 70.f | ib | SDN:P01::OXYCPHAB | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAB/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | reported by Aanderaa 4330 and 4330F optodes | 7/8/2021 | active | 99999.f | float | -15 | C2PHASE_DOXY | C2PHASE_DOXY | Uncalibrated phase shift reported by oxygen sensor | - | | degree | 0.f | 15.f | ib | SDN:P01::OXYCPHAR | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAR/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | reported by Aanderaa 4330 and 4330F optodes | 7/8/2021 | active | 99999.f | float | -16 | MOLAR_DOXY | MOLAR_DOXY | Uncompensated (pressure and salinity) oxygen concentration reported by the oxygen sensor | mole_concentration_of_dissolved_molecular_oxygen_in_sea_water | | micromole/l | 0.f | 650.f | ib | SDN:P01::DOXYMMOP | http://vocab.nerc.ac.uk/collection/P01/current/DOXYMMOP/ | SDN:P061::MMPL | http://vocab.nerc.ac.uk/collection/P06/current/MMPL/ | 21/05/2014 : unit syntax revision | 6/20/2014 | active | 99999.f | float | -17 | PHASE_DELAY_DOXY | PHASE_DELAY_DOXY | Phase delay reported by oxygen sensor | - | | microsecond | 0.f | 99999.f | ib | SDN:P01::OXYCPH01 | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPH01/ | SDN:P061::USEC | http://vocab.nerc.ac.uk/collection/P06/current/USEC/ | SBE63 optode, using value in ms as this is what is reported by sensor | 6/20/2014 | active | 99999.f | float | -18 | MLPL_DOXY | MLPL_DOXY | Oxygen concentration reported by the oxygen sensor | - | | ml/l | 0.f | 650.f | ib | SDN:P01::DOXYZZXX | http://vocab.nerc.ac.uk/collection/P01/current/DOXYZZXX/ | SDN:P061::UMLL | http://vocab.nerc.ac.uk/collection/P06/current/UMLL/ | | 6/19/2013 | active | 99999.f | float | -19 | NB_SAMPLE_CTD | NB_SAMPLE_CTD | Number of samples in each pressure bin for the CTD | - | | count | - | - | ic | SDN:P01::NUMVALES | http://vocab.nerc.ac.uk/collection/P01/current/NUMVALES/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_SHORT | NC_SHORT | -20 | NB_SAMPLE_SFET | NB_SAMPLE_SFET | Number of samples in each pressure bin for the SFET | - | | count | - | - | ib | SDN:P01::NUMVALES | http://vocab.nerc.ac.uk/collection/P01/current/NUMVALES/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_SHORT | NC_SHORT | -21 | NB_SAMPLE_ | NB_SAMPLE_ | Number of samples in each pressure bin for the | - | | count | - | - | ib | SDN:P01::NUMVALES | http://vocab.nerc.ac.uk/collection/P01/current/NUMVALES/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | can be CTD, SFET | 1/20/2022 | active | NC_FILL_SHORT | NC_SHORT | -22 | RPHASE_DOXY | RPHASE_DOXY | Uncalibrated red phase shift reported by oxygen sensor | - | | degree | 10.f | 70.f | ib | SDN:P01::OXYCPHAR | http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAR/ | SDN:P061::UAAA | http://vocab.nerc.ac.uk/collection/P06/current/UAAA/ | | 10/19/2013 | active | 99999.f | float | -23 | TEMP_COUNT_DOXY | | Count which is expressive of uncalibrated temperature value reported by oxygen sensor | - | | count | - | - | ib | | http://vocab.nerc.ac.uk/collection/P01/current// | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 11/26/2015 | active | 99999.f | float | -24 | LED_FLASHING_COUNT_DOXY | | Number of times oxygen sensor flashing to measure oxygen | - | | count | - | - | ib | | http://vocab.nerc.ac.uk/collection/P01/current// | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | reported by ARO-FT optode. This is a double type variable | 12/09/2024 | active | NC_FILL_DOUBLE | NC_DOUBLE | -25 | PPOX_DOXY | | Partial pressure of oxygen | - | | millibar | -5.f | 5000.f | ib | SDN:P01::PPOXZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/PPOXZZ01/ | SDN:P061::UPBB | http://vocab.nerc.ac.uk/collection/P06/current/UPBB/ | Alternative oxygen quantity of oxygen optodes (for in air measurements) | 2/2/2016 | active | 99999.f | float | -26 | BETA_BACKSCATTERING | OPBS_BBP | Total angle specific volume from backscattering sensor at x nanometers | - | | count | - | - | ib | SDN:P01::NVLTOBS1 | http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | ECO3 sensor FLBB sensor | 1/19/2015 | active | 99999.f | float | -27 | BETA_BACKSCATTERING470 | | Total angle specific volume from backscattering sensor at 470 nanometers | - | | count | - | - | ib | SDN:P01::NVLTOBS1 | http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 8/27/2015 | active | 99999.f | float | -28 | BETA_BACKSCATTERING532 | | Total angle specific volume from backscattering sensor at 532 nanometers | - | | count | - | - | ib | SDN:P01::NVLTOBS1 | http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/19/2015 | active | 99999.f | float | -29 | BETA_BACKSCATTERING700 | | Total angle specific volume from backscattering sensor at 700 nanometers | - | | count | - | - | ib | SDN:P01::NVLTOBS1 | http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/19/2015 | active | 99999.f | float | -30 | FLUORESCENCE_CHLA | FVLT_CHLA | Chlorophyll-A signal from fluorescence sensor | - | | count | - | - | ib | SDN:P01::FCNTRW01 | http://vocab.nerc.ac.uk/collection/P01/current/FCNTRW01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | sdn code independent of electromagic wavelength ECO3 sensor FLNTU sensor FLBB sensor | 4/30/2014 | active | 99999.f | float | -31 | TEMP_CPU_CHLA | TEMP_CPU_CHLA | Thermistor signal from backscattering sensor | - | | count | - | - | ib | SDN:P01::TCNTICPU | http://vocab.nerc.ac.uk/collection/P01/current/TCNTICPU/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | CPU termistor temp in counts from WetLabs FLBB | 1/19/2015 | active | 99999.f | float | -32 | FLUORESCENCE_CDOM | FVLT_CDOM | Raw fluorescence from coloured dissolved organic matter sensor | - | | count | - | - | ib | SDN:P01::FLUOCDOM | http://vocab.nerc.ac.uk/collection/P01/current/FLUOCDOM/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | ECO3 sensor | 3/4/2015 | active | 99999.f | float | -33 | SIDE_SCATTERING_TURBIDITY | OPSS_TURB | Turbidity signal from side scattering sensor | - | | count | - | - | ib | SDN:P01::NCNTTUR1 | http://vocab.nerc.ac.uk/collection/P01/current/NCNTTUR1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | FLNTU sensor | 11/14/2015 | active | 99999.f | float | -34 | TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION | ATTN_CP | Beam attenuation from transmissometer sensor at x nanometers | - | | count | - | - | ib | SDN:P01::NCNTATT1 | http://vocab.nerc.ac.uk/collection/P01/current/NCNTATT1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 11/14/2015 | active | 99999.f | float | -35 | TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660 | | Beam attenuation from transmissometer sensor at 660 nanometers | - | | count | - | - | ib | SDN:P01::NCNTATT1 | http://vocab.nerc.ac.uk/collection/P01/current/NCNTATT1/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 2/11/2021 | active | 99999.f | float | -36 | BBP | | Particle backscattering at x nanometers | - | | m-1 | - | - | b | SDN:P01::BSXXXVSF | http://vocab.nerc.ac.uk/collection/P01/current/BSXXXVSF/ | SDN:P061::PMSR | http://vocab.nerc.ac.uk/collection/P06/current/PMSR/ | coefficient or function in cf name? ECO3 sensor | 1/19/2015 | active | 99999.f | float | -37 | BBP470 | Particle backscattering at 470 nanometers | Particle backscattering at 470 nanometers | - | | m-1 | - | - | b | SDN:P01::BB117B01 | http://vocab.nerc.ac.uk/collection/P01/current/BB117B01/ | SDN:P061::PMSR | http://vocab.nerc.ac.uk/collection/P06/current/PMSR/ | coefficient or function in cf name? ECO3 sensor | 8/27/2015 | active | 99999.f | float | -38 | BBP532 | BBP532 | Particle backscattering at 532 nanometers | - | | m-1 | - | - | b | SDN:P01::BB117G01 | http://vocab.nerc.ac.uk/collection/P01/current/BB117G01/ | SDN:P061::PMSR | http://vocab.nerc.ac.uk/collection/P06/current/PMSR/ | coefficient or function in cf name? ECO3 sensor | 1/19/2015 | active | 99999.f | float | -39 | BBP700 | BBP700 | Particle backscattering at 700 nanometers | - | | m-1 | - | - | b | SDN:P01::BB117NIR | http://vocab.nerc.ac.uk/collection/P01/current/BB117NIR/ | SDN:P061::PMSR | http://vocab.nerc.ac.uk/collection/P06/current/PMSR/ | coefficient or function in cf name? ECO3 sensor | 1/19/2015 | active | 99999.f | float | -40 | TURBIDITY | TURB | Sea water turbidity | sea_water_turbidity | | ntu | - | - | b | SDN:P01::TURBXXXX | http://vocab.nerc.ac.uk/collection/P01/current/TURBXXXX/ | SDN:P061::USTU | http://vocab.nerc.ac.uk/collection/P06/current/USTU/ | | 10/19/2013 | active | 99999.f | float | -41 | CP | CP | Particle beam attenuation at x nanometers | - | | m-1 | - | - | b | SDN:P01::ATTNZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/ATTNZZ01/ | SDN:P061::UPRM | http://vocab.nerc.ac.uk/collection/P06/current/UPRM/ | coefficient or function in cf name? C-Rover sensor | 2/5/2014 | active | 99999.f | float | -42 | CP660 | | Particle beam attenuation at 660 nanometers | - | | m-1 | - | - | b | SDN:P01::ATT650AC | http://vocab.nerc.ac.uk/collection/P01/current/ATT650AC/ | SDN:P061::UPRM | http://vocab.nerc.ac.uk/collection/P06/current/UPRM/ | coefficient or function in cf name? C-Rover sensor | 11/14/2015 | active | 99999.f | float | -43 | CHLA | CHLA | Chlorophyll-A | mass_concentration_of_chlorophyll_a_in_sea_water | | mg/m3 | - | - | b | SDN:P01::CPHLPR01 | http://vocab.nerc.ac.uk/collection/P01/current/CPHLPR01/ | SDN:P061::UMMC | http://vocab.nerc.ac.uk/collection/P06/current/UMMC/ | ECO3 sensor | 10/19/2013 | active | 99999.f | float | -44 | CDOM | CDOM | Concentration of coloured dissolved organic matter in sea water | - | | ppb | - | - | b | SDN:P01::CDOMZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/CDOMZZ01/ | SDN:P061::UPPB | http://vocab.nerc.ac.uk/collection/P06/current/UPPB/ | | 11/14/2015 | active | 99999.f | float | -45 | UV_INTENSITY_NITRATE | UV_INT_NTRA | Intensity of ultra violet flux from nitrate sensor | - | | count | - | - | ib | SDN:P01::UVINZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/UVINZZ01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | measurement in counts proportional to light intensity SUNA sensor APF frame 16-bit Spectral values with dimension N_VALUESXX | 11/14/2015 | active | 99999.f | float | -46 | UV_INTENSITY_DARK_NITRATE | UV_INT_D_NTRA | Intensity of ultra violet flux dark measurement from nitrate sensor | - | | count | - | - | ib | SDN:P01::UVDAZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/UVDAZZ01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | average of all 256 dark counts SUNA sensor APF frame 16-bit | 11/14/2015 | active | 99999.f | float | -47 | UV_INTENSITY_DARK_SEAWATER_NITRATE | UV_INT_DSW_NTRA | Intensity of ultra-violet flux dark sea water from nitrate sensor | - | | count | - | - | ib | SDN:P01::UVSDZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/UVSDZZ01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | from light absorption on pixels at shortest wavelengths of array SUNA sensor 16-bit | 11/14/2015 | active | 99999.f | float | -48 | NITRATE | NTRA | Nitrate | moles_of_nitrate_per_unit_mass_in_sea_water | | micromole/kg | - | - | b | SDN:P01::MDMAP005 | http://vocab.nerc.ac.uk/collection/P01/current/MDMAP005/ | SDN:P061::KGUM | http://vocab.nerc.ac.uk/collection/P06/current/KGUM/ | NO3- but netcdf does not support - in variable names so using name rather than abreviation SUNA sensor | 4/30/2014 | active | 99999.f | float | -49 | BISULFIDE | SPWC_NTRA | Bisulfide | - | | micromole/kg | - | - | b | SDN:P01::H2SXZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/H2SXZZ01/ | SDN:P061::KGUM | http://vocab.nerc.ac.uk/collection/P06/current/KGUM/ | HS- but netcdf does not support - in variable names so using name rather than abreviation | 4/30/2014 | active | 99999.f | float | -50 | MOLAR_NITRATE | MOLAR_NTRA | Nitrate | - | | micromole/l | - | - | ib | SDN:P01::NTRZMC01 | http://vocab.nerc.ac.uk/collection/P01/current/NTRZMC01/ | SDN:P06::UPOX | http://vocab.nerc.ac.uk/collection/P06/current/UPOX/ | SUNA sensor | 11/14/2015 | active | 99999.f | float | -51 | FIT_ERROR_NITRATE | FIT_ERROR_NTRA | Nitrate fit error | - | | dimensionless | - | - | ib | SDN:P01::NTFEZZ01 | http://vocab.nerc.ac.uk/collection/P01/current/NTFEZZ01/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | SUNA sensor key variable in QC | 11/14/2015 | active | 99999.f | float | -52 | TEMP_NITRATE | TEMP_NITRATE | Internal temperature of the SUNA sensor | - | | degree_Celsius | - | - | ib | | http://vocab.nerc.ac.uk/collection/P01/current// | | http://vocab.nerc.ac.uk/collection/P06/current// | Technical profile provided by the SUNA sensor of the Remocean floats. | 7/8/2014 | active | 99999.f | float | -53 | TEMP_SPECTROPHOTOMETER_NITRATE | TEMP_SPECTROPHOTOMETER_NITRATE | Temperature of the spectrometer | - | | degree_Celsius | - | - | ib | | http://vocab.nerc.ac.uk/collection/P01/current// | | http://vocab.nerc.ac.uk/collection/P06/current// | Technical profile provided by the SUNA sensor of the Remocean floats. | 7/8/2014 | active | 99999.f | float | -54 | HUMIDITY_NITRATE | HUMIDITY_NITRATE | Relative humidity inside the SUNA sensor (If > 50% There is a leak) | - | | percent | 0.f | 100.f | ib | | http://vocab.nerc.ac.uk/collection/P01/current// | | http://vocab.nerc.ac.uk/collection/P06/current// | Technical profile provided by the SUNA sensor of the Remocean floats. | 7/8/2014 | active | 99999.f | float | -55 | VRS_PH | VRS_PH | Voltage difference between reference and source from pH sensor | - | | volt | - | - | ib | SDN:P01::PVLTGC01 | http://vocab.nerc.ac.uk/collection/P01/current/PVLTGC01/ | SDN:P061::UVLT | http://vocab.nerc.ac.uk/collection/P06/current/UVLT/ | voltage between reference and source of sensor | 10/19/2013 | active | 99999.f | float | -56 | TEMP_PH | | Sea temperature from pH sensor | - | | degree_Celsius | -2.f | 40.f | ib | | | | | Sea temperature from pH sensor | 2/2/2016 | active | 99999.f | float | -57 | IB_PH | | Base current of pH sensor | - | | nanoampere | - | - | ib | | | | | Base current of the pH sensor | 2/2/2016 | active | 99999.f | float | -58 | VK_PH | | Counter electrode voltage of pH sensor | - | | volt | - | - | ib | | | | | Counter electrode voltage of the pH sensor | 1/16/2018 | active | 99999.f | float | -59 | IK_PH | | Counter electrode current of pH sensor | - | | nanoampere | - | - | ib | | | | | Counter electrode current of the pH sensor | 1/16/2018 | active | 99999.f | float | -60 | PH_IN_SITU_TOTAL | PH_TOTAL | pH | sea_water_ph_reported_on_total_scale | | dimensionless | - | - | b | SDN:P01::PHMASSXX | http://vocab.nerc.ac.uk/collection/P01/current/PHMASSXX/ | SDN:P06::UUPH | http://vocab.nerc.ac.uk/collection/P06/current/UUPH/ | (pH based on free proton concentration and proton associated with SO4 2- ion) | 11/14/2015 | active | 99999.f | float | -61 | PH_IN_SITU_FREE | PH_FREE | pH | - | | dimensionless | - | - | ib | SDN:P01::PHFRWCAL | http://vocab.nerc.ac.uk/collection/P01/current/PHFRWCAL/ | SDN:P06::UUPH | http://vocab.nerc.ac.uk/collection/P06/current/UUPH/ | (pH based on free proton concentration) | 11/14/2015 | active | 99999.f | float | -62 | PH_IN_SITU_SEAWATER | PH_SEAWATER | pH | - | | dimensionless | - | - | ib | SDN:P01::PHSWWCAL | http://vocab.nerc.ac.uk/collection/P01/current/PHSWWCAL/ | SDN:P06::UUPH | http://vocab.nerc.ac.uk/collection/P06/current/UUPH/ | (pH based on free proton concentration and protons associated with SO4 2- and F- ions) | 11/14/2015 | active | 99999.f | float | -63 | RAW_DOWNWELLING_IRRADIANCE | RAW_DOWN_IRR | Raw downwelling irradiance at x nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -64 | RAW_DOWNWELLING_IRRADIANCE380 | | Raw downwelling irradiance at 380 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -65 | RAW_DOWNWELLING_IRRADIANCE412 | | Raw downwelling irradiance at 412 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -66 | RAW_DOWNWELLING_IRRADIANCE443 | Raw downwelling irradiance at 443 nanometers | Raw downwelling irradiance at 443 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -67 | RAW_DOWNWELLING_IRRADIANCE490 | | Raw downwelling irradiance at 490 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -68 | RAW_DOWNWELLING_IRRADIANCE555 | | Raw downwelling irradiance at 555 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -69 | RAW_DOWNWELLING_IRRADIANCE670 | | Raw downwelling irradiance at 670 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -70 | DOWN_IRRADIANCE | DOWN_IRR | Downwelling irradiance at x nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::DWIRXXED | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXED/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 2/5/2014 | active | 99999.f | float | -71 | DOWN_IRRADIANCE380 | | Downwelling irradiance at 380 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD380E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD380E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -72 | DOWN_IRRADIANCE412 | | Downwelling irradiance at 412 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD412E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD412E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 6/20/2014 | active | 99999.f | float | -73 | DOWN_IRRADIANCE443 | | Downwelling irradiance at 443 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD443E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD443E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -74 | DOWN_IRRADIANCE490 | | Downwelling irradiance at 490 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD490E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD490E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -75 | DOWN_IRRADIANCE555 | | Downwelling irradiance at 555 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD555E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD555E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -76 | DOWN_IRRADIANCE670 | | Downwelling irradiance at 670 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD670E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD670E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 2/11/2021 | active | 99999.f | float | -77 | RAW_UPWELLING_RADIANCE | RAW_UP_RAD | Raw upwelling radiance at x nanometers | - | | count | - | - | ib | SDN:P01::UPRAXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | Satlantic ocr504 | 6/20/2014 | active | NC_FILL_DOUBLE | NC_DOUBLE | -78 | RAW_UPWELLING_RADIANCE412 | | Raw upwelling radiance at 412 nanometers | - | | count | - | - | ib | SDN:P01::UPRAXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | Satlantic ocr504 | 11/14/2015 | active | NC_FILL_DOUBLE | NC_DOUBLE | -79 | RAW_UPWELLING_RADIANCE443 | | Raw upwelling radiance at 443 nanometers | - | | count | - | - | ib | SDN:P01::UPRAXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | Satlantic ocr504 | 11/14/2015 | active | NC_FILL_DOUBLE | NC_DOUBLE | -80 | RAW_UPWELLING_RADIANCE490 | | Raw upwelling radiance at 490 nanometers | - | | count | - | - | ib | SDN:P01::UPRAXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | Satlantic ocr504 | 11/14/2015 | active | NC_FILL_DOUBLE | NC_DOUBLE | -81 | RAW_UPWELLING_RADIANCE555 | | Raw upwelling radiance at 555 nanometers | - | | count | - | - | ib | SDN:P01::UPRAXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | Satlantic ocr504 | 11/14/2015 | active | NC_FILL_DOUBLE | NC_DOUBLE | -82 | UP_RADIANCE | UP_RAD | Upwelling radiance at x nanometers | upwelling_radiance_in_sea_water | | W/m^2/nm/sr | - | - | b | UPRAXXED | http://vocab.nerc.ac.uk/collection/P01/current/UPRAXXED/ | SDN:P061::UWNS | http://vocab.nerc.ac.uk/collection/P06/current/UWNS/ | Satlantic ocr504 (unit conversion) | 9/14/2015 | active | 99999.f | float | -83 | UP_RADIANCE412 | | Upwelling radiance at 412 nanometers | upwelling_radiance_in_sea_water | | W/m^2/nm/sr | - | - | b | SDN:P01::RXUU412L | http://vocab.nerc.ac.uk/collection/P01/current/RXUU412L/ | SDN:P061::UWNS | http://vocab.nerc.ac.uk/collection/P06/current/UWNS/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -84 | UP_RADIANCE443 | Upwelling radiance at x nanometers | Upwelling radiance at 443 nanometers | upwelling_radiance_in_sea_water | | W/m^2/nm/sr | - | - | b | SDN:P01::RXUU443L | http://vocab.nerc.ac.uk/collection/P01/current/RXUU443L/ | SDN:P061::UWNS | http://vocab.nerc.ac.uk/collection/P06/current/UWNS/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -85 | UP_RADIANCE490 | | Upwelling radiance at 490 nanometers | upwelling_radiance_in_sea_water | | W/m^2/nm/sr | - | - | b | SDN:P01::RXUU490L | http://vocab.nerc.ac.uk/collection/P01/current/RXUU490L/ | SDN:P061::UWNS | http://vocab.nerc.ac.uk/collection/P06/current/UWNS/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -86 | UP_RADIANCE555 | | Upwelling radiance at 555 nanometers | upwelling_radiance_in_sea_water | | W/m^2/nm/sr | - | - | b | SDN:P01::RXUU555L | http://vocab.nerc.ac.uk/collection/P01/current/RXUU555L/ | SDN:P061::UWNS | http://vocab.nerc.ac.uk/collection/P06/current/UWNS/ | Satlantic ocr504 (unit conversion) | 8/27/2015 | active | 99999.f | float | -87 | RAW_DOWNWELLING_PAR | RAW_DOWN_PAR | Raw downwelling photosynthetic available radiation | - | | count | - | - | ib | SDN:P01::DWIRRXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRRXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 1/20/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -88 | DOWNWELLING_PAR | DOWN_PAR | Downwelling photosynthetic available radiation | downwelling_photosynthetic_photon_flux_in_sea_water | | microMoleQuanta/m^2/sec | - | - | b | SDN:P01::DWIRRXUD | http://vocab.nerc.ac.uk/collection/P01/current/DWIRRXUD/ | SDN:P061::UMES | http://vocab.nerc.ac.uk/collection/P06/current/UMES/ | | 1/19/2015 | active | 99999.f | float | -89 | TILT | | Inclination of the float axis in respect to the local vertical | - | | degree | - | - | ib | | | | | | 2/2/2016 | active | 99999.f | float | -90 | MTIME | | Fractional day of the individual measurement relative to JULD of the station | - | - | days | -3. | 3 | ic | | | | | | 2/15/2022 | active | 999999. | double | -91 | TEMP_CNDC | | Internal temperature of the conductivity cell | - | - | degree_Celsius | -2.f | 40.f | ic | | | | | | 7/8/2021 | active | 99999.f | float | -92 | CHLA_FLUORESCENCE | | Chlorophyll fluorescence with factory calibration | - | - | ru | -0.2f | 100.f | b | | | | | | 7/8/2021 | active | 99999.f | float | -93 | RAW_DOWNWELLING_IRRADIANCE665 | | Raw downwelling irradiance at 665 nanometers | - | | count | - | - | ib | SDN:P01::DWIRXXZZ | http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/ | SDN:P061::UUUU | http://vocab.nerc.ac.uk/collection/P06/current/UUUU/ | | 07/11/2022 | active | NC_FILL_DOUBLE | NC_DOUBLE | -94 | DOWN_IRRADIANCE665 | | Downwelling irradiance at 665 nanometers | - | | W/m^2/nm | - | - | b | SDN:P01::RXUD670E | http://vocab.nerc.ac.uk/collection/P01/current/RXUD670E/ | SDN:P061::UWNM | http://vocab.nerc.ac.uk/collection/P06/current/UWNM/ | Satlantic ocr504 (unit conversion) | 07/11/2022 | active | 99999.f | float | \ No newline at end of file diff --git a/file_checker_spec/argo-tech_names-spec-v2.3 b/file_checker_spec/argo-tech_names-spec-v2.3 deleted file mode 100644 index b917488..0000000 --- a/file_checker_spec/argo-tech_names-spec-v2.3 +++ /dev/null @@ -1,640 +0,0 @@ -//parameter code | description | comment | transmitted/calculated | parameter type | float type | creation date | update date | obsolete date -//"Non-technical data (statistics, QC and diagnostic data)" | | | | | | | | -FLAG_GreyListPSAL_LOGICAL | "Y=yes, N=no (or field is absent)" | | | | | | | -FLAG_GreyListTEMP_LOGICAL | "Y=yes, N=no (or field is absent)" | | | | | | | -FLAG_SpeedMaximumCheck_NUMBER | needs valid definitions | | | | | | | -TEMP_MixedLayerMedian_degC | median of the mixed layer samples taken | | | | | 1/15/2013 | 1/15/2013 | -TEMP_MixedLayerInfimum_degC | infimum of the mixed-layer median temperature since the last successful telemetry | | | | | 1/15/2013 | 1/15/2013 | -CURRENT_MotorMeanOfProfile_amps | Mean of motor current during upcast | | T | | | | | -BACKSCATTERING_MeanBeforeAscent_m^-1/sr | Bio parameter statistic | | | | | | 1/5/2012 | -CDOM_MeanBeforeAscent_ppb | Bio parameter statistic | | | | | | 1/5/2012 | -CHLT_MeanBeforeAscent_mg/m^3 | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W1_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W2_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W3_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | - -//Surface Pressure Offset variable names - note that this table is also appended to the Argo User's manual as table ?? | | | | | | | | - -PRES_SurfaceOffsetTruncatedPlus5dbar_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, negative offsets truncated to 0, 5dbar addedNot autocorrected" | "Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | "R1-SBE, APEX-SBE, all APEX up to APEX APF8s" | | 5/29/2012 | -PRES_SurfaceOffsetTruncatedPlus3dbar_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset, negative offsets truncated to 0, 3dbar addedNot autocorrected" | "Subtract 3 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | R1-SBE | | 5/29/2012 | -PRES_SurfaceOffsetTruncated_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, negative offsets truncated to 0Not autocorrected" | " In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. NOTE - unlike the previous name, it DOES NOT have 5db added and so this does not need to be removed before use." | T | | 2 ALACE R1 FSI floats | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncated_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, This IS NOT used to correct pressure on boardNot autocorrected" | "In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | "APEX APF9, pre 2002 SOLO-SIO, Metocean PROVOR, NEMO (SN>=90), PALACE " | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncated_approx5dbarResolution_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset, This IS NOT used to correct pressure on board. Also note that the resolution varies because counts are repoted and converted using different calibration coefficients for each floatNot autocorrected" | | T | | APEX APF1 | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncatedPlus5dbar_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset with 5dbar added.Not autocorrected" | "Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | APEX APF-8 after firmware update 14-12-07 | | 5/29/2012 | -PRES_SurfaceOffsetCorrectedNotReset_1dbarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative offset but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "Provor T,CTF2, CTF3, and CTS2, JAMSTEC's MetOcean PROVOR " | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotReset_1cBarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative offset but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "JAMSTEC's PROVOR-CTS3, NINJA (2003) and MetOcean PROVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1dbarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "PROVOR CTS3, PROVOR-DO and ARVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1cBarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "PROVOR CTS3, PROVOR-DO and ARVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1mBarResolution_dbar | Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required. Autocorrected | The CTS5 provides the Poffset with a 1 mBar resolution. | T | | PROVOR CTS5 | 2/1/2016 | | -PRES_SurfaceOffsetBeforeReset_dbar | Surface pressure measurement which is then used to correct pressure on board the float. Note: thus is a relative offset and no further correction is required. | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeResetTruncated_dbar | "Surface pressure measurement which is then used to correct pressure on board the float. Note: this is a CUMULATIVE offset and no further correction is required. Negative offsets truncated to 0.Autocorrected" | "Autocorrecting so no adjustment in either RT or DM typically required. NOTE: if the SPO is >40 for the Argo CTD, then the autocorrection is PARTIALLY applied (40 is subtracted, leaving the 'excess' offset uncorrected) and the pressures may need to be adjusted in RT and DM." | T | | NEMO(SN<80) | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_dbar | "Surface pressure measured after pressure has been corrected on board the float. This is a relative measurement and no further correction is required. Autocorrected" | "Autocorrecting so no adjustment in either RT or DM typically required. This value used as a check on the autocorrecting of pressure onboard the float. Significant values may indicate a need for additional correction" | T | | SOLO-SIO (secondary name used in conjunction with PRES_SurfaceOffsetBeforeReset_dbar ) | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_1dBarResolution_dbar | "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile. Note: this is a relative offset and no further correction is possible.Autocorrected" | Autocorrecting so no adjustment in either RT or DM possible | T | | "French PROVOR-CTS3, PROVOR-DO, ARVOR - may be used for other floats as well." | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_1cBarResolution_dbar | "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile. Note: this is a relative offset.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required but this could be applied in DMQC. | T | | "French PROVOR-CTS3, PROVOR-DO, ARVOR, SOLO-WHOI, SOLO-SIO - may be used for other floats as well." | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_1cBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_5cBarResolution_dbar | "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.5db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_5cBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.5db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_2mBarResolution_dbar | "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.04db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required (changed from 4 to 2mBar resolution as per Gilson request) | T | | SOLO II-SIO | | 1/6/2013 | -PRES_SurfaceOffsetAfterReset_2mBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.04db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required (changed from 4 to 2mBar resolution as per Gilson request) | T | | SOLO II-SIO | | 1/6/2013 | -PRES_SensorAutoAdjustment_dbar | TOTAL Surface pressure offset applied by the float since deployment - this is a cumulative offset (with limitations) and cannot be used for pressure correction | This is a surface pressure name for reference only | T | | SOLO II-SIO | | | - -//end surface pressure offset section... | | | | | | | | - -CLOCK_EndAscentToSurface_hours | "ascent end time, just before Argos transmission - note units can vary and the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time." | JULD_ASCENT_END and JULD with MC=600 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartAscentToSurface_hours | ascent start time - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_ASCENT_START and JULD with MC=500 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentToPark_hours | time when park pressure is reached - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentToPark_hours | time after the crossing the gap threshold - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | not sure where this is - at the surface? | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentToProfile_hours | time when float reaches profile pressure - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DEEP_DESCENT_END or JULD_DEEP_PARK_START and JULD with MC=400 or JULD with MC=450 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentToProfile_hours | time when descent to profile pressure starts - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_PARK_END and JULD with MC=300 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentProfile_hours | time when descent profile starts - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_START and JULD with MC=100 assuming descending profile starts when float leaves the surface; otherwise choose the appropriate timing variable | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentProfile_hours | time when descent profile ends - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250 assuming descending profile ends with a park phase; otherwise choose the appropriate timing variable | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndAscentToSurfaceEstimated_HHMMSS | Theoretical time of end of ascent to surface | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeFromStartUp_hours | Time from start up - note that you should also store the time of the satellite message from which this was calculated. | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartInternalCycle_FloatDay | the time of the (internal) cycle start for floats with multiple sub-cycles | | | | | | | -CLOCK_RealTimeDrift_seconds | The difference (seconds)between apf9's real time clock (rtc) and gps time representing clock drift | "is also represented in the traj files. We have CLOCK_OFFSET which is defined as: Decimal part of day that float clock has drifted. Float clockdrift is defined as Float time (provided by the inboard RealTime Clock (RTC) of the float) UT time. " | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatTime_HHMMSS | float internal clock time | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatTimeCorrection_MMSS | float internal clock time correction | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_DateFirstParkSample_YYYYMMDD | float internal clock date of the first park sample | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeFirstParkSample_hours | float internal clock time of the first park sample | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_InitialStabilizationDuringDescentToPark_hours | time when first stabilization appears during descent to park | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_InitialValveActionDescentToPark_HHMM | Time in the day when the float first activated the valve during its descent | | T | | | 5/25/2012 | 5/25/2012 | -TIME_ValveActionsAtSurface_minutes | duration of the basic valve actions which is computed by the float from preceding cycles | | | | | 7/8/2014 | 7/8/2014 | -CLOCK_ValveActionsAtSurface_HHMM | the time when the float moves the valve to acquire additional buoyancy for surface drift. | | | | | | | -CLOCK_PumpActionsAtSurface_HHMM | the time when the float moves the pump to acquire additional buoyancy for surface drift. | | | | | 7/8/2014 | 7/8/2014 | -CLOCK_Satellite_HHMMSS | time derived from satellite communications | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_TransmissionStart_HHMMSS | time of the first transmission for this cycle NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | TRANSMISSION_START_TIME and in JULD with MC=700 | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TransmissionEndTime_YYYYMMDDHHMMSS | time when transmission is ended - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | TRANSMISSION_END_TIME and JULD with MC=800 | T | | NINJA_D | 5/19/2014 | 5/19/2014 | -CLOCK_LastIridiumGPSFix_DD | Day of month of last GPS fix/Time of Last GPS Fix (HH) | | | | | | | -CLOCK_FloatDayOfYear_days | internal float day of year | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatDate_YYYYMMDD | internal float date | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatDateTimeDownTimeExpired_YYYYMMDDHHMMSS | Time of expiry of the descent time and beginning of ascent | | | | | 29/0512 | 29/0512 | -CLOCK_AscentInitiationFromDownTimeExpiryOffset_minutes | "Profile initiation time (minutes) 2's compliment signed integer (positive values - profile initiated after down time expired, negative values - profile initiated before down time expired)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_EOLStart_YYYYMMDDHHMMSS | Clock time when End of Life mode starts | | | | | 10/9/2014 | 10/9/2014 | -CLOCK_TimeGrounded_HHMM | time the float grounded | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_BuoyancyInversionStart_FloatDay | Time when the float starts the buoyancy inversion phase when ice was detected during ascent. | "When the ascent profil is aborted because of the Ice detection algorithm, the float starts a 'buoyancy inversion phase'. The current label reports the start time of this phase and NUMBER_BuoyancyInversionValveActions__COUNT the number of valve actions needed to invert float buoyancy. See 132,1" | T | | Provor CTS4 | 5/24/2018 | 5/24/2018 | -CLOCK_ReceptionEndDateTime_YYYYMMDDHHMMSS | End date-time of argos message reception | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ReceptionEndDateTime_NUMBER | "Status of the end date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_ReceptionStartDateTime_YYYYMMDDHHMMSS | Start date-time of argos message reception | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ReceptionStartDateTime_NUMBER | "Status of the start date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_LastReset_YYYYMMDDHHMMSS | Clock time of the last reset of the float | | T | | | 10/9/2014 | 10/9/2014 | -CLOCK_DateOfEmergencyAscent_DDMMYYYY | date of emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeOfFirstEmergencyAscent_HHMMSS | time of first emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_PressureActivationStart_YYYYMMDDHHMMSS | pressure activation scrutation start date | The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. | T | | Provor CTS5 | 24/10/2018 | 24/10/2018 | -CLOCK_PressureActivationStop_YYYYMMDDHHMMSS | pressure activation scrutation end date | The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. | T | | Provor CTS5 | 24/10/2018 | 24/10/2018 | -NUMBER_PumpActionsOnFirstEmergencyAscent_COUNT | Emergency ascent - pump actions at emergency depth | | T | | | 1/5/2012 | 1/5/2012 | -PRES_FirstEmergencyAscent_dbar | Pressure that triggered the first emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_EmergencyAscents_COUNT | Number of Emergency ascents - Internal count | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_EmergencyAscent_LOGICAL | Was an emergency ascent performed? | | T | | | 5/25/2012 | 5/25/2012 | -PRES_LastAscentPumpedRawSample_dbar | Last (shallowest) pumped raw pressure sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped) (in dbars).- note this may be duplicated in the traj files with MC599 | | | | | | | -NUMBER_ParkAndProfileCycleCounter_COUNT | this is an indication of how often the float does a profile deeper than its park depth. | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentArgosMessages_COUNT | number of transmitted Argos messages with ascent data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentArgosMessages_COUNT | number of transmitted Argos messages with descent data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkArgosMessages_COUNT | number of transmitted Argos messages with park data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentIridiumMessages_COUNT | number of transmitted Iridium messages with ascent data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_DescentIridiumMessages_COUNT | number of transmitted Iridium messages with descent data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_ParkIridiumMessages_COUNT | number of transmitted Iridium messages with park data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_IridiumResets_COUNT | Number of Power Resets iridium | | | | | 5/25/2012 | 5/25/2012 | -NUMBER_IridiumPacketsReceivedPreviousSession_COUNT | Number of Incoming Iridium Packets Received during previous session | | | | | 5/25/2012 | 10/10/2014 | -NUMBER_IridiumMessagesReceivedPreviousSession_COUNT | Number of Incoming Iridium Messages Received during previous session | | | | | 10/10/2014 | 10/10/2014 | -NUMBER_IridiumMessagesSentPreviousSession_COUNT | Number of Incoming Iridium Messages Sent during previous session | | | | | 10/10/2014 | 10/10/2014 | -NUMBER_NearSurfaceIridiumPackets_COUNT | "Number of Iridium packets used to transmit sensor data collected during the ""near surface measurement"" phase." | internal counter measured by the float | C | | | 7/14/2016 | 7/14/2016 | -NUMBER_InAirIridiumPackets_COUNT | "Number of Iridium packets used to transmit sensor data collected during the ""in air measurement"" phase." | internal counter measured by the float | C | | | 7/14/2016 | 7/14/2016 | -NUMBER_RemoteControlCommandKO_COUNT | Number of remote control commands rejected by the float. | See also ID 309 | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_RemoteControlCommandOK_COUNT | Number of remote control commands successfully considered. | The float can receive message with multiple remote commands. It reports the number of received messages (in FLAG_RemoteControlMessageOK_COUNT and FLAG_RemoteControlMessageKO_COUNT) and also the the number of received commands (in these 2 new labels). See ID 310 | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_GPSResets_COUNT | Number of Power Resets GPS | | | | | 5/25/2012 | 5/25/2012 | -NUMBER_RetriesForGPSAcquisition_COUNT | Number of times the GPS had to try to get a valid fix | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_PRESIridiumMessages_COUNT | number of iridium messages containing PRES data | | | | | 2/11/2014 | 2/11/2014 | -NUMBER_HydraulicRecords_COUNT | Number of hydraulic (pump or valve) actions performed during the cycle. Due to transmission limitations some of them may not be transmitted (in the NUMBER_HydraulicPackets_COUNT transmitted packets). | | | | | 2/11/2014 | 2/11/2014 | - -NUMBER_BinsWithBadData_COUNT | number of pressure bins with bad data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_BinsWithData_COUNT | number of pressure bins with data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkEntriesInParkMargin_COUNT | "descent to park pressure: number of entries in margin around park pressure target - specifically, how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db)" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToProfileEntriesInProfileMargin_COUNT | "descent to profile pressure: number of entries in margin around profile pressure target - specifically, how many times the float enters the band of pressure surrounding the target profile pressure (generally +/- 30db)" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkAndToProfEntriesInParkMargin_COUNT | "Cumulated numbers of entries in both parking zones (at park and profile depth). Specifically, how many times the float enters the band of pressure surrounding the target park/profile pressure (thus 2 is the nominal value for a float which never experienced stabilization issues)." | | | | | | | -NUMBER_HydraulicPackets_COUNT | Number of hydraulic packets used to transmit hydraulic (pump or valve) actions performed during the cycle. | | | | | | | -NUMBER_NearSurfaceSamples_COUNT | Near surface measurements - Internal counter | | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_InAirSamples_COUNT | In air measurements - Internal counter | | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_MixedLayerSamples_COUNT | number of CTD samples taken in the mixed layer | | | | | 1/15/2013 | 1/15/2013 | -NUMBER_ProfileSamples_COUNT | "the number of STP spot samples collected during the profile, not including the park-level spot sample " | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkSamples_COUNT | number of samples collected during park phase | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsToStartAscent_COUNT | Number of pump actions needed to start the ascent. | | | | | 4/30/2015 | 4/30/2015 | -NUMBER_PumpActionsDuringAscentToSurface_COUNT | number of pump actions between start and end of ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsAtSurface_COUNT | number of pump actions at emergence before transmission | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringPark_COUNT | number of pump actions while at park depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringDescentToPark_COUNT | number of pump actions between the crossing of the gap threshold and the end of descent at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringDescentToProfile_COUNT | number of pump actions during descent to start profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RepositionsDuringPark_COUNT | number of times the float readjusts its buoyancy during park phase - using either the pump or EV | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RepositionsAtProfileDepth_COUNT | "at profile pressure stand-by, number of times the float readjusts its buoyancy - using either the pump or EV" | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringPark_COUNT | number of valve actions during park phase | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringDescentToPark_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringDescentToProfile_COUNT | number of valve actions during descent to start profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT | number of solenoid valve actions at the surface until the crossing of the GAP threshold | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT | Number of solenoid valve actions at the surface until the crossing of the GAP threshold. Number computed by the float from previous cycles behaviour. | "This float version provides 2 counts for surface valve actions performed before the GAP threshold (threshold used to detect 'float descent start', see 126). This first one (NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT ) is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). It needs to be combined with the second (NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT, see 126,2) to get the parameter defined in 126 NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT= NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT " | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT | Number of solenoid valve actions at the surface until the crossing of the GAP threshold. These actions are performed after the NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT previous ones. | "see above (126,1 and 126). NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold." | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_ValveActionsDuringProfileDrift_COUNT | number of valve actions while drifting at profile depth | The first one: NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsForGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag | The second one: NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold. | T | | | 10/9/2014 | 10/9/2014 | -NUMBER_ValveActionsForFirstGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag for the first grounding event | Thus NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT = NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT | T | | | 5/5/2015 | 5/5/2015 | -NUMBER_ValveActionsForSecondGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag for the second grounding event | | T | | | 5/5/2015 | 5/5/2015 | -NUMBER_PumpActionsWhenGroundedAtProfilePressure_COUNT | number of pump actions needed to leave the sea bottom when grounded at profile pressure | | T | | | 10/9/2014 | 10/9/2014 | -NUMBER_MotorActionsDuringProfileDrift_COUNT | number of motor actions while drifting at profile depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentToPark_COUNT | number of motor actions between surface and parking depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentParkToProfile_COUNT | number of motor actions between parking depth and deepest position | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentToProfile_COUNT | number of motor actions between start and end ofdescent from park depth to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringAscentToSurface_COUNT | number of motor actions between start and end of descent to profile depth | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_BuoyancyInversionValveActions_COUNT | Number of solenoid valve actions needed to perform the buoyancy inversion phase when ice was detected during ascent. | "see 76 and 76,1" | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_AscentSamples_COUNT | ascent: total number of samples collected during ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples1stBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples2ndBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples3rdBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples4thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples5thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples6thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples7thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_FltnuAscentSamples_COUNT | ascent: Flntu profile length | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_DeepSamplesDuringAscent_COUNT | ascent: number of samples collected in deep area during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ShallowSamplesDuringAscent_COUNT | ascent: number of samples collected in shallow area during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DeepSamplesDuringDescent_COUNT | descent: number of samples collected in deep area during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ShallowSamplesDuringDescent_COUNT | descent: number of samples collected in shallow area during descent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RangeOverflowDuringAscent_COUNT | number of range overflows in measurements during ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RangeOverflowDuringPark_COUNT | number of range overflows in measurements during parking | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ArgosPositioningClass0_COUNT | positioning (ARGOS message) - Class 0 - accuracy >1500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass1_COUNT | positioning (ARGOS message) - Class 1 - accuracy better than 1500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass2_COUNT | positioning (ARGOS message) - Class 2 - accuracy better than 500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass3_COUNT | positioning (ARGOS message) - Class 3 - accuracy better than 250m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositions_COUNT | total number of Argos positions received. | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ArgosPositioningClassA_COUNT | positioning (ARGOS message) - Class A | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClassB_COUNT | positioning (ARGOS message) - Class B | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClassZ_COUNT | positioning (ARGOS message) - Class Z | | C | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningMessageRejected_COUNT | positioning (ARGOS message) - Rejected | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_GPSSatellites_COUNT | number of GPS satellites seen by the float | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileOldNotSent_COUNT | Number of older profiles not sent. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileSamplesLowResolution_COUNT | number of low resolution profile samples | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscendingSamplesDeepAbsolute_COUNT | Ascending profile measurements - Deep absolute | Note - JP indicates that depth and surface are inaccurate terms here and deep/shallow are better so I have made this change for all of these variables | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepRelative_COUNT | Ascending profile measurements - Deep relative | "Note also that these variables now can be used for any sensor, being replaced with the relevant variable" | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepTotal_COUNT | Ascending profile measurements - Deep total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowAbsolute_COUNT | Ascending profile measurements - Shallow absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowRelative_COUNT | Ascending profile measurements - Shallow relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowTotal_COUNT | Ascending profile measurements - Shallow total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesTotal_COUNT | Ascending profile measurements - Profile total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesAbsolute_COUNT | Ascending profile measurements - Profile absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesRelative_COUNT | Ascending profile measurements - Profile relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepInternalCounter_COUNT | Ascending profile measurements - Deep internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowInternalCounter_COUNT | Ascending profile measurements - Shallow internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesInternal_COUNT | Ascending profile measurements - Internal count | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingProfileReductionLowerPart_COUNT | Ascending profile reduction Number of slices in deep zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscendingProfileReductionUpperPart_COUNT | Ascending profile reduction Number of slices in shallow zone | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_DescendingProfileReductionLowerPart_COUNT | Descending profile reduction Number of slices in deep zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingProfileReductionUpperPart_COUNT | Descending profile reduction Number of slices in shallow zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesAbsolute_COUNT | Descending profile measurements - Profile absolute | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesRelative_COUNT | Descending profile measurements - Profile relative | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesTotal_COUNT | Descending profile measurements - Profile total | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_DescendingSamplesDeepAbsolute_COUNT | Descending profile measurements - Depth absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesDeepRelative_COUNT | Descending profile measurements - Depth relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesDeepTotal_COUNT | Descending profile measurements - Depth total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowAbsolute_COUNT | Descending profile measurements - Surface absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowRelative_COUNT | Descending profile measurements - Surface relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowTotal_COUNT | Descending profile measurements - Surface total | | | | | 1/5/2012 | 12/18/2013 | - -NUMBER_PRESSamplesDuringDescentToPark_COUNT | number of pressure samples collected as the float descends from the Shallow to the park pressure. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_PRESSamplesDuringDescentToProfile_COUNT | "number of pressure samples collected after park, during descent to the profile depth - see PRES_1HourIntoDescentToProfile_dbar for the data collected" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingPRESSamples_COUNT | number of descending Profile pressure measurements | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkEntriesInGap_COUNT | Descent to park float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToProfileEntriesInGap_COUNT | Descent to profile float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentEntriesInGap_COUNT | Descent float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile_COUNT | Distinct frames emitted on ascending profile | "Note - similarly to above, DOXY etc have been repaced by making these more flexible" | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnDescendingProfile_COUNT | Distinct frames emitted on descending profile | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnPark_COUNT | Distinct frames emitted on immersion profile | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FloatFramesCompleteOnDescendingProfile_COUNT | Provor frames complete on descending profile | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_FloatFramesOkOnDescendingProfile_COUNT | Provor frames ok on descending profile | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_FloatFramesReceivedOnDescendingProfile_COUNT | Provor frames received on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FloatPTOrPTCFrames_COUNT | Transmission (PROVOR frames) - PT or PTC frames | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FloatPTOrPFramesOk_COUNT | Transmission (PROVOR frames) - PT or PTC OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCompleteOnAscendingProfile_COUNT | Frames complete on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCompleteOnPark_COUNT | Frames complete on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCrcOkOnDescendingProfile_COUNT | Distinct frames received with crc ok on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCrcOkOnPark_COUNT | Distinct frames received with crc ok on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnDescendingProfile_COUNT | Distinct frames emitted on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile_COUNT | Distinct frames emitted on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnPark_COUNT | Distinct frames emitted on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesOkOnAscendingProfile_COUNT | Frames ok on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesOkOnPark_COUNT | Frames ok on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedCrcOkOnAscendingProfile_COUNT | Distinct frames received with crc ok on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedOnAscendingProfile_COUNT | Frames received on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedOnPark_COUNT | Frames received on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnAscendingProfile_COUNT | Frames recombined on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnDescendingProfile_COUNT | Frames recombined on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnPark_COUNT | Frames recombined on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_RecordsInDataset_COUNT | "The number of records in each dataset type [1-5] as transmitted - dataset 1=test data, 2=park data if profile, GPS data if test, 3=not used, 4=profile data, 5=GPS data for profile. This is currently applicable to NEMO floats only." | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile1_COUNT | Distinct optique frames emitted on ascending profile - Profile 1 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnAscendingProfile2_COUNT | Distinct optique frames emitted on ascending profile - Profile 2 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnAscendingProfile3_COUNT | Distinct optique frames emitted on ascending profile - Profile 3 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile1_COUNT | Ascending profile optique measurements - Internal counter - Profile 1 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile2_COUNT | Ascending profile optique measurements - Internal counter - Profile 2 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile3_COUNT | Ascending profile optique measurements - Internal counter - Profile 3 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_SpyFramesEmitted_COUNT | Distinct spy frames emitted | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkSamplesAbsolute_COUNT | Park measurements - Drift absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesInternal_COUNT | Park measurements - Internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesRelative_COUNT | Park measurements - Drift relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesTotal_COUNT | Park measurements - Drift total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkGapOrder_COUNT | Park float control - Gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TemporaryCycleIdentification_COUNT | Temporary - used to identify the recalculated Apex tech_cycle_data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesComplete_COUNT | Transmission (PROVOR frames) - Complete | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesCrcOk_COUNT | Transmission (PROVOR frames) - CRC OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesReceived_COUNT | Transmission (PROVOR frames) - Received | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesRecombined_COUNT | Transmission (PROVOR frames) - Recombined | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesTechnical_COUNT | Transmission (PROVOR frames) - Technical frames | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesTechnicalOk_COUNT | Transmission (PROVOR frames) - Technical OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TelemetryRetransmission_COUNT | Number of repeated transmissions of float data for each Argos message | | | | | | | -NUMBER_AscentPTMessages_COUNT | NUMBER OF ASCENT PT MESSAGES | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentPTMessages_COUNT | NUMBER OF DESCENT PT MESSAGES | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkPTMessages_COUNT | NUMBER OF DRIFT PT MESSAGES | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkDriftEntriesInParkMargin_COUNT | "drift at park pressure: number of entries in margin around park pressure target - specifically, how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db)" | | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -NUMBER_ParkDriftExitsFromParkMargin_COUNT | "drift at park pressure: number of exits from margin around park pressure target - specifically, how many times the float exits the band of pressure surrounding the target park pressure (generally +/- 30db)" | | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -NUMBER_DOXYErrorsAscending_COUNT | Number of O2_ Optode errors during profile. Zero if no sensor installed. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_RAFOSErrorsAscending_COUNT | Number of RAFOS errors during profile. Zero if no rafos module installed. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorErrorDuringProfile_COUNT | Number of moter errors during profile | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDReset_COUNT | CTD reset count | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDError_COUNT | CTD error count | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDAcquisitionsFailed_COUNT | Number of Failed CTD Acquisitions | | T | | | 5/25/2012 | 5/25/2012 | -NUMBER_MiddleSamplesDuringAscent_COUNT | ascent: number of samples in middle area | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AirPumpPulsesToInflateBladder_COUNT | number of 6-second pulses of the air pump required to inflate the air bladder | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorDeepZoneDuringAscending_COUNT | error of temperature measurements in deep zone during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorDeepZoneDuringDescending_COUNT | error of temperature measurements in deep zone during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorShallowZoneDuringAscending_COUNT | error of temperature measurements in deep shallow during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorShallowZoneDuringDescending_COUNT | error of temperature measurements in shallow zone during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileCrossCalibrationSamples_COUNT | " the number of Near Surface Temperature monitoring cross calibration samples (pumped PTS,non-pumped PT)." | | | | | 2/2/2016 | 2/2/2016 | -NUMBER_ProfileNearSurfaceTemperatureSamples_COUNT | the number of Near Surface Temperature monitoring PT samples (non-pumped PT) | | | | | 2/2/2016 | 2/2/2016 | removed | | configuration variable - do not use | | | | 1/5/2012 | 1/5/2012 | 11/1/2014 -NUMBER_SensorAnomaly_COUNT | number of anomalous sensor readings (?) | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CoherenceProblem_COUNT | SBE sensor data check used to diagnose problems | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ExceptionProgramCounter_NUMBER | "Exception Program Counter (EPC) used to store the address of theinstruction that was executing when the exception was generated." | "The new 'Emergency' Apex-APF11 float message provide a 4 bytes information called 'PC: The exception program counter'. Customers would report emergency messages to Teledyne, and from that TWR will identify the source of the problem. - -//Actual instruction addresses in the running program change for every version of code released." | T | | APEX with APF-11 | 5/24/2018 | 5/24/2018 | -DIAGNOSTICbit_CPUBatteryVoltage_bit | bit indicating the status of the CPU battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_CurrentWithMotorOut_bit | bit indicating the current with motor out | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_PressureOffsetAfterReset_bit | bit indicating the status of the pressure offset after reset | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_VacuumPressure_bit | bit indicating the status of the pressure of the vacuum | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_TimeMotorOut_bit | bit indicating the status of the time motor out | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_BatteryPumpVoltage_bit | bit indicating the status of the pump battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_ArgosTransmitterBootFailure_bit | was there an Argos transmitter boot failure | | | | | | | -DIAGNOSTICbit_ArgosTransmitterUnexpectedResponse_bit | was there an Argos transmitter unexpected response | | | | | | | -DIAGNOSTICbit_ArgosTransmitterNonresponsive_bit | is the Argos transmitter non responsive | | | | | | | -DIAGNOSTICbit_ArgosTransmitterNegativeAcknowledgeRecieved_bit | was there an Argos transmitter negative acknowledge recieved | | | | | | | -DIAGNOSTICbit_ArgosTransmitterRebootDetected_bit | was there an Argos transmitter reboot detected | | | | | | | -DIAGNOSTICbit_ArgosTransmitterPowerCycled_bit | did the Argos transmitter power cycled | | | | | | | -DIAGNOSTICbit_ArgosTransmitterIncommunicado_bit | did the Argos transmitter attempt to communicate fail | | | | | | | -DIAGNOSTICbit_ArgosTransmitterXmitFail_bit | did the Argos transmitter transmission attempt fail | | | | | | | - -FLAG_8BitProfileCounterOverflowed_LOGICAL | The 8-bit profile counter overflowed (Yes/1 or No/0_ | | | | | 1/5/2012 | 1/5/2012 | -FLAG_AirInflationSystemByPassedExcessiveEnergyConsumption_LOGICAL | Air inflation system by-passed; excessive energy consumption (Yes/1 or No/0) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_AntennaStatus_NUMBER | Flag indicating the status of the antenna (see manual) | | T | | | 7/14/2016 | 7/14/2016 | -FLAG_AscendingProfile_NUMBER | Status of profile upcast. 0=UPCAST_BUSY 1=UPCST_DONE 2=UPCAST_TIMEOUT 3=UPCAST_ICE_DETECTION | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_AscentError_NUMBER | "0=normal, 81=too shallow (grounding?) , 82=over 2100dbar, 84=sensor error" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_AscentTimeOutExpired_LOGICAL | Ascent time out expired (Yes/1 or No/0) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_BitMaskMonthsIceDetectionActive_ NUMBER | when is ice detection active - months in reverse order | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_CTDStatus_NUMBER | Flag indicating the status of the CTD (see manual) (could be reported as hex) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_CTDFastPressureError_LOGICAL | Flag for Error on CTD Fast Pressure Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDStartProfileError_LOGICAL | Flag for Error on CTD Start Profile Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDStopProfileError_LOGICAL | Flag for Error on CTD Stop Profile Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDDownloadError_LOGICAL | Flag for Error on CTD Download Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDAverageError_LOGICAL | Flag for Error on CTD Average Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_DataEntryError_LOGICAL | Data entry error (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_DataStateIndicator_LOGICAL | "Data state indicator - again, duplicated from the profile file)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_DeepProfile_LOGICAL | The current profile is a deep profile (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuNoResponse_LOGICAL | Flntu : No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuNullArgumentDetectedDuringMeasurement_LOGICAL | Flntu : Null argument detected during measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuPowerDownFailed_LOGICAL | Flntu : Power down failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuPowerUpFailed_LOGICAL | Flntu : Power up failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuResponseFailedRegexMatch_LOGICAL | Flntu : Response failed regex match (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuStatus_NUMBER | Flag indicating the status of the FLNTU (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlbbStatus_NUMBER | Flag indicating the status of the FLBB (see manual) | | T | | | 22/08/2066 | 22/08/2016 | -FLAG_FloatStatus_NUMBER | Flag indicating the status of the Float (see manual) (could be reported as hex) | | T/C | | | 1/5/2012 | 1/5/2012 | -FLAG_InitialMemoryIntegrityCheck_LOGICAL | Software check on the float memory contents (0 if problems were found and 1 if no problem occured) | Check the consistency of the default values stored in the dedicated memory | T | | | 22/08/2016 | 22/08/2016 | -FLAG_GPSStatus_LOGICAL | Flag indicating whether GPS is valid (1) or not valid (0) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Grounded_NUMBER | "grounded flag , diagnostic bit - could also be logical? Yes/no? 0/1? Or can be number of profiles during which the float grounded" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FirstGroundingCyclePhase_NUMBER | Phase of the float life or cycle when the first grounding occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_SecondGroundingCyclePhase_NUMBER | Phase of the float life or cycle when the second grounding occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_CTDErrorCyclePhase_NUMBER | Phase of the float life or cycle when the CTD error occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_Beached_NUMBER | is the float beached? - could be logical | | C | | | 5/28/2012 | 5/28/2012 | -FLAG_IceDetected_COUNT | aborted profile count - increments by one for each profile interrupted by ice detection. If units are 'bit' then represents the ice evasion record for the last 8 profiles with the latest profile in the least significant bit. | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_InvalidSequencePoint_LOGICAL | Invalid sequence point detected (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_NegativeSbeNumber_LOGICAL | Negative SBE number (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_NextPressureTimeout_LOGICAL | different from ascent timeout since it refers to a single pressure point timeout. | | | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeFailed_LOGICAL | Optode : Failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeNoResponse_LOGICAL | Optode : No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeNullArgumentDetectedDuringMeasurement_LOGICAL | Optode : Null argument detected during measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeStatus_NUMBER | Flag indicating the status of the Optode (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OxygenSensorState_LOGICAL | "Oxygen Sensor State - 1=on, 0=off" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PistonFullyExtendedBeforeSurfaceDetectionAlgorithmTerminated_LOGICAL | Piston fully extended before surface detection algorithm terminated (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PistonMotorRunning_LOGICAL | Piston motor running (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PressureActivationTestMessage_LOGICAL | Current argos message is a pressure-activation test message (Yes or No) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_InitialCheckError_LOGICAL | "Auto-test is performed at the beginning of the mission: Flag 0 = Problem, 1 = OK)" | or detailed auto-test for float hardware resulting in a detailed code for each tested sub-part (see manual) | | | | 4/30/2015 | 4/30/2015 | -FLAG_PressureReachedZero_LOGICAL | Pressure reached zero (Yes or No) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileInProgress_LOGICAL | Profile in progress (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTermination_hex | Flag indicating the status of the profile termination (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTerminationFlag#1_byte | see description in manufacturer's manual | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTerminationFlag#2_byte | see description in manufacturer's manual | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RemoteControlMessageKO_COUNT | number of received messages which have been rejected by the float | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RemoteControlMessageOK_COUNT | number of messages sent by the remote control and received by the iridium float | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RTCStatus_LOGICAL | "real time clock status - 1= OK, 0=not OK" | | T | | | 1/5/2012 | 9/29/2013 | -FLAG_TelonicsPTTStatus_byte | Implemented a status byte for the Telonics ST21 PTT to facilitate diagnostics. This byte records the state of 8 status bits for the Telonics PTT | | T | | APEX- NAVO | 4/17/2014 | 4/17/2014 | -FLAG_SatlanticStatus_NUMBER | Flag indicating the status of the Satlantic optical sensor | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingPPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the P pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePNonpedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the P nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePTSNonPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the PTS nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePTSPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the PTS pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41NullArgumentDetectedDuringPMeasurement_LOGICAL | Sbe41 : Null argument detected during P measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PExeption_LOGICAL | Sbe41 : P exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PNoResponse_LOGICAL | Sbe41 : P No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTException_LOGICAL | Sbe41 : PT exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTSException_LOGICAL | Sbe41 : PTS exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTSNoResponse_LOGICAL | Sbe41 : PTS No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PUnreliable_LOGICAL | Sbe41 : P unreliable (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPMeasurementFailedTheNonpedanticRegex_LOGICAL | Sbe41 : Response to P measurement failed the nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPMeasurementFailedThePedanticRegex_LOGICAL | Sbe41 : Response to P measurement failed the pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPTSMeasurementFailedTheNonpedanticRegex_LOGICAL | Sbe41 : Response to PTS measurement failed the nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPTSMmeasurementFailedThePedanticRegex_LOGICAL | Sbe41 : Response to PTS measurement failed the pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_SBE43NullArgumentDetectedDuringPTSMeasurement_LOGICAL | SBE43 : Null argument detected during PTS measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_SeabirdStringLengthError_LOGICAL | Seabird string length error (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ShallowWaterTrapDetected_LOGICAL | Shallow water trap detected (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusBladderStateAtLaunch_NUMBER | "External bladder state at deployment (0: float stay at surface, 1: heavy float at deployment)" | | | | | 4/30/2015 | 4/30/2015 | -FLAG_StartDescentToProfile_NUMBER | "Status of the start date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusEndAscentToSurface_NUMBER | "Status of the end date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusEndDescentToProfile_NUMBER | "Status of the end date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusHistoryQCFailed_hex | Flag History Failed (from profile file) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusHistoryQCPerformed_hex | Flag History performed (from profile file) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusStartAscentToSurface_NUMBER | "Status of the start date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusStartTransmission_NUMBER | "Status of the start date-time of transmission (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_System_NUMBER | | | | | | 1/5/2012 | 1/5/2012 | -FLAG_SystemAtDepth_hex | System flags at depth - SEE MANUAL | | | | | 1/5/2012 | 1/5/2012 | -FLAG_SystemAtSurface_hex | System flags at surface - SEE MANUAL | | | | | 1/5/2012 | 1/5/2012 | -FLAG_TimerDone_LOGICAL | Timer done (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_UpDown_LOGICAL | Flag indicating whether the float is in 'Up time' (0) or 'Down time' (1) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_WakeUpByWatchDogAlarm_LOGICAL | Wake-up by watchdog alarm (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ArgosTransmitterExceptionStatus_bit | has an Argos transmitter exception been detected | | | | | | | -REFERENCE_BlueFlntuParkEnd_COUNT | "Flntu BlueReference at end of park, before descent to profile depth" | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_BlueFlntuSurface_COUNT | Flntu BlueReference at surface | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_NTUParkEnd_COUNT | "Flntu NTU Reference at end of park, before descent to profile depth" | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_NTUSurface_COUNT | Flntu NTU Reference at surface | | T | | | 1/5/2012 | 1/5/2012 | - -POSITION_PistonNow_COUNT | | | | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonPark_COUNT | piston position at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonParkEnd_COUNT | piston position at end of park period before descent to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonParkStart_COUNT | plunger position at parking start | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonProfile_COUNT | piston position at maximum profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonStorage_COUNT | | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonSurface_COUNT | "Piston position, recorded as the instrument reaches the surface" | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonSurfaceAddedBuoyancy_COUNT | "Piston position, recorded AFTER the instrument reaches the surface and the bladder has been fully pumped to increase buoyancy" | | T | | | 1/5/2012 | 9/26/2012 | -POSITION_PistonTarget_NUMBER | is this the same as one of the CONFIG_PISTON variables? | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonPosition1_COUNT | Apex ascent profile piston position 1 | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonMax_COUNT | reported maximum piston position | | T | | | 1/5/2012 | 1/5/2012 | - -PRES_TimeOutGPS_dbar | Pressure when GPS acquisition times out | | | | NINJA_D | | | -PRES_TimeOutIridium_dbar | Pressure when iridium communications time out | | | | NINJA_D | | | -PRES_1HourIntoDescentToProfile_dbar | pressure taken 1 hour after the beginning of descent | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | T | | | 1/5/2012 | 1/5/2012 | -PRES_2HoursIntoDescentToProfile_dbar | pressure taken 2 hours after the beginning of descent | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | T | | | 1/5/2012 | 1/5/2012 | -PRES_HoursIntoDesentToProfile_dbar | (add more of these as required to complete the sequence as reported by the float) | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | | | | 1/5/2012 | 1/5/2012 | -PRES_MaxDifferencePvsPTorPTSSamples_dbar | "The maximum (in absolute value) divergence between pressures from closely-spaced (ie., a few seconds apart in time) P-only sample requests and PT or PTS sample requests. The divergence is measured as the P-only sample minus the pressure from the PTS (or PT) sample." | | | | | 10/20/2015 | 10/20/2015 | -PRES_AscendingProfileReductionBottomSlicesThickness_dbar | Ascending profile reduction Deep zone slices thickness - ETF | PRES_AscendingProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionETF_dbar | Ascending profile reduction - ETF | PRES_AscendingProfileReductionETF_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionETS_dbar | Ascending profile reduction - ETS | PRES_AscendingProfileReductionETS_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionSeparation_dbar | Ascending profile reduction Surface / bottom pressure threshold - PRSEP | PRES_AscendingProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionSurfaceSlicesThickness_dbar | Ascending profile reduction surface slices thickness - ETS | PRES_AscendingProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionBottomSlicesThickness_dbar | CTD profile reduction Deep zone slices thickness - ETF | PRES_CTDProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionSeparation_dbar | CTD profile reduction Shallow / deep pressure threshold - PRSEP | PRES_CTDProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionSurfaceSlicesThickness_dbar | CTD profile reduction Shallow zone slices thickness - ETS | PRES_CTDProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionBottomSlicesThickness_dbar | Descending profile reduction Deep zone slices thickness - ETF | PRES_DescendingProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionSeparation_dbar | Descending profile reduction Shallow / deep pressure threshold - PRSEP | PRES_DescendingProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionSurfaceSlicesThickness_dbar | Descending profile reduction surface slices thickness - ETS | PRES_DescendingProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescentStartAfterReset_dbar | Pressure after pressure reset just prior to descent (IDG VAR=PFS) | | T | | | 1/5/2012 | 1/5/2012 | - -PRES_DOXYProfileReductionBottomSlicesThickness_dbar | DOXY profile reduction Deep zone slices thickness - ETF | PRES_DOXYProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DOXYProfileReductionSeparation_dbar | DOXY profile reduction Shallow / deep pressure threshold - Surface / bottom pressure thresholdPRSEP | PRES_DOXYProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DOXYProfileReductionSurfaceSlicesThickness_dbar | DOXY profile reduction Number of slices in shallow zone - ETS | PRES_DOXYProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_ForFLNTUSurface_dbar | pressure used for Flntu at surface | | | | | 1/5/2012 | 1/5/2012 | -PRES_ForOptodeSurface_dbar | pressure used for Optode at surface | | | | | 1/5/2012 | 1/5/2012 | - -PRES_MaximumDepthBinWithValidData_dbar | Maximum depth bin with valid data according to the float | | | | | 1/5/2012 | 1/5/2012 | -PRES_ExceededMaximumProfileDepth_dbar | The pressure where the float exceeds its maximum profile depth. | | | | | | | - -PRES_MiddleDeepBoundaryAscent_dbar | boundary pressure between middle/deep areas at ascent - IS THIS A CONFIGURATION VARIABLE?? | | | | | 1/5/2012 | 1/5/2012 | -PRES_MinimumDepthBinWithValidData_dbar | Minimum depth bin with valid data according to the float | | | | | 1/5/2012 | 1/5/2012 | - -PRES_MinimumDuringMaximumBuoyancy_dbar | the shallowest presssure reached by a float when buoyancy is at maximum but it cannot reach the surface. | | | | NINJA_D | 2/10/2014 | 2/10/2014 | -PRES_Now_dbar | test message data reporting pressure at the surface during drift - cycle 0 | | T | | | 1/5/2012 | 1/5/2012 | -PRES_PlusFourseconds_dbar | PRES measured 4 seconds after PRES_AscentStart_dbar | "NOTE - this can also be placed into the traj files with MC-10 depending on the timing event (Often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. " | | | | 40913 | 40913 | -PRES_PlusTwoseconds_dbar | PRES measured 2 seconds after PRES_AscentStart_dbar | "NOTE - this can also be placed into the traj files with MC -10 depending on the timing event (often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. " | | | | 1/5/2012 | 1/5/2012 | -PRES_Settling0_dbar | needs valid definitions | | T | | | 1/5/2012 | 1/5/2012 | -PRES_Settling1_dbar | needs valid definitions | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowDeepBoundaryAscent_dbar | boundary pressure between shallow/deep areas at ascent | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowDeepBoundaryDescent_dbar | boundary pressure between shallow/deep areas at descent | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowestInProfile_dbar | shallowest profile point | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowMiddleBoundaryAscent_dbar | boundary pressure between shallow/middle areas at ascent - IS THIS A CONFIGURATION VARIABLE?? | | | | | 1/5/2012 | 1/5/2012 | -PRES_AscentTimeOutExpired_dbar | Pressure when ascending time out | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_DescentTimeOutExpired_dbar | Pressure when descending time out | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_DescentTimeOutExpiredAfterFailedAscent_dbar | Maximum pressure when descent times out after a previous failed ascent (from ice avoidancy or buoyancy issues). | | | | NINJA_D | 2/10/2014 | 2/10/2014 | -PRES_IceAvoidance_dbar | Pressure when float avoids ice | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_SurfaceComplement_dbar | Surface pressure complement | | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionBottomSlicesThickness_dbar | TUR3 profile reduction Deep zone slices thickness - ETF | PRES_TUR3ProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionSeparation_dbar | TUR3 profile reduction Surface / bottom pressure threshold - PRSEP | PRES_TUR3ProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionSurfaceSlicesThickness_dbar | TUR3 profile reduction Number of slices in shallow zone - ETS | PRES_TUR3ProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_ChangeInFirstSeek_COUNT | Pressure Change during first seek at the park depth (IDG Var=PSK) | | T | | | 1/5/2012 | 9/26/2012 | -PRES_WhenInWaterSensed_dbar | "From p,t,s when in water sensed " | | | | | 1/5/2012 | 1/5/2012 | -TEMP_WhenInWaterSensed_degC | "From p,t,s when in water sensed " | | T | | | 1/5/2012 | 1/5/2012 | -PSAL_WhenInWaterSensed_psu | "From p,t,s when in water sensed " | | | | | 1/5/2012 | 1/5/2012 | - -PRESSURE_AirBladder_COUNT | measured in COUNT - approx 148 COUNT | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_BladderNow_dbar | current pressure of the air bladder 'now' (when is 'now'?). | | | | | 1/5/2012 | 1/5/2012 | -PRES_DuringMaxBuoyancyAndGPSAcquisition_dbar | Pressure when buoyancy is max during getting GPS | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_During MaximumBuoyancyAndIridiumTransmission_dbar | Pressure when buoyancy is max during sending messages | | | | NINJA_D | 5/19/2014 | 5/19/2014 | - -PRESSURE_InternalVacuum_mbar | units might be (mbar) or (COUNT) or (inHg) | | | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAirBladderEmpty_inHg | Internal Vacuum when air (sleeve) bladder is empty (IDG Var=VACb) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAirBladderFull_inHg | Internal Vacuum when air (sleeve) bladder is full (IDG Var=VACa) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumDuringDescent50dbar_inHg | Internal Vacuum at 50dbar as float is sinking towards drift depth. | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumOilBladderEmpty_inHg | Internal vacuum when all oil is inside pressure case | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumOilBladderFull_inHg | Internal vacuum when all oil isinside the oil bladder | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumAtEndSurface_inHg | Air pressure inside of SOLO at end of surface time (IDG Var=ATE) ! | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtLaunch_inHg | Internal vacuum when float launched | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtStartSurface_inHg | Air pressure inside of SOLO at start of surface time (IDG Var=ATS) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtSurface_mbar | Surface internal pressure | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumBeforeFill_inHg | SAME AS SOMETHING ELSE? | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumDuringPark_inHg | Park vacuum | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumEndXmit_inHg | internal pressure at the end of the transmission period | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumParkEnd_inHg | Internal Vacuum at end of park. before descent to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumProfileStart_mbar | Internal tube pressure [mbar] in profile depth | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumRange_mbar | "the range of internal vacuum reported by the float - e.g., ""<=725"" or ""726-750""" | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumAtSurface_degC | internal tube temperature at the surface | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumAirBladderFull_degC | internal tube temperature at surface after airbladder fill | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumProfileStart_degC | internal tube temperature at the profile depth | | T | | | 1/5/2012 | 1/5/2012 | - -STATUS_LimitSwitch_hex | | | | | | 1/5/2012 | 1/5/2012 | -STATUS_MiscellaneousOperations_hex | | | T | | | 1/5/2012 | 1/5/2012 | -STATUS_LimitSwitchINAtSurfaceStartXmit_NUMBER | "Binary reporting of piston position (1=IN, 0=OUT) IDG VAR=LIMsw....not same LIMsw as in Cy0" | | T | | | 1/5/2012 | 1/5/2012 | -STATUS_LimitSwitchOUTAtStartAscent_NUMBER | "Binary reporting of piston position (0=IN, 1=OUT) (IDG VAR=LIMsw)...not same LIMsw as in Cy0" | | | | | 1/5/2012 | 1/5/2012 | -TIME_AirPumpOn_seconds | Air pump on time | | T | | | 1/5/2012 | 1/5/2012 | -TIME_AirPumpOnIntegrated_seconds | Air pumped integrated | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Ascent1900DB_seconds | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Ascent2000DB_seconds | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_BuoyancyPumpOn_seconds | are the units right? | | T | | | 1/5/2012 | 1/5/2012 | -TIME_BuoyancyReductionActionAtSurface_seconds | the time the pump or valve ran at the surface to initiate descent | | | | | | | -TIME_ClockDrift_dsec/day | MOVED from CONFIG to TIME | | T | | | 1/5/2012 | 1/5/2012 | - -TIME_DescentTo50Decibars_seconds | IDG Var=FallT | | | | | 1/5/2012 | 1/5/2012 | -TIME_DescentToPark_hours | metadata? Measured and reported? OR CONFIGURATION INFORMATION? | | T | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringAscent_seconds | DOXY ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringDescent_seconds | DOXY descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringPark_hours | DOXY drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -TIME_FromBladdersEmptyToStartOfMission_seconds | TIME FROM START TO END FIRST PROFILE | | | | | 1/5/2012 | 1/5/2012 | -TIME_FromStartOfMissionToEndFirstProfile_seconds | TIME FROM BLADDERS EMPTY TO START | | T | | | 1/5/2012 | 1/5/2012 | -TIME_GroundingRelativeToCycleBeginning_hours | Gounding day relative to cycle beginning | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceLastIridiumGPSFix_DD | Days since the last GPS fix/Hours since the Last GPS Fix (HH) | | T | | | 5/25/2012 | 5/25/2012 | -TIME_IridiumGPSFix_seconds | the number of seconds required to obtain a GPS fix for a profile | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PreviousIridiumSession_seconds | duration of the previous iridium session | | | | | | | -TIME_TransmissionLastHousekeepingMessage_seconds | time required to transmit the last housekeeping message | | | | | 5/25/2012 | 5/25/2012 | - -TIME_MotorDriveDuringDescent_minutes | | | T | | | 5/29/2012 | 5/29/2012 | -TIME_MotorDriveDuringAscent_minutes | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_OptiqueSampleFrequencyDuringDescent_seconds | Optique descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_OptiqueSampleFrequencyDuringPark_hours | Optique drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -TIME_PistonRanDuringDescentFrom100db_seconds | seconds that piston ran to descend from approximately 100db (IDG Var= TIP) | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PistonRanDuringFirstSeek_seconds | seconds that piston ran during first seek (park depth) IDG Var=TSK | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PumpActionsAtSurface_seconds | duration of pump actions at the surface | | | | | 1/5/2012 | 1/5/2012 | -TIME_PumpActionsAdditionalAtSurfaceForGPSAcquisition_seconds | duration of additional pump actions at the surface performed during GPS acquisition in case of insufficient buoyancy | | T | | | 7/14/2016 | 7/14/2016 | -TIME_PumpActionsAtDepth_seconds | total duration of pump actions at depth | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpActionsInOutAtDepth_COUNT | total duration of pump actions (in and out both reported) at depth | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpActionsInOutAtSurface_COUNT | total duration of pump actions (in and out both reported) at the surface | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpMotor_seconds | units could be COUNT or seconds - Pump motor time=COUNT multiplied by 2 for seconds | | T | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringAscent_seconds | CTD ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringDescent_seconds | CTD descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringPark_seconds | "sampling period during park was: TIME_SamplePeriodPark_hours" | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Settling0_seconds | | | | | | 1/5/2012 | 1/5/2012 | -TIME_Settling1_seconds | | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceAscentEnd_HHMMSS | (units variable) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceStartUp_seconds | time since startup before deployment | | | | | 1/5/2012 | 1/5/2012 | -TIME_TelemetryPhaseInitiationTimeRelativeEPOCH_minutes | time of telemetry phase initiation in mintes relative to EPOCH - this includes the ascent from profiling depth. | | T | | | 1/5/2012 | 1/5/2012 | -TIME_ToAscend_seconds | time taken to reach the surface | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Transmission_minutes | Transmission time in minutes | | T | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringAscent_seconds | TUR3 ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringDescent_seconds | TUR3 descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringPark_hours | TUR3 drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -VOLUME_OilVolumeTransferredAtSurfaceDuringDescent_cm^3 | Oil volume transferred from the external bladder during the descent to park (between the surface and the second threshold of the buoyancy reduction phase). This is the oil volume tranferred during the NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT valve actions (Id 126). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringDescentToPark_cm^3 | Oil volume transferred from the external bladder during the descent to park (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions (Id 124). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredToAscentWhenGrounded_cm^3 | "Oil volume, transferred to the external bladder, needed to leave the sea bottom when grounded. " | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringDescentToProfile_cm^3 | Oil volume transferred from the external bladder during the descent to start profile pressure. This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToProfile_COUNT valve actions (Id 125). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringAscentToSurface_cm^3 | Oil volume transferred to the external bladder during the ascent to surface This is the oil volume tranferred during the NUMBER_PumpActionsDuringAscentToSurface_COUNT pump actions (Id 116). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | - -CURRENT_BatteryAirPumpOn_mA | Battery Current during inflation of sleeve bladder | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryAvgPumpOnStartAscent_mA | Average pump motor current taken at start of ascent | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlntu_mA | battery current measured when Flntu sampled at unspecified time in profile | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlntuParkEnd_mA | battery current measured when Flntu sampled at end of park | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlbbParkEnd_mA | battery current measured when Flbb sampled at end of park | | T | | | 22/08/2016 | 22/08/2016 | -CURRENT_BatteryOptics_COUNTS | battery current while the optial sensor is on | | T | | | 5/29/2012 | 5/29/2012 | -CURRENT_Battery_mA | battery current measured by the sensors themselves. | | | | | 3/28/2014 | 3/28/2014 | -CURRENT_BatteryInitialAtProfileDepth_mA | Battery Current measured at bottom (park or pressure) at initial pump extension completion | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryMaxPumpOnStartAscent_mA | Maximum pump motor current taken at start of ascent | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryNoLoad_mA | same as: CURRENT_BATTERY_PARK_NOLOAD_mA? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPark_mA | measured during park-park phase and is averaged | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkEnd_mA | "battery current measured at end of park, before descent to profile depth" | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkNoLoad_mA | "Battery Current measured at park pressure with no load, Same as BOTTOM battery current (older floats)" | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkNoLoad_volts | same as: CURRENT_BATTERY_PARK_NOLOAD_mA? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPistonPumpOn_mA | Battery Current during pumping to ascend | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPumpOn_mA | Battery Current buoyancy pump on | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySampledbyFlntu_mA | Flntu sampled battery current | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySampledbySBE_mA | Sbe sampled battery current - same as CURRENT_BatterySBEPump_mA???? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySBEParkEnd_mA | battery current measured when the SBE41 sampled at the end of park | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySBEPump_mA | battery current when CTD active | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySurfaceAirPumpOn_mA | Battery Current measured at the surface with the air pump running (6 seconds) | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPumpLastValueAsAscends_mA | Current measured in the last portion of pumping as the float ascends | | T | | | 5/25/2012 | 5/25/2012 | -CURRENT_MotorAtEndOfAscent_mA | Motor current measured at the end of the ascent phase (pump motor?) | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_MotorOutToAscent_mA | Motor current measured during the ? ascent phase (pump motor?) | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_MotorStartProfile_amps | Motor current in profile depth | | | | | 1/5/2012 | 1/5/2012 | - -VOLTAGE_Aux_volts | auxiliary voltage (formerly VOLTAGE_OF_AUX(volts)) | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery_volts | battery voltage when battery capacity is unknown | | | | | | | -VOLTAGE_Battery6V_volts | battery voltage of 6v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery7V_volts | battery voltage of 7v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery12V_volts | battery voltage of 12V system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery14V_volts | battery voltage of 14v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery18V_volts | battery voltage of 18v system | | T | | | 5/25/2012 | 5/25/2012 | -VOLTAGE_BatteryCPU_volts | "CPU Voltage LSB=0.1 Volts, requires a full description " | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery14VStartDescentToPark_volts | battery voltage of 14V system when float starts descending to park | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery14VStartAscentToSurface_volts | battery voltage of 14V system when float starts ascending to surface | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery7VStartDescentToPark_volts | battery voltage of 7V system when float starts descending to park | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery7VStartAscentToSurface_volts | battery voltage of 7V system when float starts ascending to surface | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_BatteryCPUStartProfile_volts | CPU battery voltage at profile depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUStartXmit_volts | "CPU Battery @ start oftransmission after data has been processed LSB=0.1 volts, IDG Var= Vcpu" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUSurface_volts | Surface CPU battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUDepth_volts | CPU battery voltage at (unspecified) depth | | T | | | 5/25/2012 | 5/25/2012 | -VOLTAGE_BatteryDescentToProfile_volts | | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryExternalStartProfile_volts | voltage of the external battery at the profile depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryFlntuParkEnd_volts | battery voltage measured by Flntu at end of park | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryFlbbParkEnd_volts | battery voltage measured by Flbb at end of park | | T | | | 22/08/2016 | 22/08/2016 | -VOLTAGE_BatteryFltnu_volts | Flntu sampled battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryOptics_volts | battery voltage of the optical sensor. | | | | | | | -VOLTAGE_Battery_volts | battery voltage measured by the individual sensors | | | | | 3/28/2014 | 3/28/2014 | -VOLTAGE_BatteryInitialAtProfileDepth_volts | measured at initial pump extension completion | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryNoLoad_volts | battery voltage measured with no load | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryParkEnd_volts | battery voltage measured at end of park with no load | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryParkNoLoad_volts | battery voltage during inactive park phase - SAME AS BOTTOM BATTERY VOLTAGE FOR OLDER FLOATS | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPistonPumpOn_volts | buoyancy pump voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryProfileNoLoad_volts | battery voltage jus before profile begins - no load on the batteries | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpAscentEnd_volts | "Pump Battery at end of ascent Voltage LSB=0.1 Volts, - also a diagnostic message " | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpLastValueAsAscends_volts | "pump battery voltage, on last reading as ascending (IDG Var=Vpmp)" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpOn_volts | Pump Battery Voltage LSB=0.1 Volts | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpStartProfile_volts | Pump battery voltage (volts) at depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEAscent_volts | Voltage measured when ctd switched on sampling during profile ascend phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEParkEnd_volts | battery voltage measured when the SBE41 sampled after the end of park phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEPump_volts | battery voltage when CTD active | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySurfaceAirPumpOn_volts | Voltage measured when AIR PUMP is switched on at the surface for extra buoyancy | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySurfaceNoLoad_volts | battery voltage during inactive surface phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGEDROP_BatteryStartProfile_volts | "battery voltage drop, pump on at max pressure, starting profile(tenths of volts)" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGETIME_IntegratedAirPumpVolume_voltseconds | integrated measure (volts * seconds) of the pumped air volume (VSAP of Apex floats) | Changed units from volt+B640seconds to voltseconds | T | | | 1/5/2012 | 2/18/2015 | -VOLTAGE_AcrossInsulation_mV | Insulation voltage measured between 2 sub-parts of the float. | | | | | 2/16/2016 | 2/16/2016 | -SPEED_FirstGrounding_mm/s | Vertical speed during the first grounding | | | | | 10/9/2014 | 10/9/2014 | - -//BIO-Argo names: | | " can be: CTD, OPTODE, OCR, ECO3, FLNTU, CROVER, SUNA or any other BIO-Argo sensor defined." | | | | | | - -CURRENT_SUNAAPFSupply_mA | SUNA APF Frame Supply Current | | T | | | 9/26/2013 | 9/26/2013 | -FLAG_Status_LOGICAL | "Sensor status - 1= OK, 0=not OK" | | T | | | 9/26/2013 | 9/29/2013 | - -FLAG_SensorBoardStatus_NUMBER | Flag reporting the status of the sensor board. | | | | | 9/26/2013 | 9/29/2013 | - -NUMBER_AscentIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_AscentSamplesDepthZone_COUNT | Number of samples acquired by in the depth zone # during the ascent from the profile depth to the surface. Depth zone number: = 1..5 | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_DescentIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_DescentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_DescentSamplesDepthZone_COUNT | Number of samples acquired by in the depth zone # during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Depth zone number: = 1..5 | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscentSamples_COUNT | "Number of samples acquired by during the ""ascent to surface"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_InAirSamples_COUNT | "Number of samples acquired by during the ""surface"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_DescentToParkSamples_COUNT | "Number of samples acquired by during the ""surface to parking depth"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_DescentToProfileSamples_COUNT | "Number of samples acquired by during the ""parking depth to profile depth"" phase." | | | | CTS5 | 12.10.202 | 10/12/2020 | -NUMBER_ParkIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the drift at park depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ParkIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the drift at park depth. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_ProfileDriftIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the drift at profile depth. (Drift is added to the name because otehrwise it appears to be ascent data) | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ParkSamples_COUNT | Number of samples acquired by during the drift at parking depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ProfileDriftSamples_COUNT | Number of samples acquired by during the drift at profile depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscendingCTDSamplesInternalCounter_COUNT | total number of slices of the ascending profile after reduction | | NUMBER_AscendingCTDSamplesDepthInternalCounter_COUNT | Ascending profile ctd measurements - Depth internal counter | | 9/26/2013 | 9/29/2013 | -NUMBER_DescendingCTDSamplesInternalCounter_COUNT | total number of slices of the descending profile after reduction | | NUMBER_DescendingCTDSamplesDepthInternalCounter_COUNT | Descending profile cdt measurements - Depth internal counter | | 9/26/2013 | 9/29/2013 | -NUMBER_PumpActionsDuringProfileDrift_COUNT | Number of pump actions during drift at profile depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_PumpActionsToLeaveReleasingSystem_COUNT | Number of pump actions needed to leave the releasing system (float deployed in ASFAR (Autonomous System for Argo float Release) mode) | | | | | 10/18/2015 | 10/18/2015 | -NUMBER_SBEFPCommandTimeouts_COUNT | "Number of timeouts while measuring pressure with the SBE sensor using a ""Fast Pressure"" command." | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_VectorToSensorBoardsDialogErrors_COUNT | Number of dialog errors between vector and sensor boards. | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFErrorCounter_COUNT | "Incremented each time an error is encountered.The APF interface provides a mechanism to access error messages.If the error counter increases between frames, the operator or control system can retrieve the accumulated error message(s)." | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFPowerCycleCounter_COUNT | Incremented each time power is applied to SUNA (it can be used to notice if the SUNA was powered unintentionally between data collection events). | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFSampleCounter_COUNT | "Incremented for each sample the SUNA measures (it can be used to track frames, and recognize if frames were missed)." | | | | | 12/17/2013 | 12/17/2013 | -VOLTAGE_SUNAAPFSupplyVoltage_volts | "Voltage [V] measured inside SUNA via ADC.The voltage available to the SUNA just outside its power regulators.SUNA can operate on 6 to 18 VDC. This voltage allows the operator to monitor supply voltage, and in the case of a drop to makedecisions on the continued operation of the SUNA." | | | | | 12/17/2013 | 12/17/2013 | -CURRENT_SUNAAPFSupplyCurrent_mA | "Current [mA] measured inside SUNA via ADC.The current can be monitored to ascertain that all components are operating. A sudden drop or increase would indicate the failure of a system component." | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_OptodeSensorReset_COUNT | Number of power resets of the DO sensor | | | | | 5/10/2016 | 5/10/2016 | -NUMBER_OptodeAcquisitionsFailed_COUNT | Number of failed acquisitions of the DO sensor | | | | | 5/10/2016 | 5/10/2016 | -NUMBER_SubCycle_NUMBER | | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_InternalCycle_NUMBER | | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SubCyclesDoneSinceDeployment_COUNT | | | | | | 1/1/2014 | 1/1/2014 | -/////added so we don't have to allow missing ///// -NUMBER_AscentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_DescentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_ParkIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the drift at park depth. | | | | | 10/14/2014 | 10/14/2014 | diff --git a/file_checker_spec/argo-tech_names-spec-v2.4 b/file_checker_spec/argo-tech_names-spec-v2.4 deleted file mode 100644 index 8fb5f6a..0000000 --- a/file_checker_spec/argo-tech_names-spec-v2.4 +++ /dev/null @@ -1,675 +0,0 @@ -//parameter code | description | comment | transmitted/calculated | parameter type | float type | creation date | update date | obsolete date -//"Non-technical data (statistics, QC and diagnostic data)" | | | | | | | | -FLAG_GreyListPSAL_LOGICAL | "Y=yes, N=no (or field is absent)" | | | | | | | -FLAG_GreyListTEMP_LOGICAL | "Y=yes, N=no (or field is absent)" | | | | | | | -FLAG_SpeedMaximumCheck_NUMBER | needs valid definitions | | | | | | | -TEMP_MixedLayerMedian_degC | median of the mixed layer samples taken | | | | | 1/15/2013 | 1/15/2013 | -TEMP_MixedLayerInfimum_degC | infimum of the mixed-layer median temperature since the last successful telemetry | | | | | 1/15/2013 | 1/15/2013 | -CURRENT_MotorMeanOfProfile_amps | Mean of motor current during upcast | | T | | | | | -BACKSCATTERING_MeanBeforeAscent_m^-1/sr | Bio parameter statistic | | | | | | 1/5/2012 | -CDOM_MeanBeforeAscent_ppb | Bio parameter statistic | | | | | | 1/5/2012 | -CHLT_MeanBeforeAscent_mg/m^3 | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W1_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W2_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W3_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | - -//Surface Pressure Offset variable names - note that this table is also appended to the Argo User's manual as table ?? | | | | | | | | - -PRES_SurfaceOffsetTruncatedPlus5dbar_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, negative offsets truncated to 0, 5dbar addedNot autocorrected" | "Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | "R1-SBE, APEX-SBE, all APEX up to APEX APF8s" | | 5/29/2012 | -PRES_SurfaceOffsetTruncatedPlus3dbar_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset, negative offsets truncated to 0, 3dbar addedNot autocorrected" | "Subtract 3 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | R1-SBE | | 5/29/2012 | -PRES_SurfaceOffsetTruncated_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, negative offsets truncated to 0Not autocorrected" | " In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. NOTE - unlike the previous name, it DOES NOT have 5db added and so this does not need to be removed before use." | T | | 2 ALACE R1 FSI floats | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncated_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, This IS NOT used to correct pressure on boardNot autocorrected" | "In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | "APEX APF9, pre 2002 SOLO-SIO, Metocean PROVOR, NEMO (SN>=90), PALACE " | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncated_approx5dbarResolution_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset, This IS NOT used to correct pressure on board. Also note that the resolution varies because counts are repoted and converted using different calibration coefficients for each floatNot autocorrected" | | T | | APEX APF1 | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncatedPlus5dbar_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset with 5dbar added.Not autocorrected" | "Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | APEX APF-8 after firmware update 14-12-07 | | 5/29/2012 | -PRES_SurfaceOffsetCorrectedNotReset_1dbarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative offset but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "Provor T,CTF2, CTF3, and CTS2, JAMSTEC's MetOcean PROVOR " | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotReset_1cBarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative offset but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "JAMSTEC's PROVOR-CTS3, NINJA (2003) and MetOcean PROVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1dbarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "PROVOR CTS3, PROVOR-DO and ARVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1cBarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "PROVOR CTS3, PROVOR-DO and ARVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1mBarResolution_dbar | Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required. Autocorrected | The CTS5 provides the Poffset with a 1 mBar resolution. | T | | PROVOR CTS5 | 2/1/2016 | | -PRES_SurfaceOffsetBeforeReset_dbar | Surface pressure measurement which is then used to correct pressure on board the float. Note: thus is a relative offset and no further correction is required. | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeResetTruncated_dbar | "Surface pressure measurement which is then used to correct pressure on board the float. Note: this is a CUMULATIVE offset and no further correction is required. Negative offsets truncated to 0.Autocorrected" | "Autocorrecting so no adjustment in either RT or DM typically required. NOTE: if the SPO is >40 for the Argo CTD, then the autocorrection is PARTIALLY applied (40 is subtracted, leaving the 'excess' offset uncorrected) and the pressures may need to be adjusted in RT and DM." | T | | NEMO(SN<80) | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_dbar | "Surface pressure measured after pressure has been corrected on board the float. This is a relative measurement and no further correction is required. Autocorrected" | "Autocorrecting so no adjustment in either RT or DM typically required. This value used as a check on the autocorrecting of pressure onboard the float. Significant values may indicate a need for additional correction" | T | | SOLO-SIO (secondary name used in conjunction with PRES_SurfaceOffsetBeforeReset_dbar ) | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_1dBarResolution_dbar | "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile. Note: this is a relative offset and no further correction is possible.Autocorrected" | Autocorrecting so no adjustment in either RT or DM possible | T | | "French PROVOR-CTS3, PROVOR-DO, ARVOR - may be used for other floats as well." | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_1cBarResolution_dbar | "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile. Note: this is a relative offset.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required but this could be applied in DMQC. | T | | "French PROVOR-CTS3, PROVOR-DO, ARVOR, SOLO-WHOI, SOLO-SIO - may be used for other floats as well." | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_1cBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_5cBarResolution_dbar | "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.5db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_5cBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.5db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_2mBarResolution_dbar | "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.04db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required (changed from 4 to 2mBar resolution as per Gilson request) | T | | SOLO II-SIO | | 1/6/2013 | -PRES_SurfaceOffsetAfterReset_2mBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.04db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required (changed from 4 to 2mBar resolution as per Gilson request) | T | | SOLO II-SIO | | 1/6/2013 | -PRES_SensorAutoAdjustment_dbar | TOTAL Surface pressure offset applied by the float since deployment - this is a cumulative offset (with limitations) and cannot be used for pressure correction | This is a surface pressure name for reference only | T | | SOLO II-SIO | | | - -//end surface pressure offset section... | | | | | | | | - -CLOCK_EndAscentToSurface_hours | "ascent end time, just before Argos transmission - note units can vary and the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time." | JULD_ASCENT_END and JULD with MC=600 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartAscentToSurface_hours | ascent start time - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_ASCENT_START and JULD with MC=500 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentToPark_hours | time when park pressure is reached - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentToPark_hours | time after the crossing the gap threshold - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | not sure where this is - at the surface? | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentToProfile_hours | time when float reaches profile pressure - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DEEP_DESCENT_END or JULD_DEEP_PARK_START and JULD with MC=400 or JULD with MC=450 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentToProfile_hours | time when descent to profile pressure starts - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_PARK_END and JULD with MC=300 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentProfile_hours | time when descent profile starts - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_START and JULD with MC=100 assuming descending profile starts when float leaves the surface; otherwise choose the appropriate timing variable | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentProfile_hours | time when descent profile ends - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250 assuming descending profile ends with a park phase; otherwise choose the appropriate timing variable | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndAscentToSurfaceEstimated_HHMMSS | Theoretical time of end of ascent to surface | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeFromStartUp_hours | Time from start up - note that you should also store the time of the satellite message from which this was calculated. | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartInternalCycle_FloatDay | the time of the (internal) cycle start for floats with multiple sub-cycles | | | | | | | -CLOCK_RealTimeDrift_seconds | The difference (seconds)between apf9's real time clock (rtc) and gps time representing clock drift | "is also represented in the traj files. We have CLOCK_OFFSET which is defined as: Decimal part of day that float clock has drifted. Float clockdrift is defined as Float time (provided by the inboard RealTime Clock (RTC) of the float) UT time. " | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatTime_HHMMSS | float internal clock time | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatTimeCorrection_MMSS | float internal clock time correction | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_DateFirstParkSample_YYYYMMDD | float internal clock date of the first park sample | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeFirstParkSample_hours | float internal clock time of the first park sample | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_InitialStabilizationDuringDescentToPark_hours | time when first stabilization appears during descent to park | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_InitialValveActionDescentToPark_HHMM | Time in the day when the float first activated the valve during its descent | | T | | | 5/25/2012 | 5/25/2012 | -TIME_ValveActionsAtSurface_minutes | duration of the basic valve actions which is computed by the float from preceding cycles | | | | | 7/8/2014 | 7/8/2014 | -CLOCK_ValveActionsAtSurface_HHMM | the time when the float moves the valve to acquire additional buoyancy for surface drift. | | | | | | | -CLOCK_PumpActionsAtSurface_HHMM | the time when the float moves the pump to acquire additional buoyancy for surface drift. | | | | | 7/8/2014 | 7/8/2014 | -CLOCK_Satellite_HHMMSS | time derived from satellite communications | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_TransmissionStart_HHMMSS | time of the first transmission for this cycle NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | TRANSMISSION_START_TIME and in JULD with MC=700 | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TransmissionEndTime_YYYYMMDDHHMMSS | time when transmission is ended - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | TRANSMISSION_END_TIME and JULD with MC=800 | T | | NINJA_D | 5/19/2014 | 5/19/2014 | -CLOCK_LastIridiumGPSFix_DD | Day of month of last GPS fix/Time of Last GPS Fix (HH) | | | | | | | -CLOCK_FloatDayOfYear_days | internal float day of year | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatDate_YYYYMMDD | internal float date | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatDateTimeDownTimeExpired_YYYYMMDDHHMMSS | Time of expiry of the descent time and beginning of ascent | | | | | 29/0512 | 29/0512 | -CLOCK_AscentInitiationFromDownTimeExpiryOffset_minutes | "Profile initiation time (minutes) 2's compliment signed integer (positive values - profile initiated after down time expired, negative values - profile initiated before down time expired)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_EOLStart_YYYYMMDDHHMMSS | Clock time when End of Life mode starts | | | | | 10/9/2014 | 10/9/2014 | -CLOCK_TimeGrounded_HHMM | time the float grounded | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_BuoyancyInversionStart_FloatDay | Time when the float starts the buoyancy inversion phase when ice was detected during ascent. | "When the ascent profil is aborted because of the Ice detection algorithm, the float starts a 'buoyancy inversion phase'. The current label reports the start time of this phase and NUMBER_BuoyancyInversionValveActions__COUNT the number of valve actions needed to invert float buoyancy. See 132,1" | T | | Provor CTS4 | 5/24/2018 | 5/24/2018 | -CLOCK_ReceptionEndDateTime_YYYYMMDDHHMMSS | End date-time of argos message reception | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ReceptionEndDateTime_NUMBER | "Status of the end date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_ReceptionStartDateTime_YYYYMMDDHHMMSS | Start date-time of argos message reception | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ReceptionStartDateTime_NUMBER | "Status of the start date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_LastReset_YYYYMMDDHHMMSS | Clock time of the last reset of the float | | T | | | 10/9/2014 | 10/9/2014 | -CLOCK_DateOfEmergencyAscent_DDMMYYYY | date of emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeOfFirstEmergencyAscent_HHMMSS | time of first emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_PressureActivationStart_YYYYMMDDHHMMSS | pressure activation scrutation start date | The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. | T | | Provor CTS5 | 24/10/2018 | 24/10/2018 | -CLOCK_PressureActivationStop_YYYYMMDDHHMMSS | pressure activation scrutation end date | The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. | T | | Provor CTS5 | 24/10/2018 | 24/10/2018 | -NUMBER_PumpActionsOnFirstEmergencyAscent_COUNT | Emergency ascent - pump actions at emergency depth | | T | | | 1/5/2012 | 1/5/2012 | -PRES_FirstEmergencyAscent_dbar | Pressure that triggered the first emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_EmergencyAscents_COUNT | Number of Emergency ascents - Internal count | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_EmergencyAscent_LOGICAL | Was an emergency ascent performed? | | T | | | 5/25/2012 | 5/25/2012 | -PRES_LastAscentPumpedRawSample_dbar | Last (shallowest) pumped raw pressure sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped) (in dbars).- note this may be duplicated in the traj files with MC599 | | | | | | | -NUMBER_ParkAndProfileCycleCounter_COUNT | this is an indication of how often the float does a profile deeper than its park depth. | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentArgosMessages_COUNT | number of transmitted Argos messages with ascent data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentArgosMessages_COUNT | number of transmitted Argos messages with descent data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkArgosMessages_COUNT | number of transmitted Argos messages with park data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentIridiumMessages_COUNT | number of transmitted Iridium messages with ascent data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_DescentIridiumMessages_COUNT | number of transmitted Iridium messages with descent data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_ParkIridiumMessages_COUNT | number of transmitted Iridium messages with park data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_IridiumResets_COUNT | Number of Power Resets iridium | | | | | 5/25/2012 | 5/25/2012 | -NUMBER_IridiumPacketsReceivedPreviousSession_COUNT | Number of Incoming Iridium Packets Received during previous session | | | | | 5/25/2012 | 10/10/2014 | -NUMBER_IridiumMessagesReceivedPreviousSession_COUNT | Number of Incoming Iridium Messages Received during previous session | | | | | 10/10/2014 | 10/10/2014 | -NUMBER_IridiumMessagesSentPreviousSession_COUNT | Number of Incoming Iridium Messages Sent during previous session | | | | | 10/10/2014 | 10/10/2014 | -NUMBER_NearSurfaceIridiumPackets_COUNT | "Number of Iridium packets used to transmit sensor data collected during the ""near surface measurement"" phase." | internal counter measured by the float | C | | | 7/14/2016 | 7/14/2016 | -NUMBER_InAirIridiumPackets_COUNT | "Number of Iridium packets used to transmit sensor data collected during the ""in air measurement"" phase." | internal counter measured by the float | C | | | 7/14/2016 | 7/14/2016 | -NUMBER_RemoteControlCommandKO_COUNT | Number of remote control commands rejected by the float. | See also ID 309 | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_RemoteControlCommandOK_COUNT | Number of remote control commands successfully considered. | The float can receive message with multiple remote commands. It reports the number of received messages (in FLAG_RemoteControlMessageOK_COUNT and FLAG_RemoteControlMessageKO_COUNT) and also the the number of received commands (in these 2 new labels). See ID 310 | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_GPSResets_COUNT | Number of Power Resets GPS | | | | | 5/25/2012 | 5/25/2012 | -NUMBER_RetriesForGPSAcquisition_COUNT | Number of times the GPS had to try to get a valid fix | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_PRESIridiumMessages_COUNT | number of iridium messages containing PRES data | | | | | 2/11/2014 | 2/11/2014 | -NUMBER_HydraulicRecords_COUNT | Number of hydraulic (pump or valve) actions performed during the cycle. Due to transmission limitations some of them may not be transmitted (in the NUMBER_HydraulicPackets_COUNT transmitted packets). | | | | | 2/11/2014 | 2/11/2014 | - -NUMBER_BinsWithBadData_COUNT | number of pressure bins with bad data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_BinsWithData_COUNT | number of pressure bins with data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkEntriesInParkMargin_COUNT | "descent to park pressure: number of entries in margin around park pressure target - specifically, how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db)" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToProfileEntriesInProfileMargin_COUNT | "descent to profile pressure: number of entries in margin around profile pressure target - specifically, how many times the float enters the band of pressure surrounding the target profile pressure (generally +/- 30db)" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkAndToProfEntriesInParkMargin_COUNT | "Cumulated numbers of entries in both parking zones (at park and profile depth). Specifically, how many times the float enters the band of pressure surrounding the target park/profile pressure (thus 2 is the nominal value for a float which never experienced stabilization issues)." | | | | | | | -NUMBER_HydraulicPackets_COUNT | Number of hydraulic packets used to transmit hydraulic (pump or valve) actions performed during the cycle. | | | | | | | -NUMBER_NearSurfaceSamples_COUNT | Near surface measurements - Internal counter | | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_InAirSamples_COUNT | In air measurements - Internal counter | | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_MixedLayerSamples_COUNT | number of CTD samples taken in the mixed layer | | | | | 1/15/2013 | 1/15/2013 | -NUMBER_ProfileSamples_COUNT | "the number of STP spot samples collected during the profile, not including the park-level spot sample " | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkSamples_COUNT | number of samples collected during park phase | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsToStartAscent_COUNT | Number of pump actions needed to start the ascent. | | | | | 4/30/2015 | 4/30/2015 | -NUMBER_PumpActionsDuringAscentToSurface_COUNT | number of pump actions between start and end of ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsAtSurface_COUNT | number of pump actions at emergence before transmission | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringPark_COUNT | number of pump actions while at park depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringDescentToPark_COUNT | number of pump actions between the crossing of the gap threshold and the end of descent at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringDescentToProfile_COUNT | number of pump actions during descent to start profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RepositionsDuringPark_COUNT | number of times the float readjusts its buoyancy during park phase - using either the pump or EV | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RepositionsAtProfileDepth_COUNT | "at profile pressure stand-by, number of times the float readjusts its buoyancy - using either the pump or EV" | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringPark_COUNT | number of valve actions during park phase | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringDescentToPark_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringDescentToProfile_COUNT | number of valve actions during descent to start profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT | number of solenoid valve actions at the surface until the crossing of the GAP threshold | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT | Number of solenoid valve actions at the surface until the crossing of the GAP threshold. Number computed by the float from previous cycles behaviour. | "This float version provides 2 counts for surface valve actions performed before the GAP threshold (threshold used to detect 'float descent start', see 126). This first one (NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT ) is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). It needs to be combined with the second (NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT, see 126,2) to get the parameter defined in 126 NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT= NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT " | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT | Number of solenoid valve actions at the surface until the crossing of the GAP threshold. These actions are performed after the NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT previous ones. | "see above (126,1 and 126). NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold." | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_ValveActionsDuringProfileDrift_COUNT | number of valve actions while drifting at profile depth | The first one: NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsForGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag | The second one: NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold. | T | | | 10/9/2014 | 10/9/2014 | -NUMBER_ValveActionsForFirstGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag for the first grounding event | Thus NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT = NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT | T | | | 5/5/2015 | 5/5/2015 | -NUMBER_ValveActionsForSecondGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag for the second grounding event | | T | | | 5/5/2015 | 5/5/2015 | -NUMBER_PumpActionsWhenGroundedAtProfilePressure_COUNT | number of pump actions needed to leave the sea bottom when grounded at profile pressure | | T | | | 10/9/2014 | 10/9/2014 | -NUMBER_MotorActionsDuringProfileDrift_COUNT | number of motor actions while drifting at profile depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentToPark_COUNT | number of motor actions between surface and parking depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentParkToProfile_COUNT | number of motor actions between parking depth and deepest position | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentToProfile_COUNT | number of motor actions between start and end ofdescent from park depth to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringAscentToSurface_COUNT | number of motor actions between start and end of descent to profile depth | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_BuoyancyInversionValveActions_COUNT | Number of solenoid valve actions needed to perform the buoyancy inversion phase when ice was detected during ascent. | "see 76 and 76,1" | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_AscentSamples_COUNT | ascent: total number of samples collected during ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples1stBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples2ndBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples3rdBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples4thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples5thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples6thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples7thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_FltnuAscentSamples_COUNT | ascent: Flntu profile length | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_DeepSamplesDuringAscent_COUNT | ascent: number of samples collected in deep area during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ShallowSamplesDuringAscent_COUNT | ascent: number of samples collected in shallow area during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DeepSamplesDuringDescent_COUNT | descent: number of samples collected in deep area during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ShallowSamplesDuringDescent_COUNT | descent: number of samples collected in shallow area during descent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RangeOverflowDuringAscent_COUNT | number of range overflows in measurements during ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RangeOverflowDuringPark_COUNT | number of range overflows in measurements during parking | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ArgosPositioningClass0_COUNT | positioning (ARGOS message) - Class 0 - accuracy >1500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass1_COUNT | positioning (ARGOS message) - Class 1 - accuracy better than 1500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass2_COUNT | positioning (ARGOS message) - Class 2 - accuracy better than 500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass3_COUNT | positioning (ARGOS message) - Class 3 - accuracy better than 250m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositions_COUNT | total number of Argos positions received. | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ArgosPositioningClassA_COUNT | positioning (ARGOS message) - Class A | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClassB_COUNT | positioning (ARGOS message) - Class B | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClassZ_COUNT | positioning (ARGOS message) - Class Z | | C | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningMessageRejected_COUNT | positioning (ARGOS message) - Rejected | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_GPSSatellites_COUNT | number of GPS satellites seen by the float | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileOldNotSent_COUNT | Number of older profiles not sent. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileSamplesLowResolution_COUNT | number of low resolution profile samples | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscendingSamplesDeepAbsolute_COUNT | Ascending profile measurements - Deep absolute | Note - JP indicates that depth and surface are inaccurate terms here and deep/shallow are better so I have made this change for all of these variables | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepRelative_COUNT | Ascending profile measurements - Deep relative | "Note also that these variables now can be used for any sensor, being replaced with the relevant variable" | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepTotal_COUNT | Ascending profile measurements - Deep total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowAbsolute_COUNT | Ascending profile measurements - Shallow absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowRelative_COUNT | Ascending profile measurements - Shallow relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowTotal_COUNT | Ascending profile measurements - Shallow total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesTotal_COUNT | Ascending profile measurements - Profile total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesAbsolute_COUNT | Ascending profile measurements - Profile absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesRelative_COUNT | Ascending profile measurements - Profile relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepInternalCounter_COUNT | Ascending profile measurements - Deep internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowInternalCounter_COUNT | Ascending profile measurements - Shallow internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesInternal_COUNT | Ascending profile measurements - Internal count | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingProfileReductionLowerPart_COUNT | Ascending profile reduction Number of slices in deep zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscendingProfileReductionUpperPart_COUNT | Ascending profile reduction Number of slices in shallow zone | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_DescendingProfileReductionLowerPart_COUNT | Descending profile reduction Number of slices in deep zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingProfileReductionUpperPart_COUNT | Descending profile reduction Number of slices in shallow zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesAbsolute_COUNT | Descending profile measurements - Profile absolute | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesRelative_COUNT | Descending profile measurements - Profile relative | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesTotal_COUNT | Descending profile measurements - Profile total | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_DescendingSamplesDeepAbsolute_COUNT | Descending profile measurements - Depth absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesDeepRelative_COUNT | Descending profile measurements - Depth relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesDeepTotal_COUNT | Descending profile measurements - Depth total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowAbsolute_COUNT | Descending profile measurements - Surface absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowRelative_COUNT | Descending profile measurements - Surface relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowTotal_COUNT | Descending profile measurements - Surface total | | | | | 1/5/2012 | 12/18/2013 | - -NUMBER_PRESSamplesDuringDescentToPark_COUNT | number of pressure samples collected as the float descends from the Shallow to the park pressure. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_PRESSamplesDuringDescentToProfile_COUNT | "number of pressure samples collected after park, during descent to the profile depth - see PRES_1HourIntoDescentToProfile_dbar for the data collected" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingPRESSamples_COUNT | number of descending Profile pressure measurements | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkEntriesInGap_COUNT | Descent to park float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToProfileEntriesInGap_COUNT | Descent to profile float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentEntriesInGap_COUNT | Descent float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile_COUNT | Distinct frames emitted on ascending profile | "Note - similarly to above, DOXY etc have been repaced by making these more flexible" | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnDescendingProfile_COUNT | Distinct frames emitted on descending profile | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnPark_COUNT | Distinct frames emitted on immersion profile | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FloatFramesCompleteOnDescendingProfile_COUNT | Provor frames complete on descending profile | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_FloatFramesOkOnDescendingProfile_COUNT | Provor frames ok on descending profile | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_FloatFramesReceivedOnDescendingProfile_COUNT | Provor frames received on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FloatPTOrPTCFrames_COUNT | Transmission (PROVOR frames) - PT or PTC frames | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FloatPTOrPFramesOk_COUNT | Transmission (PROVOR frames) - PT or PTC OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCompleteOnAscendingProfile_COUNT | Frames complete on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCompleteOnPark_COUNT | Frames complete on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCrcOkOnDescendingProfile_COUNT | Distinct frames received with crc ok on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCrcOkOnPark_COUNT | Distinct frames received with crc ok on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnDescendingProfile_COUNT | Distinct frames emitted on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile_COUNT | Distinct frames emitted on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnPark_COUNT | Distinct frames emitted on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesOkOnAscendingProfile_COUNT | Frames ok on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesOkOnPark_COUNT | Frames ok on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedCrcOkOnAscendingProfile_COUNT | Distinct frames received with crc ok on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedOnAscendingProfile_COUNT | Frames received on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedOnPark_COUNT | Frames received on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnAscendingProfile_COUNT | Frames recombined on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnDescendingProfile_COUNT | Frames recombined on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnPark_COUNT | Frames recombined on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_RecordsInDataset_COUNT | "The number of records in each dataset type [1-5] as transmitted - dataset 1=test data, 2=park data if profile, GPS data if test, 3=not used, 4=profile data, 5=GPS data for profile. This is currently applicable to NEMO floats only." | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile1_COUNT | Distinct optique frames emitted on ascending profile - Profile 1 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnAscendingProfile2_COUNT | Distinct optique frames emitted on ascending profile - Profile 2 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnAscendingProfile3_COUNT | Distinct optique frames emitted on ascending profile - Profile 3 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile1_COUNT | Ascending profile optique measurements - Internal counter - Profile 1 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile2_COUNT | Ascending profile optique measurements - Internal counter - Profile 2 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile3_COUNT | Ascending profile optique measurements - Internal counter - Profile 3 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_SpyFramesEmitted_COUNT | Distinct spy frames emitted | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkSamplesAbsolute_COUNT | Park measurements - Drift absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesInternal_COUNT | Park measurements - Internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesRelative_COUNT | Park measurements - Drift relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesTotal_COUNT | Park measurements - Drift total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkGapOrder_COUNT | Park float control - Gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TemporaryCycleIdentification_COUNT | Temporary - used to identify the recalculated Apex tech_cycle_data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesComplete_COUNT | Transmission (PROVOR frames) - Complete | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesCrcOk_COUNT | Transmission (PROVOR frames) - CRC OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesReceived_COUNT | Transmission (PROVOR frames) - Received | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesRecombined_COUNT | Transmission (PROVOR frames) - Recombined | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesTechnical_COUNT | Transmission (PROVOR frames) - Technical frames | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesTechnicalOk_COUNT | Transmission (PROVOR frames) - Technical OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TelemetryRetransmission_COUNT | Number of repeated transmissions of float data for each Argos message | | | | | | | -NUMBER_AscentPTMessages_COUNT | NUMBER OF ASCENT PT MESSAGES | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentPTMessages_COUNT | NUMBER OF DESCENT PT MESSAGES | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkPTMessages_COUNT | NUMBER OF DRIFT PT MESSAGES | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkDriftEntriesInParkMargin_COUNT | "drift at park pressure: number of entries in margin around park pressure target - specifically, how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db)" | | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -NUMBER_ParkDriftExitsFromParkMargin_COUNT | "drift at park pressure: number of exits from margin around park pressure target - specifically, how many times the float exits the band of pressure surrounding the target park pressure (generally +/- 30db)" | | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -NUMBER_DOXYErrorsAscending_COUNT | Number of O2_ Optode errors during profile. Zero if no sensor installed. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_RAFOSErrorsAscending_COUNT | Number of RAFOS errors during profile. Zero if no rafos module installed. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorErrorDuringProfile_COUNT | Number of moter errors during profile | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDReset_COUNT | CTD reset count | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDError_COUNT | CTD error count | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDAcquisitionsFailed_COUNT | Number of Failed CTD Acquisitions | | T | | | 5/25/2012 | 5/25/2012 | -NUMBER_MiddleSamplesDuringAscent_COUNT | ascent: number of samples in middle area | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AirPumpPulsesToInflateBladder_COUNT | number of 6-second pulses of the air pump required to inflate the air bladder | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorDeepZoneDuringAscending_COUNT | error of temperature measurements in deep zone during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorDeepZoneDuringDescending_COUNT | error of temperature measurements in deep zone during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorShallowZoneDuringAscending_COUNT | error of temperature measurements in deep shallow during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorShallowZoneDuringDescending_COUNT | error of temperature measurements in shallow zone during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileCrossCalibrationSamples_COUNT | " the number of Near Surface Temperature monitoring cross calibration samples (pumped PTS,non-pumped PT)." | | | | | 2/2/2016 | 2/2/2016 | -NUMBER_ProfileNearSurfaceTemperatureSamples_COUNT | the number of Near Surface Temperature monitoring PT samples (non-pumped PT) | | | | | 2/2/2016 | 2/2/2016 | removed | | configuration variable - do not use | | | | 1/5/2012 | 1/5/2012 | 11/1/2014 -NUMBER_SensorAnomaly_COUNT | number of anomalous sensor readings (?) | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CoherenceProblem_COUNT | SBE sensor data check used to diagnose problems | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ExceptionProgramCounter_NUMBER | "Exception Program Counter (EPC) used to store the address of theinstruction that was executing when the exception was generated." | "The new 'Emergency' Apex-APF11 float message provide a 4 bytes information called 'PC: The exception program counter'. Customers would report emergency messages to Teledyne, and from that TWR will identify the source of the problem. - -//Actual instruction addresses in the running program change for every version of code released." | T | | APEX with APF-11 | 5/24/2018 | 5/24/2018 | -DIAGNOSTICbit_CPUBatteryVoltage_bit | bit indicating the status of the CPU battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_CurrentWithMotorOut_bit | bit indicating the current with motor out | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_PressureOffsetAfterReset_bit | bit indicating the status of the pressure offset after reset | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_VacuumPressure_bit | bit indicating the status of the pressure of the vacuum | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_TimeMotorOut_bit | bit indicating the status of the time motor out | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_BatteryPumpVoltage_bit | bit indicating the status of the pump battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_ArgosTransmitterBootFailure_bit | was there an Argos transmitter boot failure | | | | | | | -DIAGNOSTICbit_ArgosTransmitterUnexpectedResponse_bit | was there an Argos transmitter unexpected response | | | | | | | -DIAGNOSTICbit_ArgosTransmitterNonresponsive_bit | is the Argos transmitter non responsive | | | | | | | -DIAGNOSTICbit_ArgosTransmitterNegativeAcknowledgeRecieved_bit | was there an Argos transmitter negative acknowledge recieved | | | | | | | -DIAGNOSTICbit_ArgosTransmitterRebootDetected_bit | was there an Argos transmitter reboot detected | | | | | | | -DIAGNOSTICbit_ArgosTransmitterPowerCycled_bit | did the Argos transmitter power cycled | | | | | | | -DIAGNOSTICbit_ArgosTransmitterIncommunicado_bit | did the Argos transmitter attempt to communicate fail | | | | | | | -DIAGNOSTICbit_ArgosTransmitterXmitFail_bit | did the Argos transmitter transmission attempt fail | | | | | | | - -FLAG_8BitProfileCounterOverflowed_LOGICAL | The 8-bit profile counter overflowed (Yes/1 or No/0_ | | | | | 1/5/2012 | 1/5/2012 | -FLAG_AirInflationSystemByPassedExcessiveEnergyConsumption_LOGICAL | Air inflation system by-passed; excessive energy consumption (Yes/1 or No/0) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_AntennaStatus_NUMBER | Flag indicating the status of the antenna (see manual) | | T | | | 7/14/2016 | 7/14/2016 | -FLAG_AscendingProfile_NUMBER | Status of profile upcast. 0=UPCAST_BUSY 1=UPCST_DONE 2=UPCAST_TIMEOUT 3=UPCAST_ICE_DETECTION | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_AscentError_NUMBER | "0=normal, 81=too shallow (grounding?) , 82=over 2100dbar, 84=sensor error" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_AscentTimeOutExpired_LOGICAL | Ascent time out expired (Yes/1 or No/0) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_BitMaskMonthsIceDetectionActive_ NUMBER | when is ice detection active - months in reverse order | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_CTDStatus_NUMBER | Flag indicating the status of the CTD (see manual) (could be reported as hex) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_CTDFastPressureError_LOGICAL | Flag for Error on CTD Fast Pressure Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDStartProfileError_LOGICAL | Flag for Error on CTD Start Profile Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDStopProfileError_LOGICAL | Flag for Error on CTD Stop Profile Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDDownloadError_LOGICAL | Flag for Error on CTD Download Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDAverageError_LOGICAL | Flag for Error on CTD Average Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_DataEntryError_LOGICAL | Data entry error (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_DataStateIndicator_LOGICAL | "Data state indicator - again, duplicated from the profile file)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_DeepProfile_LOGICAL | The current profile is a deep profile (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuNoResponse_LOGICAL | Flntu : No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuNullArgumentDetectedDuringMeasurement_LOGICAL | Flntu : Null argument detected during measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuPowerDownFailed_LOGICAL | Flntu : Power down failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuPowerUpFailed_LOGICAL | Flntu : Power up failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuResponseFailedRegexMatch_LOGICAL | Flntu : Response failed regex match (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuStatus_NUMBER | Flag indicating the status of the FLNTU (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlbbStatus_NUMBER | Flag indicating the status of the FLBB (see manual) | | T | | | 22/08/2066 | 22/08/2016 | -FLAG_FloatStatus_NUMBER | Flag indicating the status of the Float (see manual) (could be reported as hex) | | T/C | | | 1/5/2012 | 1/5/2012 | -FLAG_InitialMemoryIntegrityCheck_LOGICAL | Software check on the float memory contents (0 if problems were found and 1 if no problem occured) | Check the consistency of the default values stored in the dedicated memory | T | | | 22/08/2016 | 22/08/2016 | -FLAG_GPSStatus_LOGICAL | Flag indicating whether GPS is valid (1) or not valid (0) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Grounded_NUMBER | "grounded flag , diagnostic bit - could also be logical? Yes/no? 0/1? Or can be number of profiles during which the float grounded" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FirstGroundingCyclePhase_NUMBER | Phase of the float life or cycle when the first grounding occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_SecondGroundingCyclePhase_NUMBER | Phase of the float life or cycle when the second grounding occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_CTDErrorCyclePhase_NUMBER | Phase of the float life or cycle when the CTD error occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_Beached_NUMBER | is the float beached? - could be logical | | C | | | 5/28/2012 | 5/28/2012 | -FLAG_IceDetected_COUNT | aborted profile count - increments by one for each profile interrupted by ice detection. If units are 'bit' then represents the ice evasion record for the last 8 profiles with the latest profile in the least significant bit. | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_InvalidSequencePoint_LOGICAL | Invalid sequence point detected (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_NegativeSbeNumber_LOGICAL | Negative SBE number (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_NextPressureTimeout_LOGICAL | different from ascent timeout since it refers to a single pressure point timeout. | | | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeFailed_LOGICAL | Optode : Failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeNoResponse_LOGICAL | Optode : No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeNullArgumentDetectedDuringMeasurement_LOGICAL | Optode : Null argument detected during measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeStatus_NUMBER | Flag indicating the status of the Optode (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OxygenSensorState_LOGICAL | "Oxygen Sensor State - 1=on, 0=off" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PistonFullyExtendedBeforeSurfaceDetectionAlgorithmTerminated_LOGICAL | Piston fully extended before surface detection algorithm terminated (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PistonMotorRunning_LOGICAL | Piston motor running (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PressureActivationTestMessage_LOGICAL | Current argos message is a pressure-activation test message (Yes or No) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_InitialCheckError_LOGICAL | "Auto-test is performed at the beginning of the mission: Flag 0 = Problem, 1 = OK)" | or detailed auto-test for float hardware resulting in a detailed code for each tested sub-part (see manual) | | | | 4/30/2015 | 4/30/2015 | -FLAG_PressureReachedZero_LOGICAL | Pressure reached zero (Yes or No) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileInProgress_LOGICAL | Profile in progress (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTermination_hex | Flag indicating the status of the profile termination (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTerminationFlag#1_byte | see description in manufacturer's manual | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTerminationFlag#2_byte | see description in manufacturer's manual | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RemoteControlMessageKO_COUNT | number of received messages which have been rejected by the float | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RemoteControlMessageOK_COUNT | number of messages sent by the remote control and received by the iridium float | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RTCStatus_LOGICAL | "real time clock status - 1= OK, 0=not OK" | | T | | | 1/5/2012 | 9/29/2013 | -FLAG_TelonicsPTTStatus_byte | Implemented a status byte for the Telonics ST21 PTT to facilitate diagnostics. This byte records the state of 8 status bits for the Telonics PTT | | T | | APEX- NAVO | 4/17/2014 | 4/17/2014 | -FLAG_SatlanticStatus_NUMBER | Flag indicating the status of the Satlantic optical sensor | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingPPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the P pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePNonpedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the P nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePTSNonPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the PTS nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePTSPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the PTS pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41NullArgumentDetectedDuringPMeasurement_LOGICAL | Sbe41 : Null argument detected during P measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PExeption_LOGICAL | Sbe41 : P exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PNoResponse_LOGICAL | Sbe41 : P No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTException_LOGICAL | Sbe41 : PT exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTSException_LOGICAL | Sbe41 : PTS exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTSNoResponse_LOGICAL | Sbe41 : PTS No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PUnreliable_LOGICAL | Sbe41 : P unreliable (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPMeasurementFailedTheNonpedanticRegex_LOGICAL | Sbe41 : Response to P measurement failed the nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPMeasurementFailedThePedanticRegex_LOGICAL | Sbe41 : Response to P measurement failed the pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPTSMeasurementFailedTheNonpedanticRegex_LOGICAL | Sbe41 : Response to PTS measurement failed the nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPTSMmeasurementFailedThePedanticRegex_LOGICAL | Sbe41 : Response to PTS measurement failed the pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_SBE43NullArgumentDetectedDuringPTSMeasurement_LOGICAL | SBE43 : Null argument detected during PTS measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_SeabirdStringLengthError_LOGICAL | Seabird string length error (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ShallowWaterTrapDetected_LOGICAL | Shallow water trap detected (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusBladderStateAtLaunch_NUMBER | "External bladder state at deployment (0: float stay at surface, 1: heavy float at deployment)" | | | | | 4/30/2015 | 4/30/2015 | -FLAG_StartDescentToProfile_NUMBER | "Status of the start date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusEndAscentToSurface_NUMBER | "Status of the end date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusEndDescentToProfile_NUMBER | "Status of the end date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusHistoryQCFailed_hex | Flag History Failed (from profile file) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusHistoryQCPerformed_hex | Flag History performed (from profile file) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusStartAscentToSurface_NUMBER | "Status of the start date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusStartTransmission_NUMBER | "Status of the start date-time of transmission (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_System_NUMBER | | | | | | 1/5/2012 | 1/5/2012 | -FLAG_SystemAtDepth_hex | System flags at depth - SEE MANUAL | | | | | 1/5/2012 | 1/5/2012 | -FLAG_SystemAtSurface_hex | System flags at surface - SEE MANUAL | | | | | 1/5/2012 | 1/5/2012 | -FLAG_TimerDone_LOGICAL | Timer done (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_UpDown_LOGICAL | Flag indicating whether the float is in 'Up time' (0) or 'Down time' (1) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_WakeUpByWatchDogAlarm_LOGICAL | Wake-up by watchdog alarm (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ArgosTransmitterExceptionStatus_bit | has an Argos transmitter exception been detected | | | | | | | -REFERENCE_BlueFlntuParkEnd_COUNT | "Flntu BlueReference at end of park, before descent to profile depth" | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_BlueFlntuSurface_COUNT | Flntu BlueReference at surface | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_NTUParkEnd_COUNT | "Flntu NTU Reference at end of park, before descent to profile depth" | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_NTUSurface_COUNT | Flntu NTU Reference at surface | | T | | | 1/5/2012 | 1/5/2012 | - -POSITION_PistonNow_COUNT | | | | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonPark_COUNT | piston position at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonParkEnd_COUNT | piston position at end of park period before descent to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonParkStart_COUNT | plunger position at parking start | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonProfile_COUNT | piston position at maximum profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonStorage_COUNT | | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonSurface_COUNT | "Piston position, recorded as the instrument reaches the surface" | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonSurfaceAddedBuoyancy_COUNT | "Piston position, recorded AFTER the instrument reaches the surface and the bladder has been fully pumped to increase buoyancy" | | T | | | 1/5/2012 | 9/26/2012 | -POSITION_PistonTarget_NUMBER | is this the same as one of the CONFIG_PISTON variables? | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonPosition1_COUNT | Apex ascent profile piston position 1 | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonMax_COUNT | reported maximum piston position | | T | | | 1/5/2012 | 1/5/2012 | - -PRES_TimeOutGPS_dbar | Pressure when GPS acquisition times out | | | | NINJA_D | | | -PRES_TimeOutIridium_dbar | Pressure when iridium communications time out | | | | NINJA_D | | | -PRES_1HourIntoDescentToProfile_dbar | pressure taken 1 hour after the beginning of descent | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | T | | | 1/5/2012 | 1/5/2012 | -PRES_2HoursIntoDescentToProfile_dbar | pressure taken 2 hours after the beginning of descent | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | T | | | 1/5/2012 | 1/5/2012 | -PRES_HoursIntoDesentToProfile_dbar | (add more of these as required to complete the sequence as reported by the float) | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | | | | 1/5/2012 | 1/5/2012 | -PRES_MaxDifferencePvsPTorPTSSamples_dbar | "The maximum (in absolute value) divergence between pressures from closely-spaced (ie., a few seconds apart in time) P-only sample requests and PT or PTS sample requests. The divergence is measured as the P-only sample minus the pressure from the PTS (or PT) sample." | | | | | 10/20/2015 | 10/20/2015 | -PRES_AscendingProfileReductionBottomSlicesThickness_dbar | Ascending profile reduction Deep zone slices thickness - ETF | PRES_AscendingProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionETF_dbar | Ascending profile reduction - ETF | PRES_AscendingProfileReductionETF_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionETS_dbar | Ascending profile reduction - ETS | PRES_AscendingProfileReductionETS_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionSeparation_dbar | Ascending profile reduction Surface / bottom pressure threshold - PRSEP | PRES_AscendingProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionSurfaceSlicesThickness_dbar | Ascending profile reduction surface slices thickness - ETS | PRES_AscendingProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionBottomSlicesThickness_dbar | CTD profile reduction Deep zone slices thickness - ETF | PRES_CTDProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionSeparation_dbar | CTD profile reduction Shallow / deep pressure threshold - PRSEP | PRES_CTDProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionSurfaceSlicesThickness_dbar | CTD profile reduction Shallow zone slices thickness - ETS | PRES_CTDProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionBottomSlicesThickness_dbar | Descending profile reduction Deep zone slices thickness - ETF | PRES_DescendingProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionSeparation_dbar | Descending profile reduction Shallow / deep pressure threshold - PRSEP | PRES_DescendingProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionSurfaceSlicesThickness_dbar | Descending profile reduction surface slices thickness - ETS | PRES_DescendingProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescentStartAfterReset_dbar | Pressure after pressure reset just prior to descent (IDG VAR=PFS) | | T | | | 1/5/2012 | 1/5/2012 | - -PRES_DOXYProfileReductionBottomSlicesThickness_dbar | DOXY profile reduction Deep zone slices thickness - ETF | PRES_DOXYProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DOXYProfileReductionSeparation_dbar | DOXY profile reduction Shallow / deep pressure threshold - Surface / bottom pressure thresholdPRSEP | PRES_DOXYProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DOXYProfileReductionSurfaceSlicesThickness_dbar | DOXY profile reduction Number of slices in shallow zone - ETS | PRES_DOXYProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_ForFLNTUSurface_dbar | pressure used for Flntu at surface | | | | | 1/5/2012 | 1/5/2012 | -PRES_ForOptodeSurface_dbar | pressure used for Optode at surface | | | | | 1/5/2012 | 1/5/2012 | - -PRES_MaximumDepthBinWithValidData_dbar | Maximum depth bin with valid data according to the float | | | | | 1/5/2012 | 1/5/2012 | -PRES_ExceededMaximumProfileDepth_dbar | The pressure where the float exceeds its maximum profile depth. | | | | | | | - -PRES_MiddleDeepBoundaryAscent_dbar | boundary pressure between middle/deep areas at ascent - IS THIS A CONFIGURATION VARIABLE?? | | | | | 1/5/2012 | 1/5/2012 | -PRES_MinimumDepthBinWithValidData_dbar | Minimum depth bin with valid data according to the float | | | | | 1/5/2012 | 1/5/2012 | - -PRES_MinimumDuringMaximumBuoyancy_dbar | the shallowest presssure reached by a float when buoyancy is at maximum but it cannot reach the surface. | | | | NINJA_D | 2/10/2014 | 2/10/2014 | -PRES_Now_dbar | test message data reporting pressure at the surface during drift - cycle 0 | | T | | | 1/5/2012 | 1/5/2012 | -PRES_PlusFourseconds_dbar | PRES measured 4 seconds after PRES_AscentStart_dbar | "NOTE - this can also be placed into the traj files with MC-10 depending on the timing event (Often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. " | | | | 40913 | 40913 | -PRES_PlusTwoseconds_dbar | PRES measured 2 seconds after PRES_AscentStart_dbar | "NOTE - this can also be placed into the traj files with MC -10 depending on the timing event (often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. " | | | | 1/5/2012 | 1/5/2012 | -PRES_Settling0_dbar | needs valid definitions | | T | | | 1/5/2012 | 1/5/2012 | -PRES_Settling1_dbar | needs valid definitions | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowDeepBoundaryAscent_dbar | boundary pressure between shallow/deep areas at ascent | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowDeepBoundaryDescent_dbar | boundary pressure between shallow/deep areas at descent | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowestInProfile_dbar | shallowest profile point | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowMiddleBoundaryAscent_dbar | boundary pressure between shallow/middle areas at ascent - IS THIS A CONFIGURATION VARIABLE?? | | | | | 1/5/2012 | 1/5/2012 | -PRES_AscentTimeOutExpired_dbar | Pressure when ascending time out | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_DescentTimeOutExpired_dbar | Pressure when descending time out | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_DescentTimeOutExpiredAfterFailedAscent_dbar | Maximum pressure when descent times out after a previous failed ascent (from ice avoidancy or buoyancy issues). | | | | NINJA_D | 2/10/2014 | 2/10/2014 | -PRES_IceAvoidance_dbar | Pressure when float avoids ice | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_SurfaceComplement_dbar | Surface pressure complement | | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionBottomSlicesThickness_dbar | TUR3 profile reduction Deep zone slices thickness - ETF | PRES_TUR3ProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionSeparation_dbar | TUR3 profile reduction Surface / bottom pressure threshold - PRSEP | PRES_TUR3ProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionSurfaceSlicesThickness_dbar | TUR3 profile reduction Number of slices in shallow zone - ETS | PRES_TUR3ProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_ChangeInFirstSeek_COUNT | Pressure Change during first seek at the park depth (IDG Var=PSK) | | T | | | 1/5/2012 | 9/26/2012 | -PRES_WhenInWaterSensed_dbar | "From p,t,s when in water sensed " | | | | | 1/5/2012 | 1/5/2012 | -TEMP_WhenInWaterSensed_degC | "From p,t,s when in water sensed " | | T | | | 1/5/2012 | 1/5/2012 | -PSAL_WhenInWaterSensed_psu | "From p,t,s when in water sensed " | | | | | 1/5/2012 | 1/5/2012 | - -PRESSURE_AirBladder_COUNT | measured in COUNT - approx 148 COUNT | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_BladderNow_dbar | current pressure of the air bladder 'now' (when is 'now'?). | | | | | 1/5/2012 | 1/5/2012 | -PRES_DuringMaxBuoyancyAndGPSAcquisition_dbar | Pressure when buoyancy is max during getting GPS | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_During MaximumBuoyancyAndIridiumTransmission_dbar | Pressure when buoyancy is max during sending messages | | | | NINJA_D | 5/19/2014 | 5/19/2014 | - -PRESSURE_InternalVacuum_mbar | units might be (mbar) or (COUNT) or (inHg) | | | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAirBladderEmpty_inHg | Internal Vacuum when air (sleeve) bladder is empty (IDG Var=VACb) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAirBladderFull_inHg | Internal Vacuum when air (sleeve) bladder is full (IDG Var=VACa) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumDuringDescent50dbar_inHg | Internal Vacuum at 50dbar as float is sinking towards drift depth. | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumOilBladderEmpty_inHg | Internal vacuum when all oil is inside pressure case | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumOilBladderFull_inHg | Internal vacuum when all oil isinside the oil bladder | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumAtEndSurface_inHg | Air pressure inside of SOLO at end of surface time (IDG Var=ATE) ! | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtLaunch_inHg | Internal vacuum when float launched | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtStartSurface_inHg | Air pressure inside of SOLO at start of surface time (IDG Var=ATS) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtSurface_mbar | Surface internal pressure | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumBeforeFill_inHg | SAME AS SOMETHING ELSE? | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumDuringPark_inHg | Park vacuum | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumEndXmit_inHg | internal pressure at the end of the transmission period | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumParkEnd_inHg | Internal Vacuum at end of park. before descent to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumProfileStart_mbar | Internal tube pressure [mbar] in profile depth | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumRange_mbar | "the range of internal vacuum reported by the float - e.g., ""<=725"" or ""726-750""" | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumAtSurface_degC | internal tube temperature at the surface | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumAirBladderFull_degC | internal tube temperature at surface after airbladder fill | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumProfileStart_degC | internal tube temperature at the profile depth | | T | | | 1/5/2012 | 1/5/2012 | - -STATUS_LimitSwitch_hex | | | | | | 1/5/2012 | 1/5/2012 | -STATUS_MiscellaneousOperations_hex | | | T | | | 1/5/2012 | 1/5/2012 | -STATUS_LimitSwitchINAtSurfaceStartXmit_NUMBER | "Binary reporting of piston position (1=IN, 0=OUT) IDG VAR=LIMsw....not same LIMsw as in Cy0" | | T | | | 1/5/2012 | 1/5/2012 | -STATUS_LimitSwitchOUTAtStartAscent_NUMBER | "Binary reporting of piston position (0=IN, 1=OUT) (IDG VAR=LIMsw)...not same LIMsw as in Cy0" | | | | | 1/5/2012 | 1/5/2012 | -TIME_AirPumpOn_seconds | Air pump on time | | T | | | 1/5/2012 | 1/5/2012 | -TIME_AirPumpOnIntegrated_seconds | Air pumped integrated | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Ascent1900DB_seconds | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Ascent2000DB_seconds | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_BuoyancyPumpOn_seconds | are the units right? | | T | | | 1/5/2012 | 1/5/2012 | -TIME_BuoyancyReductionActionAtSurface_seconds | the time the pump or valve ran at the surface to initiate descent | | | | | | | -TIME_ClockDrift_dsec/day | MOVED from CONFIG to TIME | | T | | | 1/5/2012 | 1/5/2012 | - -TIME_DescentTo50Decibars_seconds | IDG Var=FallT | | | | | 1/5/2012 | 1/5/2012 | -TIME_DescentToPark_hours | metadata? Measured and reported? OR CONFIGURATION INFORMATION? | | T | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringAscent_seconds | DOXY ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringDescent_seconds | DOXY descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringPark_hours | DOXY drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -TIME_FromBladdersEmptyToStartOfMission_seconds | TIME FROM START TO END FIRST PROFILE | | | | | 1/5/2012 | 1/5/2012 | -TIME_FromStartOfMissionToEndFirstProfile_seconds | TIME FROM BLADDERS EMPTY TO START | | T | | | 1/5/2012 | 1/5/2012 | -TIME_GroundingRelativeToCycleBeginning_hours | Gounding day relative to cycle beginning | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceLastIridiumGPSFix_DD | Days since the last GPS fix/Hours since the Last GPS Fix (HH) | | T | | | 5/25/2012 | 5/25/2012 | -TIME_IridiumGPSFix_seconds | the number of seconds required to obtain a GPS fix for a profile | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PreviousIridiumSession_seconds | duration of the previous iridium session | | | | | | | -TIME_TransmissionLastHousekeepingMessage_seconds | time required to transmit the last housekeeping message | | | | | 5/25/2012 | 5/25/2012 | - -TIME_MotorDriveDuringDescent_minutes | | | T | | | 5/29/2012 | 5/29/2012 | -TIME_MotorDriveDuringAscent_minutes | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_OptiqueSampleFrequencyDuringDescent_seconds | Optique descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_OptiqueSampleFrequencyDuringPark_hours | Optique drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -TIME_PistonRanDuringDescentFrom100db_seconds | seconds that piston ran to descend from approximately 100db (IDG Var= TIP) | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PistonRanDuringFirstSeek_seconds | seconds that piston ran during first seek (park depth) IDG Var=TSK | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PumpActionsAtSurface_seconds | duration of pump actions at the surface | | | | | 1/5/2012 | 1/5/2012 | -TIME_PumpActionsAdditionalAtSurfaceForGPSAcquisition_seconds | duration of additional pump actions at the surface performed during GPS acquisition in case of insufficient buoyancy | | T | | | 7/14/2016 | 7/14/2016 | -TIME_PumpActionsAtDepth_seconds | total duration of pump actions at depth | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpActionsInOutAtDepth_COUNT | total duration of pump actions (in and out both reported) at depth | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpActionsInOutAtSurface_COUNT | total duration of pump actions (in and out both reported) at the surface | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpMotor_seconds | units could be COUNT or seconds - Pump motor time=COUNT multiplied by 2 for seconds | | T | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringAscent_seconds | CTD ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringDescent_seconds | CTD descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringPark_seconds | "sampling period during park was: TIME_SamplePeriodPark_hours" | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Settling0_seconds | | | | | | 1/5/2012 | 1/5/2012 | -TIME_Settling1_seconds | | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceAscentEnd_HHMMSS | (units variable) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceStartUp_seconds | time since startup before deployment | | | | | 1/5/2012 | 1/5/2012 | -TIME_TelemetryPhaseInitiationTimeRelativeEPOCH_minutes | time of telemetry phase initiation in mintes relative to EPOCH - this includes the ascent from profiling depth. | | T | | | 1/5/2012 | 1/5/2012 | -TIME_ToAscend_seconds | time taken to reach the surface | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Transmission_minutes | Transmission time in minutes | | T | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringAscent_seconds | TUR3 ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringDescent_seconds | TUR3 descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringPark_hours | TUR3 drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -VOLUME_OilVolumeTransferredAtSurfaceDuringDescent_cm^3 | Oil volume transferred from the external bladder during the descent to park (between the surface and the second threshold of the buoyancy reduction phase). This is the oil volume tranferred during the NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT valve actions (Id 126). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringDescentToPark_cm^3 | Oil volume transferred from the external bladder during the descent to park (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions (Id 124). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredToAscentWhenGrounded_cm^3 | "Oil volume, transferred to the external bladder, needed to leave the sea bottom when grounded. " | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringDescentToProfile_cm^3 | Oil volume transferred from the external bladder during the descent to start profile pressure. This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToProfile_COUNT valve actions (Id 125). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringAscentToSurface_cm^3 | Oil volume transferred to the external bladder during the ascent to surface This is the oil volume tranferred during the NUMBER_PumpActionsDuringAscentToSurface_COUNT pump actions (Id 116). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | - -CURRENT_BatteryAirPumpOn_mA | Battery Current during inflation of sleeve bladder | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryAvgPumpOnStartAscent_mA | Average pump motor current taken at start of ascent | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlntu_mA | battery current measured when Flntu sampled at unspecified time in profile | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlntuParkEnd_mA | battery current measured when Flntu sampled at end of park | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlbbParkEnd_mA | battery current measured when Flbb sampled at end of park | | T | | | 22/08/2016 | 22/08/2016 | -CURRENT_BatteryOptics_COUNTS | battery current while the optial sensor is on | | T | | | 5/29/2012 | 5/29/2012 | -CURRENT_Battery_mA | battery current measured by the sensors themselves. | | | | | 3/28/2014 | 3/28/2014 | -CURRENT_BatteryInitialAtProfileDepth_mA | Battery Current measured at bottom (park or pressure) at initial pump extension completion | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryMaxPumpOnStartAscent_mA | Maximum pump motor current taken at start of ascent | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryNoLoad_mA | same as: CURRENT_BATTERY_PARK_NOLOAD_mA? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPark_mA | measured during park-park phase and is averaged | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkEnd_mA | "battery current measured at end of park, before descent to profile depth" | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkNoLoad_mA | "Battery Current measured at park pressure with no load, Same as BOTTOM battery current (older floats)" | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkNoLoad_volts | same as: CURRENT_BATTERY_PARK_NOLOAD_mA? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPistonPumpOn_mA | Battery Current during pumping to ascend | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPumpOn_mA | Battery Current buoyancy pump on | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySampledbyFlntu_mA | Flntu sampled battery current | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySampledbySBE_mA | Sbe sampled battery current - same as CURRENT_BatterySBEPump_mA???? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySBEParkEnd_mA | battery current measured when the SBE41 sampled at the end of park | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySBEPump_mA | battery current when CTD active | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySurfaceAirPumpOn_mA | Battery Current measured at the surface with the air pump running (6 seconds) | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPumpLastValueAsAscends_mA | Current measured in the last portion of pumping as the float ascends | | T | | | 5/25/2012 | 5/25/2012 | -CURRENT_MotorAtEndOfAscent_mA | Motor current measured at the end of the ascent phase (pump motor?) | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_MotorOutToAscent_mA | Motor current measured during the ? ascent phase (pump motor?) | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_MotorStartProfile_amps | Motor current in profile depth | | | | | 1/5/2012 | 1/5/2012 | - -VOLTAGE_Aux_volts | auxiliary voltage (formerly VOLTAGE_OF_AUX(volts)) | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery_volts | battery voltage when battery capacity is unknown | | | | | | | -VOLTAGE_Battery6V_volts | battery voltage of 6v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery7V_volts | battery voltage of 7v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery12V_volts | battery voltage of 12V system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery14V_volts | battery voltage of 14v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery18V_volts | battery voltage of 18v system | | T | | | 5/25/2012 | 5/25/2012 | -VOLTAGE_BatteryCPU_volts | "CPU Voltage LSB=0.1 Volts, requires a full description " | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery14VStartDescentToPark_volts | battery voltage of 14V system when float starts descending to park | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery14VStartAscentToSurface_volts | battery voltage of 14V system when float starts ascending to surface | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery7VStartDescentToPark_volts | battery voltage of 7V system when float starts descending to park | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery7VStartAscentToSurface_volts | battery voltage of 7V system when float starts ascending to surface | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_BatteryCPUStartProfile_volts | CPU battery voltage at profile depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUStartXmit_volts | "CPU Battery @ start oftransmission after data has been processed LSB=0.1 volts, IDG Var= Vcpu" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUSurface_volts | Surface CPU battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUDepth_volts | CPU battery voltage at (unspecified) depth | | T | | | 5/25/2012 | 5/25/2012 | -VOLTAGE_BatteryDescentToProfile_volts | | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryExternalStartProfile_volts | voltage of the external battery at the profile depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryFlntuParkEnd_volts | battery voltage measured by Flntu at end of park | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryFlbbParkEnd_volts | battery voltage measured by Flbb at end of park | | T | | | 22/08/2016 | 22/08/2016 | -VOLTAGE_BatteryFltnu_volts | Flntu sampled battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryOptics_volts | battery voltage of the optical sensor. | | | | | | | -VOLTAGE_Battery_volts | battery voltage measured by the individual sensors | | | | | 3/28/2014 | 3/28/2014 | -VOLTAGE_BatteryInitialAtProfileDepth_volts | measured at initial pump extension completion | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryNoLoad_volts | battery voltage measured with no load | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryParkEnd_volts | battery voltage measured at end of park with no load | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryParkNoLoad_volts | battery voltage during inactive park phase - SAME AS BOTTOM BATTERY VOLTAGE FOR OLDER FLOATS | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPistonPumpOn_volts | buoyancy pump voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryProfileNoLoad_volts | battery voltage jus before profile begins - no load on the batteries | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpAscentEnd_volts | "Pump Battery at end of ascent Voltage LSB=0.1 Volts, - also a diagnostic message " | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpLastValueAsAscends_volts | "pump battery voltage, on last reading as ascending (IDG Var=Vpmp)" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpOn_volts | Pump Battery Voltage LSB=0.1 Volts | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpStartProfile_volts | Pump battery voltage (volts) at depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEAscent_volts | Voltage measured when ctd switched on sampling during profile ascend phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEParkEnd_volts | battery voltage measured when the SBE41 sampled after the end of park phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEPump_volts | battery voltage when CTD active | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySurfaceAirPumpOn_volts | Voltage measured when AIR PUMP is switched on at the surface for extra buoyancy | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySurfaceNoLoad_volts | battery voltage during inactive surface phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGEDROP_BatteryStartProfile_volts | "battery voltage drop, pump on at max pressure, starting profile(tenths of volts)" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGETIME_IntegratedAirPumpVolume_voltseconds | integrated measure (volts * seconds) of the pumped air volume (VSAP of Apex floats) | Changed units from volt+B640seconds to voltseconds | T | | | 1/5/2012 | 2/18/2015 | -VOLTAGE_AcrossInsulation_mV | Insulation voltage measured between 2 sub-parts of the float. | | | | | 2/16/2016 | 2/16/2016 | -SPEED_FirstGrounding_mm/s | Vertical speed during the first grounding | | | | | 10/9/2014 | 10/9/2014 | - -//BIO-Argo names: | | " can be: CTD, OPTODE, OCR, ECO3, FLNTU, CROVER, SUNA or any other BIO-Argo sensor defined." | | | | | | - -CURRENT_SUNAAPFSupply_mA | SUNA APF Frame Supply Current | | T | | | 9/26/2013 | 9/26/2013 | -FLAG_Status_LOGICAL | "Sensor status - 1= OK, 0=not OK" | | T | | | 9/26/2013 | 9/29/2013 | - -FLAG_SensorBoardStatus_NUMBER | Flag reporting the status of the sensor board. | | | | | 9/26/2013 | 9/29/2013 | - -NUMBER_AscentIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_AscentSamplesDepthZone_COUNT | Number of samples acquired by in the depth zone # during the ascent from the profile depth to the surface. Depth zone number: = 1..5 | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_DescentIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_DescentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_DescentSamplesDepthZone_COUNT | Number of samples acquired by in the depth zone # during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Depth zone number: = 1..5 | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscentSamples_COUNT | "Number of samples acquired by during the ""ascent to surface"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_InAirSamples_COUNT | "Number of samples acquired by during the ""surface"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_DescentToParkSamples_COUNT | "Number of samples acquired by during the ""surface to parking depth"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_DescentToProfileSamples_COUNT | "Number of samples acquired by during the ""parking depth to profile depth"" phase." | | | | CTS5 | 12.10.202 | 10/12/2020 | -NUMBER_ParkIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the drift at park depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ParkIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the drift at park depth. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_ProfileDriftIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the drift at profile depth. (Drift is added to the name because otehrwise it appears to be ascent data) | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ParkSamples_COUNT | Number of samples acquired by during the drift at parking depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ProfileDriftSamples_COUNT | Number of samples acquired by during the drift at profile depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscendingCTDSamplesInternalCounter_COUNT | total number of slices of the ascending profile after reduction | | NUMBER_AscendingCTDSamplesDepthInternalCounter_COUNT | Ascending profile ctd measurements - Depth internal counter | | 9/26/2013 | 9/29/2013 | -NUMBER_DescendingCTDSamplesInternalCounter_COUNT | total number of slices of the descending profile after reduction | | NUMBER_DescendingCTDSamplesDepthInternalCounter_COUNT | Descending profile cdt measurements - Depth internal counter | | 9/26/2013 | 9/29/2013 | -NUMBER_PumpActionsDuringProfileDrift_COUNT | Number of pump actions during drift at profile depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_PumpActionsToLeaveReleasingSystem_COUNT | Number of pump actions needed to leave the releasing system (float deployed in ASFAR (Autonomous System for Argo float Release) mode) | | | | | 10/18/2015 | 10/18/2015 | -NUMBER_SBEFPCommandTimeouts_COUNT | "Number of timeouts while measuring pressure with the SBE sensor using a ""Fast Pressure"" command." | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_VectorToSensorBoardsDialogErrors_COUNT | Number of dialog errors between vector and sensor boards. | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFErrorCounter_COUNT | "Incremented each time an error is encountered.The APF interface provides a mechanism to access error messages.If the error counter increases between frames, the operator or control system can retrieve the accumulated error message(s)." | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFPowerCycleCounter_COUNT | Incremented each time power is applied to SUNA (it can be used to notice if the SUNA was powered unintentionally between data collection events). | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFSampleCounter_COUNT | "Incremented for each sample the SUNA measures (it can be used to track frames, and recognize if frames were missed)." | | | | | 12/17/2013 | 12/17/2013 | -VOLTAGE_SUNAAPFSupplyVoltage_volts | "Voltage [V] measured inside SUNA via ADC.The voltage available to the SUNA just outside its power regulators.SUNA can operate on 6 to 18 VDC. This voltage allows the operator to monitor supply voltage, and in the case of a drop to makedecisions on the continued operation of the SUNA." | | | | | 12/17/2013 | 12/17/2013 | -CURRENT_SUNAAPFSupplyCurrent_mA | "Current [mA] measured inside SUNA via ADC.The current can be monitored to ascertain that all components are operating. A sudden drop or increase would indicate the failure of a system component." | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_OptodeSensorReset_COUNT | Number of power resets of the DO sensor | | | | | 5/10/2016 | 5/10/2016 | -NUMBER_OptodeAcquisitionsFailed_COUNT | Number of failed acquisitions of the DO sensor | | | | | 5/10/2016 | 5/10/2016 | -NUMBER_SubCycle_NUMBER | | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_InternalCycle_NUMBER | | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SubCyclesDoneSinceDeployment_COUNT | | | | | | 1/1/2014 | 1/1/2014 | -/////added so we don't have to allow missing ///// -NUMBER_AscentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_DescentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_ParkIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the drift at park depth. | | | | | 10/14/2014 | 10/14/2014 | - -NUMBER_PumpActionsDuringPark1_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark1_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark1_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark1Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark1Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark1_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark2_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark2_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark2_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark2Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark2Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark2_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark3_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark3_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark3_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark3Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark3Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark3_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark4_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark4_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark4_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark4Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark4Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark4_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark5_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark5_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark5_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark5Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark5Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark5_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 diff --git a/file_checker_spec/argo-tech_names-spec-v3.0 b/file_checker_spec/argo-tech_names-spec-v3.0 deleted file mode 100644 index 8fb5f6a..0000000 --- a/file_checker_spec/argo-tech_names-spec-v3.0 +++ /dev/null @@ -1,675 +0,0 @@ -//parameter code | description | comment | transmitted/calculated | parameter type | float type | creation date | update date | obsolete date -//"Non-technical data (statistics, QC and diagnostic data)" | | | | | | | | -FLAG_GreyListPSAL_LOGICAL | "Y=yes, N=no (or field is absent)" | | | | | | | -FLAG_GreyListTEMP_LOGICAL | "Y=yes, N=no (or field is absent)" | | | | | | | -FLAG_SpeedMaximumCheck_NUMBER | needs valid definitions | | | | | | | -TEMP_MixedLayerMedian_degC | median of the mixed layer samples taken | | | | | 1/15/2013 | 1/15/2013 | -TEMP_MixedLayerInfimum_degC | infimum of the mixed-layer median temperature since the last successful telemetry | | | | | 1/15/2013 | 1/15/2013 | -CURRENT_MotorMeanOfProfile_amps | Mean of motor current during upcast | | T | | | | | -BACKSCATTERING_MeanBeforeAscent_m^-1/sr | Bio parameter statistic | | | | | | 1/5/2012 | -CDOM_MeanBeforeAscent_ppb | Bio parameter statistic | | | | | | 1/5/2012 | -CHLT_MeanBeforeAscent_mg/m^3 | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W1_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W2_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W3_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | - -//Surface Pressure Offset variable names - note that this table is also appended to the Argo User's manual as table ?? | | | | | | | | - -PRES_SurfaceOffsetTruncatedPlus5dbar_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, negative offsets truncated to 0, 5dbar addedNot autocorrected" | "Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | "R1-SBE, APEX-SBE, all APEX up to APEX APF8s" | | 5/29/2012 | -PRES_SurfaceOffsetTruncatedPlus3dbar_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset, negative offsets truncated to 0, 3dbar addedNot autocorrected" | "Subtract 3 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | R1-SBE | | 5/29/2012 | -PRES_SurfaceOffsetTruncated_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, negative offsets truncated to 0Not autocorrected" | " In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. NOTE - unlike the previous name, it DOES NOT have 5db added and so this does not need to be removed before use." | T | | 2 ALACE R1 FSI floats | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncated_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, This IS NOT used to correct pressure on boardNot autocorrected" | "In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | "APEX APF9, pre 2002 SOLO-SIO, Metocean PROVOR, NEMO (SN>=90), PALACE " | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncated_approx5dbarResolution_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset, This IS NOT used to correct pressure on board. Also note that the resolution varies because counts are repoted and converted using different calibration coefficients for each floatNot autocorrected" | | T | | APEX APF1 | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncatedPlus5dbar_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset with 5dbar added.Not autocorrected" | "Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | APEX APF-8 after firmware update 14-12-07 | | 5/29/2012 | -PRES_SurfaceOffsetCorrectedNotReset_1dbarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative offset but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "Provor T,CTF2, CTF3, and CTS2, JAMSTEC's MetOcean PROVOR " | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotReset_1cBarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative offset but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "JAMSTEC's PROVOR-CTS3, NINJA (2003) and MetOcean PROVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1dbarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "PROVOR CTS3, PROVOR-DO and ARVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1cBarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "PROVOR CTS3, PROVOR-DO and ARVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1mBarResolution_dbar | Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required. Autocorrected | The CTS5 provides the Poffset with a 1 mBar resolution. | T | | PROVOR CTS5 | 2/1/2016 | | -PRES_SurfaceOffsetBeforeReset_dbar | Surface pressure measurement which is then used to correct pressure on board the float. Note: thus is a relative offset and no further correction is required. | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeResetTruncated_dbar | "Surface pressure measurement which is then used to correct pressure on board the float. Note: this is a CUMULATIVE offset and no further correction is required. Negative offsets truncated to 0.Autocorrected" | "Autocorrecting so no adjustment in either RT or DM typically required. NOTE: if the SPO is >40 for the Argo CTD, then the autocorrection is PARTIALLY applied (40 is subtracted, leaving the 'excess' offset uncorrected) and the pressures may need to be adjusted in RT and DM." | T | | NEMO(SN<80) | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_dbar | "Surface pressure measured after pressure has been corrected on board the float. This is a relative measurement and no further correction is required. Autocorrected" | "Autocorrecting so no adjustment in either RT or DM typically required. This value used as a check on the autocorrecting of pressure onboard the float. Significant values may indicate a need for additional correction" | T | | SOLO-SIO (secondary name used in conjunction with PRES_SurfaceOffsetBeforeReset_dbar ) | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_1dBarResolution_dbar | "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile. Note: this is a relative offset and no further correction is possible.Autocorrected" | Autocorrecting so no adjustment in either RT or DM possible | T | | "French PROVOR-CTS3, PROVOR-DO, ARVOR - may be used for other floats as well." | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_1cBarResolution_dbar | "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile. Note: this is a relative offset.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required but this could be applied in DMQC. | T | | "French PROVOR-CTS3, PROVOR-DO, ARVOR, SOLO-WHOI, SOLO-SIO - may be used for other floats as well." | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_1cBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_5cBarResolution_dbar | "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.5db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_5cBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.5db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_2mBarResolution_dbar | "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.04db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required (changed from 4 to 2mBar resolution as per Gilson request) | T | | SOLO II-SIO | | 1/6/2013 | -PRES_SurfaceOffsetAfterReset_2mBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.04db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required (changed from 4 to 2mBar resolution as per Gilson request) | T | | SOLO II-SIO | | 1/6/2013 | -PRES_SensorAutoAdjustment_dbar | TOTAL Surface pressure offset applied by the float since deployment - this is a cumulative offset (with limitations) and cannot be used for pressure correction | This is a surface pressure name for reference only | T | | SOLO II-SIO | | | - -//end surface pressure offset section... | | | | | | | | - -CLOCK_EndAscentToSurface_hours | "ascent end time, just before Argos transmission - note units can vary and the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time." | JULD_ASCENT_END and JULD with MC=600 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartAscentToSurface_hours | ascent start time - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_ASCENT_START and JULD with MC=500 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentToPark_hours | time when park pressure is reached - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentToPark_hours | time after the crossing the gap threshold - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | not sure where this is - at the surface? | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentToProfile_hours | time when float reaches profile pressure - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DEEP_DESCENT_END or JULD_DEEP_PARK_START and JULD with MC=400 or JULD with MC=450 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentToProfile_hours | time when descent to profile pressure starts - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_PARK_END and JULD with MC=300 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentProfile_hours | time when descent profile starts - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_START and JULD with MC=100 assuming descending profile starts when float leaves the surface; otherwise choose the appropriate timing variable | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentProfile_hours | time when descent profile ends - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250 assuming descending profile ends with a park phase; otherwise choose the appropriate timing variable | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndAscentToSurfaceEstimated_HHMMSS | Theoretical time of end of ascent to surface | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeFromStartUp_hours | Time from start up - note that you should also store the time of the satellite message from which this was calculated. | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartInternalCycle_FloatDay | the time of the (internal) cycle start for floats with multiple sub-cycles | | | | | | | -CLOCK_RealTimeDrift_seconds | The difference (seconds)between apf9's real time clock (rtc) and gps time representing clock drift | "is also represented in the traj files. We have CLOCK_OFFSET which is defined as: Decimal part of day that float clock has drifted. Float clockdrift is defined as Float time (provided by the inboard RealTime Clock (RTC) of the float) UT time. " | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatTime_HHMMSS | float internal clock time | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatTimeCorrection_MMSS | float internal clock time correction | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_DateFirstParkSample_YYYYMMDD | float internal clock date of the first park sample | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeFirstParkSample_hours | float internal clock time of the first park sample | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_InitialStabilizationDuringDescentToPark_hours | time when first stabilization appears during descent to park | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_InitialValveActionDescentToPark_HHMM | Time in the day when the float first activated the valve during its descent | | T | | | 5/25/2012 | 5/25/2012 | -TIME_ValveActionsAtSurface_minutes | duration of the basic valve actions which is computed by the float from preceding cycles | | | | | 7/8/2014 | 7/8/2014 | -CLOCK_ValveActionsAtSurface_HHMM | the time when the float moves the valve to acquire additional buoyancy for surface drift. | | | | | | | -CLOCK_PumpActionsAtSurface_HHMM | the time when the float moves the pump to acquire additional buoyancy for surface drift. | | | | | 7/8/2014 | 7/8/2014 | -CLOCK_Satellite_HHMMSS | time derived from satellite communications | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_TransmissionStart_HHMMSS | time of the first transmission for this cycle NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | TRANSMISSION_START_TIME and in JULD with MC=700 | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TransmissionEndTime_YYYYMMDDHHMMSS | time when transmission is ended - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | TRANSMISSION_END_TIME and JULD with MC=800 | T | | NINJA_D | 5/19/2014 | 5/19/2014 | -CLOCK_LastIridiumGPSFix_DD | Day of month of last GPS fix/Time of Last GPS Fix (HH) | | | | | | | -CLOCK_FloatDayOfYear_days | internal float day of year | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatDate_YYYYMMDD | internal float date | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatDateTimeDownTimeExpired_YYYYMMDDHHMMSS | Time of expiry of the descent time and beginning of ascent | | | | | 29/0512 | 29/0512 | -CLOCK_AscentInitiationFromDownTimeExpiryOffset_minutes | "Profile initiation time (minutes) 2's compliment signed integer (positive values - profile initiated after down time expired, negative values - profile initiated before down time expired)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_EOLStart_YYYYMMDDHHMMSS | Clock time when End of Life mode starts | | | | | 10/9/2014 | 10/9/2014 | -CLOCK_TimeGrounded_HHMM | time the float grounded | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_BuoyancyInversionStart_FloatDay | Time when the float starts the buoyancy inversion phase when ice was detected during ascent. | "When the ascent profil is aborted because of the Ice detection algorithm, the float starts a 'buoyancy inversion phase'. The current label reports the start time of this phase and NUMBER_BuoyancyInversionValveActions__COUNT the number of valve actions needed to invert float buoyancy. See 132,1" | T | | Provor CTS4 | 5/24/2018 | 5/24/2018 | -CLOCK_ReceptionEndDateTime_YYYYMMDDHHMMSS | End date-time of argos message reception | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ReceptionEndDateTime_NUMBER | "Status of the end date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_ReceptionStartDateTime_YYYYMMDDHHMMSS | Start date-time of argos message reception | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ReceptionStartDateTime_NUMBER | "Status of the start date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_LastReset_YYYYMMDDHHMMSS | Clock time of the last reset of the float | | T | | | 10/9/2014 | 10/9/2014 | -CLOCK_DateOfEmergencyAscent_DDMMYYYY | date of emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeOfFirstEmergencyAscent_HHMMSS | time of first emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_PressureActivationStart_YYYYMMDDHHMMSS | pressure activation scrutation start date | The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. | T | | Provor CTS5 | 24/10/2018 | 24/10/2018 | -CLOCK_PressureActivationStop_YYYYMMDDHHMMSS | pressure activation scrutation end date | The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. | T | | Provor CTS5 | 24/10/2018 | 24/10/2018 | -NUMBER_PumpActionsOnFirstEmergencyAscent_COUNT | Emergency ascent - pump actions at emergency depth | | T | | | 1/5/2012 | 1/5/2012 | -PRES_FirstEmergencyAscent_dbar | Pressure that triggered the first emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_EmergencyAscents_COUNT | Number of Emergency ascents - Internal count | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_EmergencyAscent_LOGICAL | Was an emergency ascent performed? | | T | | | 5/25/2012 | 5/25/2012 | -PRES_LastAscentPumpedRawSample_dbar | Last (shallowest) pumped raw pressure sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped) (in dbars).- note this may be duplicated in the traj files with MC599 | | | | | | | -NUMBER_ParkAndProfileCycleCounter_COUNT | this is an indication of how often the float does a profile deeper than its park depth. | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentArgosMessages_COUNT | number of transmitted Argos messages with ascent data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentArgosMessages_COUNT | number of transmitted Argos messages with descent data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkArgosMessages_COUNT | number of transmitted Argos messages with park data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentIridiumMessages_COUNT | number of transmitted Iridium messages with ascent data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_DescentIridiumMessages_COUNT | number of transmitted Iridium messages with descent data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_ParkIridiumMessages_COUNT | number of transmitted Iridium messages with park data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_IridiumResets_COUNT | Number of Power Resets iridium | | | | | 5/25/2012 | 5/25/2012 | -NUMBER_IridiumPacketsReceivedPreviousSession_COUNT | Number of Incoming Iridium Packets Received during previous session | | | | | 5/25/2012 | 10/10/2014 | -NUMBER_IridiumMessagesReceivedPreviousSession_COUNT | Number of Incoming Iridium Messages Received during previous session | | | | | 10/10/2014 | 10/10/2014 | -NUMBER_IridiumMessagesSentPreviousSession_COUNT | Number of Incoming Iridium Messages Sent during previous session | | | | | 10/10/2014 | 10/10/2014 | -NUMBER_NearSurfaceIridiumPackets_COUNT | "Number of Iridium packets used to transmit sensor data collected during the ""near surface measurement"" phase." | internal counter measured by the float | C | | | 7/14/2016 | 7/14/2016 | -NUMBER_InAirIridiumPackets_COUNT | "Number of Iridium packets used to transmit sensor data collected during the ""in air measurement"" phase." | internal counter measured by the float | C | | | 7/14/2016 | 7/14/2016 | -NUMBER_RemoteControlCommandKO_COUNT | Number of remote control commands rejected by the float. | See also ID 309 | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_RemoteControlCommandOK_COUNT | Number of remote control commands successfully considered. | The float can receive message with multiple remote commands. It reports the number of received messages (in FLAG_RemoteControlMessageOK_COUNT and FLAG_RemoteControlMessageKO_COUNT) and also the the number of received commands (in these 2 new labels). See ID 310 | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_GPSResets_COUNT | Number of Power Resets GPS | | | | | 5/25/2012 | 5/25/2012 | -NUMBER_RetriesForGPSAcquisition_COUNT | Number of times the GPS had to try to get a valid fix | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_PRESIridiumMessages_COUNT | number of iridium messages containing PRES data | | | | | 2/11/2014 | 2/11/2014 | -NUMBER_HydraulicRecords_COUNT | Number of hydraulic (pump or valve) actions performed during the cycle. Due to transmission limitations some of them may not be transmitted (in the NUMBER_HydraulicPackets_COUNT transmitted packets). | | | | | 2/11/2014 | 2/11/2014 | - -NUMBER_BinsWithBadData_COUNT | number of pressure bins with bad data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_BinsWithData_COUNT | number of pressure bins with data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkEntriesInParkMargin_COUNT | "descent to park pressure: number of entries in margin around park pressure target - specifically, how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db)" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToProfileEntriesInProfileMargin_COUNT | "descent to profile pressure: number of entries in margin around profile pressure target - specifically, how many times the float enters the band of pressure surrounding the target profile pressure (generally +/- 30db)" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkAndToProfEntriesInParkMargin_COUNT | "Cumulated numbers of entries in both parking zones (at park and profile depth). Specifically, how many times the float enters the band of pressure surrounding the target park/profile pressure (thus 2 is the nominal value for a float which never experienced stabilization issues)." | | | | | | | -NUMBER_HydraulicPackets_COUNT | Number of hydraulic packets used to transmit hydraulic (pump or valve) actions performed during the cycle. | | | | | | | -NUMBER_NearSurfaceSamples_COUNT | Near surface measurements - Internal counter | | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_InAirSamples_COUNT | In air measurements - Internal counter | | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_MixedLayerSamples_COUNT | number of CTD samples taken in the mixed layer | | | | | 1/15/2013 | 1/15/2013 | -NUMBER_ProfileSamples_COUNT | "the number of STP spot samples collected during the profile, not including the park-level spot sample " | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkSamples_COUNT | number of samples collected during park phase | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsToStartAscent_COUNT | Number of pump actions needed to start the ascent. | | | | | 4/30/2015 | 4/30/2015 | -NUMBER_PumpActionsDuringAscentToSurface_COUNT | number of pump actions between start and end of ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsAtSurface_COUNT | number of pump actions at emergence before transmission | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringPark_COUNT | number of pump actions while at park depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringDescentToPark_COUNT | number of pump actions between the crossing of the gap threshold and the end of descent at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringDescentToProfile_COUNT | number of pump actions during descent to start profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RepositionsDuringPark_COUNT | number of times the float readjusts its buoyancy during park phase - using either the pump or EV | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RepositionsAtProfileDepth_COUNT | "at profile pressure stand-by, number of times the float readjusts its buoyancy - using either the pump or EV" | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringPark_COUNT | number of valve actions during park phase | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringDescentToPark_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringDescentToProfile_COUNT | number of valve actions during descent to start profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT | number of solenoid valve actions at the surface until the crossing of the GAP threshold | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT | Number of solenoid valve actions at the surface until the crossing of the GAP threshold. Number computed by the float from previous cycles behaviour. | "This float version provides 2 counts for surface valve actions performed before the GAP threshold (threshold used to detect 'float descent start', see 126). This first one (NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT ) is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). It needs to be combined with the second (NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT, see 126,2) to get the parameter defined in 126 NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT= NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT " | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT | Number of solenoid valve actions at the surface until the crossing of the GAP threshold. These actions are performed after the NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT previous ones. | "see above (126,1 and 126). NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold." | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_ValveActionsDuringProfileDrift_COUNT | number of valve actions while drifting at profile depth | The first one: NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsForGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag | The second one: NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold. | T | | | 10/9/2014 | 10/9/2014 | -NUMBER_ValveActionsForFirstGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag for the first grounding event | Thus NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT = NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT | T | | | 5/5/2015 | 5/5/2015 | -NUMBER_ValveActionsForSecondGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag for the second grounding event | | T | | | 5/5/2015 | 5/5/2015 | -NUMBER_PumpActionsWhenGroundedAtProfilePressure_COUNT | number of pump actions needed to leave the sea bottom when grounded at profile pressure | | T | | | 10/9/2014 | 10/9/2014 | -NUMBER_MotorActionsDuringProfileDrift_COUNT | number of motor actions while drifting at profile depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentToPark_COUNT | number of motor actions between surface and parking depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentParkToProfile_COUNT | number of motor actions between parking depth and deepest position | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentToProfile_COUNT | number of motor actions between start and end ofdescent from park depth to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringAscentToSurface_COUNT | number of motor actions between start and end of descent to profile depth | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_BuoyancyInversionValveActions_COUNT | Number of solenoid valve actions needed to perform the buoyancy inversion phase when ice was detected during ascent. | "see 76 and 76,1" | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_AscentSamples_COUNT | ascent: total number of samples collected during ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples1stBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples2ndBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples3rdBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples4thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples5thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples6thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples7thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_FltnuAscentSamples_COUNT | ascent: Flntu profile length | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_DeepSamplesDuringAscent_COUNT | ascent: number of samples collected in deep area during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ShallowSamplesDuringAscent_COUNT | ascent: number of samples collected in shallow area during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DeepSamplesDuringDescent_COUNT | descent: number of samples collected in deep area during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ShallowSamplesDuringDescent_COUNT | descent: number of samples collected in shallow area during descent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RangeOverflowDuringAscent_COUNT | number of range overflows in measurements during ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RangeOverflowDuringPark_COUNT | number of range overflows in measurements during parking | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ArgosPositioningClass0_COUNT | positioning (ARGOS message) - Class 0 - accuracy >1500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass1_COUNT | positioning (ARGOS message) - Class 1 - accuracy better than 1500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass2_COUNT | positioning (ARGOS message) - Class 2 - accuracy better than 500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass3_COUNT | positioning (ARGOS message) - Class 3 - accuracy better than 250m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositions_COUNT | total number of Argos positions received. | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ArgosPositioningClassA_COUNT | positioning (ARGOS message) - Class A | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClassB_COUNT | positioning (ARGOS message) - Class B | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClassZ_COUNT | positioning (ARGOS message) - Class Z | | C | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningMessageRejected_COUNT | positioning (ARGOS message) - Rejected | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_GPSSatellites_COUNT | number of GPS satellites seen by the float | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileOldNotSent_COUNT | Number of older profiles not sent. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileSamplesLowResolution_COUNT | number of low resolution profile samples | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscendingSamplesDeepAbsolute_COUNT | Ascending profile measurements - Deep absolute | Note - JP indicates that depth and surface are inaccurate terms here and deep/shallow are better so I have made this change for all of these variables | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepRelative_COUNT | Ascending profile measurements - Deep relative | "Note also that these variables now can be used for any sensor, being replaced with the relevant variable" | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepTotal_COUNT | Ascending profile measurements - Deep total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowAbsolute_COUNT | Ascending profile measurements - Shallow absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowRelative_COUNT | Ascending profile measurements - Shallow relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowTotal_COUNT | Ascending profile measurements - Shallow total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesTotal_COUNT | Ascending profile measurements - Profile total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesAbsolute_COUNT | Ascending profile measurements - Profile absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesRelative_COUNT | Ascending profile measurements - Profile relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepInternalCounter_COUNT | Ascending profile measurements - Deep internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowInternalCounter_COUNT | Ascending profile measurements - Shallow internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesInternal_COUNT | Ascending profile measurements - Internal count | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingProfileReductionLowerPart_COUNT | Ascending profile reduction Number of slices in deep zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscendingProfileReductionUpperPart_COUNT | Ascending profile reduction Number of slices in shallow zone | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_DescendingProfileReductionLowerPart_COUNT | Descending profile reduction Number of slices in deep zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingProfileReductionUpperPart_COUNT | Descending profile reduction Number of slices in shallow zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesAbsolute_COUNT | Descending profile measurements - Profile absolute | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesRelative_COUNT | Descending profile measurements - Profile relative | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesTotal_COUNT | Descending profile measurements - Profile total | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_DescendingSamplesDeepAbsolute_COUNT | Descending profile measurements - Depth absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesDeepRelative_COUNT | Descending profile measurements - Depth relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesDeepTotal_COUNT | Descending profile measurements - Depth total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowAbsolute_COUNT | Descending profile measurements - Surface absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowRelative_COUNT | Descending profile measurements - Surface relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowTotal_COUNT | Descending profile measurements - Surface total | | | | | 1/5/2012 | 12/18/2013 | - -NUMBER_PRESSamplesDuringDescentToPark_COUNT | number of pressure samples collected as the float descends from the Shallow to the park pressure. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_PRESSamplesDuringDescentToProfile_COUNT | "number of pressure samples collected after park, during descent to the profile depth - see PRES_1HourIntoDescentToProfile_dbar for the data collected" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingPRESSamples_COUNT | number of descending Profile pressure measurements | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkEntriesInGap_COUNT | Descent to park float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToProfileEntriesInGap_COUNT | Descent to profile float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentEntriesInGap_COUNT | Descent float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile_COUNT | Distinct frames emitted on ascending profile | "Note - similarly to above, DOXY etc have been repaced by making these more flexible" | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnDescendingProfile_COUNT | Distinct frames emitted on descending profile | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnPark_COUNT | Distinct frames emitted on immersion profile | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FloatFramesCompleteOnDescendingProfile_COUNT | Provor frames complete on descending profile | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_FloatFramesOkOnDescendingProfile_COUNT | Provor frames ok on descending profile | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_FloatFramesReceivedOnDescendingProfile_COUNT | Provor frames received on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FloatPTOrPTCFrames_COUNT | Transmission (PROVOR frames) - PT or PTC frames | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FloatPTOrPFramesOk_COUNT | Transmission (PROVOR frames) - PT or PTC OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCompleteOnAscendingProfile_COUNT | Frames complete on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCompleteOnPark_COUNT | Frames complete on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCrcOkOnDescendingProfile_COUNT | Distinct frames received with crc ok on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCrcOkOnPark_COUNT | Distinct frames received with crc ok on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnDescendingProfile_COUNT | Distinct frames emitted on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile_COUNT | Distinct frames emitted on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnPark_COUNT | Distinct frames emitted on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesOkOnAscendingProfile_COUNT | Frames ok on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesOkOnPark_COUNT | Frames ok on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedCrcOkOnAscendingProfile_COUNT | Distinct frames received with crc ok on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedOnAscendingProfile_COUNT | Frames received on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedOnPark_COUNT | Frames received on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnAscendingProfile_COUNT | Frames recombined on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnDescendingProfile_COUNT | Frames recombined on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnPark_COUNT | Frames recombined on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_RecordsInDataset_COUNT | "The number of records in each dataset type [1-5] as transmitted - dataset 1=test data, 2=park data if profile, GPS data if test, 3=not used, 4=profile data, 5=GPS data for profile. This is currently applicable to NEMO floats only." | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile1_COUNT | Distinct optique frames emitted on ascending profile - Profile 1 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnAscendingProfile2_COUNT | Distinct optique frames emitted on ascending profile - Profile 2 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnAscendingProfile3_COUNT | Distinct optique frames emitted on ascending profile - Profile 3 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile1_COUNT | Ascending profile optique measurements - Internal counter - Profile 1 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile2_COUNT | Ascending profile optique measurements - Internal counter - Profile 2 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile3_COUNT | Ascending profile optique measurements - Internal counter - Profile 3 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_SpyFramesEmitted_COUNT | Distinct spy frames emitted | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkSamplesAbsolute_COUNT | Park measurements - Drift absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesInternal_COUNT | Park measurements - Internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesRelative_COUNT | Park measurements - Drift relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesTotal_COUNT | Park measurements - Drift total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkGapOrder_COUNT | Park float control - Gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TemporaryCycleIdentification_COUNT | Temporary - used to identify the recalculated Apex tech_cycle_data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesComplete_COUNT | Transmission (PROVOR frames) - Complete | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesCrcOk_COUNT | Transmission (PROVOR frames) - CRC OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesReceived_COUNT | Transmission (PROVOR frames) - Received | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesRecombined_COUNT | Transmission (PROVOR frames) - Recombined | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesTechnical_COUNT | Transmission (PROVOR frames) - Technical frames | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesTechnicalOk_COUNT | Transmission (PROVOR frames) - Technical OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TelemetryRetransmission_COUNT | Number of repeated transmissions of float data for each Argos message | | | | | | | -NUMBER_AscentPTMessages_COUNT | NUMBER OF ASCENT PT MESSAGES | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentPTMessages_COUNT | NUMBER OF DESCENT PT MESSAGES | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkPTMessages_COUNT | NUMBER OF DRIFT PT MESSAGES | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkDriftEntriesInParkMargin_COUNT | "drift at park pressure: number of entries in margin around park pressure target - specifically, how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db)" | | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -NUMBER_ParkDriftExitsFromParkMargin_COUNT | "drift at park pressure: number of exits from margin around park pressure target - specifically, how many times the float exits the band of pressure surrounding the target park pressure (generally +/- 30db)" | | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -NUMBER_DOXYErrorsAscending_COUNT | Number of O2_ Optode errors during profile. Zero if no sensor installed. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_RAFOSErrorsAscending_COUNT | Number of RAFOS errors during profile. Zero if no rafos module installed. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorErrorDuringProfile_COUNT | Number of moter errors during profile | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDReset_COUNT | CTD reset count | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDError_COUNT | CTD error count | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDAcquisitionsFailed_COUNT | Number of Failed CTD Acquisitions | | T | | | 5/25/2012 | 5/25/2012 | -NUMBER_MiddleSamplesDuringAscent_COUNT | ascent: number of samples in middle area | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AirPumpPulsesToInflateBladder_COUNT | number of 6-second pulses of the air pump required to inflate the air bladder | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorDeepZoneDuringAscending_COUNT | error of temperature measurements in deep zone during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorDeepZoneDuringDescending_COUNT | error of temperature measurements in deep zone during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorShallowZoneDuringAscending_COUNT | error of temperature measurements in deep shallow during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorShallowZoneDuringDescending_COUNT | error of temperature measurements in shallow zone during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileCrossCalibrationSamples_COUNT | " the number of Near Surface Temperature monitoring cross calibration samples (pumped PTS,non-pumped PT)." | | | | | 2/2/2016 | 2/2/2016 | -NUMBER_ProfileNearSurfaceTemperatureSamples_COUNT | the number of Near Surface Temperature monitoring PT samples (non-pumped PT) | | | | | 2/2/2016 | 2/2/2016 | removed | | configuration variable - do not use | | | | 1/5/2012 | 1/5/2012 | 11/1/2014 -NUMBER_SensorAnomaly_COUNT | number of anomalous sensor readings (?) | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CoherenceProblem_COUNT | SBE sensor data check used to diagnose problems | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ExceptionProgramCounter_NUMBER | "Exception Program Counter (EPC) used to store the address of theinstruction that was executing when the exception was generated." | "The new 'Emergency' Apex-APF11 float message provide a 4 bytes information called 'PC: The exception program counter'. Customers would report emergency messages to Teledyne, and from that TWR will identify the source of the problem. - -//Actual instruction addresses in the running program change for every version of code released." | T | | APEX with APF-11 | 5/24/2018 | 5/24/2018 | -DIAGNOSTICbit_CPUBatteryVoltage_bit | bit indicating the status of the CPU battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_CurrentWithMotorOut_bit | bit indicating the current with motor out | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_PressureOffsetAfterReset_bit | bit indicating the status of the pressure offset after reset | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_VacuumPressure_bit | bit indicating the status of the pressure of the vacuum | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_TimeMotorOut_bit | bit indicating the status of the time motor out | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_BatteryPumpVoltage_bit | bit indicating the status of the pump battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_ArgosTransmitterBootFailure_bit | was there an Argos transmitter boot failure | | | | | | | -DIAGNOSTICbit_ArgosTransmitterUnexpectedResponse_bit | was there an Argos transmitter unexpected response | | | | | | | -DIAGNOSTICbit_ArgosTransmitterNonresponsive_bit | is the Argos transmitter non responsive | | | | | | | -DIAGNOSTICbit_ArgosTransmitterNegativeAcknowledgeRecieved_bit | was there an Argos transmitter negative acknowledge recieved | | | | | | | -DIAGNOSTICbit_ArgosTransmitterRebootDetected_bit | was there an Argos transmitter reboot detected | | | | | | | -DIAGNOSTICbit_ArgosTransmitterPowerCycled_bit | did the Argos transmitter power cycled | | | | | | | -DIAGNOSTICbit_ArgosTransmitterIncommunicado_bit | did the Argos transmitter attempt to communicate fail | | | | | | | -DIAGNOSTICbit_ArgosTransmitterXmitFail_bit | did the Argos transmitter transmission attempt fail | | | | | | | - -FLAG_8BitProfileCounterOverflowed_LOGICAL | The 8-bit profile counter overflowed (Yes/1 or No/0_ | | | | | 1/5/2012 | 1/5/2012 | -FLAG_AirInflationSystemByPassedExcessiveEnergyConsumption_LOGICAL | Air inflation system by-passed; excessive energy consumption (Yes/1 or No/0) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_AntennaStatus_NUMBER | Flag indicating the status of the antenna (see manual) | | T | | | 7/14/2016 | 7/14/2016 | -FLAG_AscendingProfile_NUMBER | Status of profile upcast. 0=UPCAST_BUSY 1=UPCST_DONE 2=UPCAST_TIMEOUT 3=UPCAST_ICE_DETECTION | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_AscentError_NUMBER | "0=normal, 81=too shallow (grounding?) , 82=over 2100dbar, 84=sensor error" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_AscentTimeOutExpired_LOGICAL | Ascent time out expired (Yes/1 or No/0) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_BitMaskMonthsIceDetectionActive_ NUMBER | when is ice detection active - months in reverse order | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_CTDStatus_NUMBER | Flag indicating the status of the CTD (see manual) (could be reported as hex) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_CTDFastPressureError_LOGICAL | Flag for Error on CTD Fast Pressure Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDStartProfileError_LOGICAL | Flag for Error on CTD Start Profile Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDStopProfileError_LOGICAL | Flag for Error on CTD Stop Profile Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDDownloadError_LOGICAL | Flag for Error on CTD Download Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDAverageError_LOGICAL | Flag for Error on CTD Average Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_DataEntryError_LOGICAL | Data entry error (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_DataStateIndicator_LOGICAL | "Data state indicator - again, duplicated from the profile file)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_DeepProfile_LOGICAL | The current profile is a deep profile (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuNoResponse_LOGICAL | Flntu : No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuNullArgumentDetectedDuringMeasurement_LOGICAL | Flntu : Null argument detected during measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuPowerDownFailed_LOGICAL | Flntu : Power down failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuPowerUpFailed_LOGICAL | Flntu : Power up failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuResponseFailedRegexMatch_LOGICAL | Flntu : Response failed regex match (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuStatus_NUMBER | Flag indicating the status of the FLNTU (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlbbStatus_NUMBER | Flag indicating the status of the FLBB (see manual) | | T | | | 22/08/2066 | 22/08/2016 | -FLAG_FloatStatus_NUMBER | Flag indicating the status of the Float (see manual) (could be reported as hex) | | T/C | | | 1/5/2012 | 1/5/2012 | -FLAG_InitialMemoryIntegrityCheck_LOGICAL | Software check on the float memory contents (0 if problems were found and 1 if no problem occured) | Check the consistency of the default values stored in the dedicated memory | T | | | 22/08/2016 | 22/08/2016 | -FLAG_GPSStatus_LOGICAL | Flag indicating whether GPS is valid (1) or not valid (0) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Grounded_NUMBER | "grounded flag , diagnostic bit - could also be logical? Yes/no? 0/1? Or can be number of profiles during which the float grounded" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FirstGroundingCyclePhase_NUMBER | Phase of the float life or cycle when the first grounding occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_SecondGroundingCyclePhase_NUMBER | Phase of the float life or cycle when the second grounding occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_CTDErrorCyclePhase_NUMBER | Phase of the float life or cycle when the CTD error occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_Beached_NUMBER | is the float beached? - could be logical | | C | | | 5/28/2012 | 5/28/2012 | -FLAG_IceDetected_COUNT | aborted profile count - increments by one for each profile interrupted by ice detection. If units are 'bit' then represents the ice evasion record for the last 8 profiles with the latest profile in the least significant bit. | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_InvalidSequencePoint_LOGICAL | Invalid sequence point detected (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_NegativeSbeNumber_LOGICAL | Negative SBE number (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_NextPressureTimeout_LOGICAL | different from ascent timeout since it refers to a single pressure point timeout. | | | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeFailed_LOGICAL | Optode : Failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeNoResponse_LOGICAL | Optode : No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeNullArgumentDetectedDuringMeasurement_LOGICAL | Optode : Null argument detected during measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeStatus_NUMBER | Flag indicating the status of the Optode (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OxygenSensorState_LOGICAL | "Oxygen Sensor State - 1=on, 0=off" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PistonFullyExtendedBeforeSurfaceDetectionAlgorithmTerminated_LOGICAL | Piston fully extended before surface detection algorithm terminated (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PistonMotorRunning_LOGICAL | Piston motor running (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PressureActivationTestMessage_LOGICAL | Current argos message is a pressure-activation test message (Yes or No) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_InitialCheckError_LOGICAL | "Auto-test is performed at the beginning of the mission: Flag 0 = Problem, 1 = OK)" | or detailed auto-test for float hardware resulting in a detailed code for each tested sub-part (see manual) | | | | 4/30/2015 | 4/30/2015 | -FLAG_PressureReachedZero_LOGICAL | Pressure reached zero (Yes or No) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileInProgress_LOGICAL | Profile in progress (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTermination_hex | Flag indicating the status of the profile termination (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTerminationFlag#1_byte | see description in manufacturer's manual | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTerminationFlag#2_byte | see description in manufacturer's manual | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RemoteControlMessageKO_COUNT | number of received messages which have been rejected by the float | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RemoteControlMessageOK_COUNT | number of messages sent by the remote control and received by the iridium float | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RTCStatus_LOGICAL | "real time clock status - 1= OK, 0=not OK" | | T | | | 1/5/2012 | 9/29/2013 | -FLAG_TelonicsPTTStatus_byte | Implemented a status byte for the Telonics ST21 PTT to facilitate diagnostics. This byte records the state of 8 status bits for the Telonics PTT | | T | | APEX- NAVO | 4/17/2014 | 4/17/2014 | -FLAG_SatlanticStatus_NUMBER | Flag indicating the status of the Satlantic optical sensor | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingPPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the P pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePNonpedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the P nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePTSNonPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the PTS nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePTSPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the PTS pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41NullArgumentDetectedDuringPMeasurement_LOGICAL | Sbe41 : Null argument detected during P measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PExeption_LOGICAL | Sbe41 : P exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PNoResponse_LOGICAL | Sbe41 : P No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTException_LOGICAL | Sbe41 : PT exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTSException_LOGICAL | Sbe41 : PTS exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTSNoResponse_LOGICAL | Sbe41 : PTS No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PUnreliable_LOGICAL | Sbe41 : P unreliable (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPMeasurementFailedTheNonpedanticRegex_LOGICAL | Sbe41 : Response to P measurement failed the nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPMeasurementFailedThePedanticRegex_LOGICAL | Sbe41 : Response to P measurement failed the pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPTSMeasurementFailedTheNonpedanticRegex_LOGICAL | Sbe41 : Response to PTS measurement failed the nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPTSMmeasurementFailedThePedanticRegex_LOGICAL | Sbe41 : Response to PTS measurement failed the pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_SBE43NullArgumentDetectedDuringPTSMeasurement_LOGICAL | SBE43 : Null argument detected during PTS measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_SeabirdStringLengthError_LOGICAL | Seabird string length error (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ShallowWaterTrapDetected_LOGICAL | Shallow water trap detected (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusBladderStateAtLaunch_NUMBER | "External bladder state at deployment (0: float stay at surface, 1: heavy float at deployment)" | | | | | 4/30/2015 | 4/30/2015 | -FLAG_StartDescentToProfile_NUMBER | "Status of the start date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusEndAscentToSurface_NUMBER | "Status of the end date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusEndDescentToProfile_NUMBER | "Status of the end date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusHistoryQCFailed_hex | Flag History Failed (from profile file) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusHistoryQCPerformed_hex | Flag History performed (from profile file) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusStartAscentToSurface_NUMBER | "Status of the start date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusStartTransmission_NUMBER | "Status of the start date-time of transmission (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_System_NUMBER | | | | | | 1/5/2012 | 1/5/2012 | -FLAG_SystemAtDepth_hex | System flags at depth - SEE MANUAL | | | | | 1/5/2012 | 1/5/2012 | -FLAG_SystemAtSurface_hex | System flags at surface - SEE MANUAL | | | | | 1/5/2012 | 1/5/2012 | -FLAG_TimerDone_LOGICAL | Timer done (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_UpDown_LOGICAL | Flag indicating whether the float is in 'Up time' (0) or 'Down time' (1) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_WakeUpByWatchDogAlarm_LOGICAL | Wake-up by watchdog alarm (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ArgosTransmitterExceptionStatus_bit | has an Argos transmitter exception been detected | | | | | | | -REFERENCE_BlueFlntuParkEnd_COUNT | "Flntu BlueReference at end of park, before descent to profile depth" | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_BlueFlntuSurface_COUNT | Flntu BlueReference at surface | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_NTUParkEnd_COUNT | "Flntu NTU Reference at end of park, before descent to profile depth" | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_NTUSurface_COUNT | Flntu NTU Reference at surface | | T | | | 1/5/2012 | 1/5/2012 | - -POSITION_PistonNow_COUNT | | | | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonPark_COUNT | piston position at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonParkEnd_COUNT | piston position at end of park period before descent to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonParkStart_COUNT | plunger position at parking start | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonProfile_COUNT | piston position at maximum profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonStorage_COUNT | | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonSurface_COUNT | "Piston position, recorded as the instrument reaches the surface" | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonSurfaceAddedBuoyancy_COUNT | "Piston position, recorded AFTER the instrument reaches the surface and the bladder has been fully pumped to increase buoyancy" | | T | | | 1/5/2012 | 9/26/2012 | -POSITION_PistonTarget_NUMBER | is this the same as one of the CONFIG_PISTON variables? | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonPosition1_COUNT | Apex ascent profile piston position 1 | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonMax_COUNT | reported maximum piston position | | T | | | 1/5/2012 | 1/5/2012 | - -PRES_TimeOutGPS_dbar | Pressure when GPS acquisition times out | | | | NINJA_D | | | -PRES_TimeOutIridium_dbar | Pressure when iridium communications time out | | | | NINJA_D | | | -PRES_1HourIntoDescentToProfile_dbar | pressure taken 1 hour after the beginning of descent | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | T | | | 1/5/2012 | 1/5/2012 | -PRES_2HoursIntoDescentToProfile_dbar | pressure taken 2 hours after the beginning of descent | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | T | | | 1/5/2012 | 1/5/2012 | -PRES_HoursIntoDesentToProfile_dbar | (add more of these as required to complete the sequence as reported by the float) | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | | | | 1/5/2012 | 1/5/2012 | -PRES_MaxDifferencePvsPTorPTSSamples_dbar | "The maximum (in absolute value) divergence between pressures from closely-spaced (ie., a few seconds apart in time) P-only sample requests and PT or PTS sample requests. The divergence is measured as the P-only sample minus the pressure from the PTS (or PT) sample." | | | | | 10/20/2015 | 10/20/2015 | -PRES_AscendingProfileReductionBottomSlicesThickness_dbar | Ascending profile reduction Deep zone slices thickness - ETF | PRES_AscendingProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionETF_dbar | Ascending profile reduction - ETF | PRES_AscendingProfileReductionETF_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionETS_dbar | Ascending profile reduction - ETS | PRES_AscendingProfileReductionETS_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionSeparation_dbar | Ascending profile reduction Surface / bottom pressure threshold - PRSEP | PRES_AscendingProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionSurfaceSlicesThickness_dbar | Ascending profile reduction surface slices thickness - ETS | PRES_AscendingProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionBottomSlicesThickness_dbar | CTD profile reduction Deep zone slices thickness - ETF | PRES_CTDProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionSeparation_dbar | CTD profile reduction Shallow / deep pressure threshold - PRSEP | PRES_CTDProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionSurfaceSlicesThickness_dbar | CTD profile reduction Shallow zone slices thickness - ETS | PRES_CTDProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionBottomSlicesThickness_dbar | Descending profile reduction Deep zone slices thickness - ETF | PRES_DescendingProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionSeparation_dbar | Descending profile reduction Shallow / deep pressure threshold - PRSEP | PRES_DescendingProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionSurfaceSlicesThickness_dbar | Descending profile reduction surface slices thickness - ETS | PRES_DescendingProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescentStartAfterReset_dbar | Pressure after pressure reset just prior to descent (IDG VAR=PFS) | | T | | | 1/5/2012 | 1/5/2012 | - -PRES_DOXYProfileReductionBottomSlicesThickness_dbar | DOXY profile reduction Deep zone slices thickness - ETF | PRES_DOXYProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DOXYProfileReductionSeparation_dbar | DOXY profile reduction Shallow / deep pressure threshold - Surface / bottom pressure thresholdPRSEP | PRES_DOXYProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DOXYProfileReductionSurfaceSlicesThickness_dbar | DOXY profile reduction Number of slices in shallow zone - ETS | PRES_DOXYProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_ForFLNTUSurface_dbar | pressure used for Flntu at surface | | | | | 1/5/2012 | 1/5/2012 | -PRES_ForOptodeSurface_dbar | pressure used for Optode at surface | | | | | 1/5/2012 | 1/5/2012 | - -PRES_MaximumDepthBinWithValidData_dbar | Maximum depth bin with valid data according to the float | | | | | 1/5/2012 | 1/5/2012 | -PRES_ExceededMaximumProfileDepth_dbar | The pressure where the float exceeds its maximum profile depth. | | | | | | | - -PRES_MiddleDeepBoundaryAscent_dbar | boundary pressure between middle/deep areas at ascent - IS THIS A CONFIGURATION VARIABLE?? | | | | | 1/5/2012 | 1/5/2012 | -PRES_MinimumDepthBinWithValidData_dbar | Minimum depth bin with valid data according to the float | | | | | 1/5/2012 | 1/5/2012 | - -PRES_MinimumDuringMaximumBuoyancy_dbar | the shallowest presssure reached by a float when buoyancy is at maximum but it cannot reach the surface. | | | | NINJA_D | 2/10/2014 | 2/10/2014 | -PRES_Now_dbar | test message data reporting pressure at the surface during drift - cycle 0 | | T | | | 1/5/2012 | 1/5/2012 | -PRES_PlusFourseconds_dbar | PRES measured 4 seconds after PRES_AscentStart_dbar | "NOTE - this can also be placed into the traj files with MC-10 depending on the timing event (Often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. " | | | | 40913 | 40913 | -PRES_PlusTwoseconds_dbar | PRES measured 2 seconds after PRES_AscentStart_dbar | "NOTE - this can also be placed into the traj files with MC -10 depending on the timing event (often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. " | | | | 1/5/2012 | 1/5/2012 | -PRES_Settling0_dbar | needs valid definitions | | T | | | 1/5/2012 | 1/5/2012 | -PRES_Settling1_dbar | needs valid definitions | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowDeepBoundaryAscent_dbar | boundary pressure between shallow/deep areas at ascent | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowDeepBoundaryDescent_dbar | boundary pressure between shallow/deep areas at descent | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowestInProfile_dbar | shallowest profile point | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowMiddleBoundaryAscent_dbar | boundary pressure between shallow/middle areas at ascent - IS THIS A CONFIGURATION VARIABLE?? | | | | | 1/5/2012 | 1/5/2012 | -PRES_AscentTimeOutExpired_dbar | Pressure when ascending time out | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_DescentTimeOutExpired_dbar | Pressure when descending time out | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_DescentTimeOutExpiredAfterFailedAscent_dbar | Maximum pressure when descent times out after a previous failed ascent (from ice avoidancy or buoyancy issues). | | | | NINJA_D | 2/10/2014 | 2/10/2014 | -PRES_IceAvoidance_dbar | Pressure when float avoids ice | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_SurfaceComplement_dbar | Surface pressure complement | | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionBottomSlicesThickness_dbar | TUR3 profile reduction Deep zone slices thickness - ETF | PRES_TUR3ProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionSeparation_dbar | TUR3 profile reduction Surface / bottom pressure threshold - PRSEP | PRES_TUR3ProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionSurfaceSlicesThickness_dbar | TUR3 profile reduction Number of slices in shallow zone - ETS | PRES_TUR3ProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_ChangeInFirstSeek_COUNT | Pressure Change during first seek at the park depth (IDG Var=PSK) | | T | | | 1/5/2012 | 9/26/2012 | -PRES_WhenInWaterSensed_dbar | "From p,t,s when in water sensed " | | | | | 1/5/2012 | 1/5/2012 | -TEMP_WhenInWaterSensed_degC | "From p,t,s when in water sensed " | | T | | | 1/5/2012 | 1/5/2012 | -PSAL_WhenInWaterSensed_psu | "From p,t,s when in water sensed " | | | | | 1/5/2012 | 1/5/2012 | - -PRESSURE_AirBladder_COUNT | measured in COUNT - approx 148 COUNT | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_BladderNow_dbar | current pressure of the air bladder 'now' (when is 'now'?). | | | | | 1/5/2012 | 1/5/2012 | -PRES_DuringMaxBuoyancyAndGPSAcquisition_dbar | Pressure when buoyancy is max during getting GPS | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_During MaximumBuoyancyAndIridiumTransmission_dbar | Pressure when buoyancy is max during sending messages | | | | NINJA_D | 5/19/2014 | 5/19/2014 | - -PRESSURE_InternalVacuum_mbar | units might be (mbar) or (COUNT) or (inHg) | | | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAirBladderEmpty_inHg | Internal Vacuum when air (sleeve) bladder is empty (IDG Var=VACb) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAirBladderFull_inHg | Internal Vacuum when air (sleeve) bladder is full (IDG Var=VACa) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumDuringDescent50dbar_inHg | Internal Vacuum at 50dbar as float is sinking towards drift depth. | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumOilBladderEmpty_inHg | Internal vacuum when all oil is inside pressure case | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumOilBladderFull_inHg | Internal vacuum when all oil isinside the oil bladder | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumAtEndSurface_inHg | Air pressure inside of SOLO at end of surface time (IDG Var=ATE) ! | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtLaunch_inHg | Internal vacuum when float launched | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtStartSurface_inHg | Air pressure inside of SOLO at start of surface time (IDG Var=ATS) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtSurface_mbar | Surface internal pressure | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumBeforeFill_inHg | SAME AS SOMETHING ELSE? | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumDuringPark_inHg | Park vacuum | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumEndXmit_inHg | internal pressure at the end of the transmission period | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumParkEnd_inHg | Internal Vacuum at end of park. before descent to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumProfileStart_mbar | Internal tube pressure [mbar] in profile depth | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumRange_mbar | "the range of internal vacuum reported by the float - e.g., ""<=725"" or ""726-750""" | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumAtSurface_degC | internal tube temperature at the surface | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumAirBladderFull_degC | internal tube temperature at surface after airbladder fill | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumProfileStart_degC | internal tube temperature at the profile depth | | T | | | 1/5/2012 | 1/5/2012 | - -STATUS_LimitSwitch_hex | | | | | | 1/5/2012 | 1/5/2012 | -STATUS_MiscellaneousOperations_hex | | | T | | | 1/5/2012 | 1/5/2012 | -STATUS_LimitSwitchINAtSurfaceStartXmit_NUMBER | "Binary reporting of piston position (1=IN, 0=OUT) IDG VAR=LIMsw....not same LIMsw as in Cy0" | | T | | | 1/5/2012 | 1/5/2012 | -STATUS_LimitSwitchOUTAtStartAscent_NUMBER | "Binary reporting of piston position (0=IN, 1=OUT) (IDG VAR=LIMsw)...not same LIMsw as in Cy0" | | | | | 1/5/2012 | 1/5/2012 | -TIME_AirPumpOn_seconds | Air pump on time | | T | | | 1/5/2012 | 1/5/2012 | -TIME_AirPumpOnIntegrated_seconds | Air pumped integrated | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Ascent1900DB_seconds | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Ascent2000DB_seconds | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_BuoyancyPumpOn_seconds | are the units right? | | T | | | 1/5/2012 | 1/5/2012 | -TIME_BuoyancyReductionActionAtSurface_seconds | the time the pump or valve ran at the surface to initiate descent | | | | | | | -TIME_ClockDrift_dsec/day | MOVED from CONFIG to TIME | | T | | | 1/5/2012 | 1/5/2012 | - -TIME_DescentTo50Decibars_seconds | IDG Var=FallT | | | | | 1/5/2012 | 1/5/2012 | -TIME_DescentToPark_hours | metadata? Measured and reported? OR CONFIGURATION INFORMATION? | | T | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringAscent_seconds | DOXY ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringDescent_seconds | DOXY descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringPark_hours | DOXY drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -TIME_FromBladdersEmptyToStartOfMission_seconds | TIME FROM START TO END FIRST PROFILE | | | | | 1/5/2012 | 1/5/2012 | -TIME_FromStartOfMissionToEndFirstProfile_seconds | TIME FROM BLADDERS EMPTY TO START | | T | | | 1/5/2012 | 1/5/2012 | -TIME_GroundingRelativeToCycleBeginning_hours | Gounding day relative to cycle beginning | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceLastIridiumGPSFix_DD | Days since the last GPS fix/Hours since the Last GPS Fix (HH) | | T | | | 5/25/2012 | 5/25/2012 | -TIME_IridiumGPSFix_seconds | the number of seconds required to obtain a GPS fix for a profile | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PreviousIridiumSession_seconds | duration of the previous iridium session | | | | | | | -TIME_TransmissionLastHousekeepingMessage_seconds | time required to transmit the last housekeeping message | | | | | 5/25/2012 | 5/25/2012 | - -TIME_MotorDriveDuringDescent_minutes | | | T | | | 5/29/2012 | 5/29/2012 | -TIME_MotorDriveDuringAscent_minutes | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_OptiqueSampleFrequencyDuringDescent_seconds | Optique descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_OptiqueSampleFrequencyDuringPark_hours | Optique drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -TIME_PistonRanDuringDescentFrom100db_seconds | seconds that piston ran to descend from approximately 100db (IDG Var= TIP) | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PistonRanDuringFirstSeek_seconds | seconds that piston ran during first seek (park depth) IDG Var=TSK | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PumpActionsAtSurface_seconds | duration of pump actions at the surface | | | | | 1/5/2012 | 1/5/2012 | -TIME_PumpActionsAdditionalAtSurfaceForGPSAcquisition_seconds | duration of additional pump actions at the surface performed during GPS acquisition in case of insufficient buoyancy | | T | | | 7/14/2016 | 7/14/2016 | -TIME_PumpActionsAtDepth_seconds | total duration of pump actions at depth | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpActionsInOutAtDepth_COUNT | total duration of pump actions (in and out both reported) at depth | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpActionsInOutAtSurface_COUNT | total duration of pump actions (in and out both reported) at the surface | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpMotor_seconds | units could be COUNT or seconds - Pump motor time=COUNT multiplied by 2 for seconds | | T | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringAscent_seconds | CTD ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringDescent_seconds | CTD descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringPark_seconds | "sampling period during park was: TIME_SamplePeriodPark_hours" | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Settling0_seconds | | | | | | 1/5/2012 | 1/5/2012 | -TIME_Settling1_seconds | | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceAscentEnd_HHMMSS | (units variable) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceStartUp_seconds | time since startup before deployment | | | | | 1/5/2012 | 1/5/2012 | -TIME_TelemetryPhaseInitiationTimeRelativeEPOCH_minutes | time of telemetry phase initiation in mintes relative to EPOCH - this includes the ascent from profiling depth. | | T | | | 1/5/2012 | 1/5/2012 | -TIME_ToAscend_seconds | time taken to reach the surface | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Transmission_minutes | Transmission time in minutes | | T | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringAscent_seconds | TUR3 ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringDescent_seconds | TUR3 descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringPark_hours | TUR3 drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -VOLUME_OilVolumeTransferredAtSurfaceDuringDescent_cm^3 | Oil volume transferred from the external bladder during the descent to park (between the surface and the second threshold of the buoyancy reduction phase). This is the oil volume tranferred during the NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT valve actions (Id 126). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringDescentToPark_cm^3 | Oil volume transferred from the external bladder during the descent to park (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions (Id 124). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredToAscentWhenGrounded_cm^3 | "Oil volume, transferred to the external bladder, needed to leave the sea bottom when grounded. " | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringDescentToProfile_cm^3 | Oil volume transferred from the external bladder during the descent to start profile pressure. This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToProfile_COUNT valve actions (Id 125). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringAscentToSurface_cm^3 | Oil volume transferred to the external bladder during the ascent to surface This is the oil volume tranferred during the NUMBER_PumpActionsDuringAscentToSurface_COUNT pump actions (Id 116). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | - -CURRENT_BatteryAirPumpOn_mA | Battery Current during inflation of sleeve bladder | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryAvgPumpOnStartAscent_mA | Average pump motor current taken at start of ascent | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlntu_mA | battery current measured when Flntu sampled at unspecified time in profile | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlntuParkEnd_mA | battery current measured when Flntu sampled at end of park | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlbbParkEnd_mA | battery current measured when Flbb sampled at end of park | | T | | | 22/08/2016 | 22/08/2016 | -CURRENT_BatteryOptics_COUNTS | battery current while the optial sensor is on | | T | | | 5/29/2012 | 5/29/2012 | -CURRENT_Battery_mA | battery current measured by the sensors themselves. | | | | | 3/28/2014 | 3/28/2014 | -CURRENT_BatteryInitialAtProfileDepth_mA | Battery Current measured at bottom (park or pressure) at initial pump extension completion | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryMaxPumpOnStartAscent_mA | Maximum pump motor current taken at start of ascent | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryNoLoad_mA | same as: CURRENT_BATTERY_PARK_NOLOAD_mA? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPark_mA | measured during park-park phase and is averaged | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkEnd_mA | "battery current measured at end of park, before descent to profile depth" | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkNoLoad_mA | "Battery Current measured at park pressure with no load, Same as BOTTOM battery current (older floats)" | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkNoLoad_volts | same as: CURRENT_BATTERY_PARK_NOLOAD_mA? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPistonPumpOn_mA | Battery Current during pumping to ascend | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPumpOn_mA | Battery Current buoyancy pump on | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySampledbyFlntu_mA | Flntu sampled battery current | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySampledbySBE_mA | Sbe sampled battery current - same as CURRENT_BatterySBEPump_mA???? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySBEParkEnd_mA | battery current measured when the SBE41 sampled at the end of park | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySBEPump_mA | battery current when CTD active | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySurfaceAirPumpOn_mA | Battery Current measured at the surface with the air pump running (6 seconds) | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPumpLastValueAsAscends_mA | Current measured in the last portion of pumping as the float ascends | | T | | | 5/25/2012 | 5/25/2012 | -CURRENT_MotorAtEndOfAscent_mA | Motor current measured at the end of the ascent phase (pump motor?) | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_MotorOutToAscent_mA | Motor current measured during the ? ascent phase (pump motor?) | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_MotorStartProfile_amps | Motor current in profile depth | | | | | 1/5/2012 | 1/5/2012 | - -VOLTAGE_Aux_volts | auxiliary voltage (formerly VOLTAGE_OF_AUX(volts)) | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery_volts | battery voltage when battery capacity is unknown | | | | | | | -VOLTAGE_Battery6V_volts | battery voltage of 6v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery7V_volts | battery voltage of 7v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery12V_volts | battery voltage of 12V system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery14V_volts | battery voltage of 14v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery18V_volts | battery voltage of 18v system | | T | | | 5/25/2012 | 5/25/2012 | -VOLTAGE_BatteryCPU_volts | "CPU Voltage LSB=0.1 Volts, requires a full description " | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery14VStartDescentToPark_volts | battery voltage of 14V system when float starts descending to park | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery14VStartAscentToSurface_volts | battery voltage of 14V system when float starts ascending to surface | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery7VStartDescentToPark_volts | battery voltage of 7V system when float starts descending to park | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery7VStartAscentToSurface_volts | battery voltage of 7V system when float starts ascending to surface | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_BatteryCPUStartProfile_volts | CPU battery voltage at profile depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUStartXmit_volts | "CPU Battery @ start oftransmission after data has been processed LSB=0.1 volts, IDG Var= Vcpu" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUSurface_volts | Surface CPU battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUDepth_volts | CPU battery voltage at (unspecified) depth | | T | | | 5/25/2012 | 5/25/2012 | -VOLTAGE_BatteryDescentToProfile_volts | | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryExternalStartProfile_volts | voltage of the external battery at the profile depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryFlntuParkEnd_volts | battery voltage measured by Flntu at end of park | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryFlbbParkEnd_volts | battery voltage measured by Flbb at end of park | | T | | | 22/08/2016 | 22/08/2016 | -VOLTAGE_BatteryFltnu_volts | Flntu sampled battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryOptics_volts | battery voltage of the optical sensor. | | | | | | | -VOLTAGE_Battery_volts | battery voltage measured by the individual sensors | | | | | 3/28/2014 | 3/28/2014 | -VOLTAGE_BatteryInitialAtProfileDepth_volts | measured at initial pump extension completion | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryNoLoad_volts | battery voltage measured with no load | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryParkEnd_volts | battery voltage measured at end of park with no load | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryParkNoLoad_volts | battery voltage during inactive park phase - SAME AS BOTTOM BATTERY VOLTAGE FOR OLDER FLOATS | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPistonPumpOn_volts | buoyancy pump voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryProfileNoLoad_volts | battery voltage jus before profile begins - no load on the batteries | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpAscentEnd_volts | "Pump Battery at end of ascent Voltage LSB=0.1 Volts, - also a diagnostic message " | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpLastValueAsAscends_volts | "pump battery voltage, on last reading as ascending (IDG Var=Vpmp)" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpOn_volts | Pump Battery Voltage LSB=0.1 Volts | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpStartProfile_volts | Pump battery voltage (volts) at depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEAscent_volts | Voltage measured when ctd switched on sampling during profile ascend phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEParkEnd_volts | battery voltage measured when the SBE41 sampled after the end of park phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEPump_volts | battery voltage when CTD active | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySurfaceAirPumpOn_volts | Voltage measured when AIR PUMP is switched on at the surface for extra buoyancy | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySurfaceNoLoad_volts | battery voltage during inactive surface phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGEDROP_BatteryStartProfile_volts | "battery voltage drop, pump on at max pressure, starting profile(tenths of volts)" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGETIME_IntegratedAirPumpVolume_voltseconds | integrated measure (volts * seconds) of the pumped air volume (VSAP of Apex floats) | Changed units from volt+B640seconds to voltseconds | T | | | 1/5/2012 | 2/18/2015 | -VOLTAGE_AcrossInsulation_mV | Insulation voltage measured between 2 sub-parts of the float. | | | | | 2/16/2016 | 2/16/2016 | -SPEED_FirstGrounding_mm/s | Vertical speed during the first grounding | | | | | 10/9/2014 | 10/9/2014 | - -//BIO-Argo names: | | " can be: CTD, OPTODE, OCR, ECO3, FLNTU, CROVER, SUNA or any other BIO-Argo sensor defined." | | | | | | - -CURRENT_SUNAAPFSupply_mA | SUNA APF Frame Supply Current | | T | | | 9/26/2013 | 9/26/2013 | -FLAG_Status_LOGICAL | "Sensor status - 1= OK, 0=not OK" | | T | | | 9/26/2013 | 9/29/2013 | - -FLAG_SensorBoardStatus_NUMBER | Flag reporting the status of the sensor board. | | | | | 9/26/2013 | 9/29/2013 | - -NUMBER_AscentIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_AscentSamplesDepthZone_COUNT | Number of samples acquired by in the depth zone # during the ascent from the profile depth to the surface. Depth zone number: = 1..5 | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_DescentIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_DescentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_DescentSamplesDepthZone_COUNT | Number of samples acquired by in the depth zone # during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Depth zone number: = 1..5 | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscentSamples_COUNT | "Number of samples acquired by during the ""ascent to surface"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_InAirSamples_COUNT | "Number of samples acquired by during the ""surface"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_DescentToParkSamples_COUNT | "Number of samples acquired by during the ""surface to parking depth"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_DescentToProfileSamples_COUNT | "Number of samples acquired by during the ""parking depth to profile depth"" phase." | | | | CTS5 | 12.10.202 | 10/12/2020 | -NUMBER_ParkIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the drift at park depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ParkIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the drift at park depth. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_ProfileDriftIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the drift at profile depth. (Drift is added to the name because otehrwise it appears to be ascent data) | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ParkSamples_COUNT | Number of samples acquired by during the drift at parking depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ProfileDriftSamples_COUNT | Number of samples acquired by during the drift at profile depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscendingCTDSamplesInternalCounter_COUNT | total number of slices of the ascending profile after reduction | | NUMBER_AscendingCTDSamplesDepthInternalCounter_COUNT | Ascending profile ctd measurements - Depth internal counter | | 9/26/2013 | 9/29/2013 | -NUMBER_DescendingCTDSamplesInternalCounter_COUNT | total number of slices of the descending profile after reduction | | NUMBER_DescendingCTDSamplesDepthInternalCounter_COUNT | Descending profile cdt measurements - Depth internal counter | | 9/26/2013 | 9/29/2013 | -NUMBER_PumpActionsDuringProfileDrift_COUNT | Number of pump actions during drift at profile depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_PumpActionsToLeaveReleasingSystem_COUNT | Number of pump actions needed to leave the releasing system (float deployed in ASFAR (Autonomous System for Argo float Release) mode) | | | | | 10/18/2015 | 10/18/2015 | -NUMBER_SBEFPCommandTimeouts_COUNT | "Number of timeouts while measuring pressure with the SBE sensor using a ""Fast Pressure"" command." | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_VectorToSensorBoardsDialogErrors_COUNT | Number of dialog errors between vector and sensor boards. | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFErrorCounter_COUNT | "Incremented each time an error is encountered.The APF interface provides a mechanism to access error messages.If the error counter increases between frames, the operator or control system can retrieve the accumulated error message(s)." | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFPowerCycleCounter_COUNT | Incremented each time power is applied to SUNA (it can be used to notice if the SUNA was powered unintentionally between data collection events). | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFSampleCounter_COUNT | "Incremented for each sample the SUNA measures (it can be used to track frames, and recognize if frames were missed)." | | | | | 12/17/2013 | 12/17/2013 | -VOLTAGE_SUNAAPFSupplyVoltage_volts | "Voltage [V] measured inside SUNA via ADC.The voltage available to the SUNA just outside its power regulators.SUNA can operate on 6 to 18 VDC. This voltage allows the operator to monitor supply voltage, and in the case of a drop to makedecisions on the continued operation of the SUNA." | | | | | 12/17/2013 | 12/17/2013 | -CURRENT_SUNAAPFSupplyCurrent_mA | "Current [mA] measured inside SUNA via ADC.The current can be monitored to ascertain that all components are operating. A sudden drop or increase would indicate the failure of a system component." | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_OptodeSensorReset_COUNT | Number of power resets of the DO sensor | | | | | 5/10/2016 | 5/10/2016 | -NUMBER_OptodeAcquisitionsFailed_COUNT | Number of failed acquisitions of the DO sensor | | | | | 5/10/2016 | 5/10/2016 | -NUMBER_SubCycle_NUMBER | | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_InternalCycle_NUMBER | | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SubCyclesDoneSinceDeployment_COUNT | | | | | | 1/1/2014 | 1/1/2014 | -/////added so we don't have to allow missing ///// -NUMBER_AscentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_DescentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_ParkIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the drift at park depth. | | | | | 10/14/2014 | 10/14/2014 | - -NUMBER_PumpActionsDuringPark1_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark1_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark1_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark1Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark1Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark1_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark2_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark2_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark2_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark2Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark2Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark2_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark3_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark3_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark3_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark3Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark3Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark3_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark4_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark4_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark4_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark4Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark4Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark4_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark5_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark5_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark5_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark5Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark5Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark5_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 diff --git a/file_checker_spec/argo-tech_names-spec-v3.1 b/file_checker_spec/argo-tech_names-spec-v3.1 deleted file mode 100644 index 2a828ce..0000000 --- a/file_checker_spec/argo-tech_names-spec-v3.1 +++ /dev/null @@ -1,674 +0,0 @@ -//parameter code | description | comment | transmitted/calculated | parameter type | float type | creation date | update date | obsolete date -//"Non-technical data (statistics, QC and diagnostic data)" | | | | | | | | -FLAG_GreyListPSAL_LOGICAL | "Y=yes, N=no (or field is absent)" | | | | | | | -FLAG_GreyListTEMP_LOGICAL | "Y=yes, N=no (or field is absent)" | | | | | | | -FLAG_SpeedMaximumCheck_NUMBER | needs valid definitions | | | | | | | -TEMP_MixedLayerMedian_degC | median of the mixed layer samples taken | | | | | 1/15/2013 | 1/15/2013 | -TEMP_MixedLayerInfimum_degC | infimum of the mixed-layer median temperature since the last successful telemetry | | | | | 1/15/2013 | 1/15/2013 | -CURRENT_MotorMeanOfProfile_amps | Mean of motor current during upcast | | T | | | | | -BACKSCATTERING_MeanBeforeAscent_m^-1/sr | Bio parameter statistic | | | | | | 1/5/2012 | -CDOM_MeanBeforeAscent_ppb | Bio parameter statistic | | | | | | 1/5/2012 | -CHLT_MeanBeforeAscent_mg/m^3 | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W1_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W2_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | -IRRADIANCE_W3_MeanBeforeAscent_uW/cm^2/nm | Bio parameter statistic | | | | | | 1/5/2012 | - -//Surface Pressure Offset variable names - note that this table is also appended to the Argo User's manual as table ?? | | | | | | | | - -PRES_SurfaceOffsetTruncatedPlus5dbar_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, negative offsets truncated to 0, 5dbar addedNot autocorrected" | "Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | "R1-SBE, APEX-SBE, all APEX up to APEX APF8s" | | 5/29/2012 | -PRES_SurfaceOffsetTruncatedPlus3dbar_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset, negative offsets truncated to 0, 3dbar addedNot autocorrected" | "Subtract 3 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | R1-SBE | | 5/29/2012 | -PRES_SurfaceOffsetTruncated_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, negative offsets truncated to 0Not autocorrected" | " In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile. NOTE - unlike the previous name, it DOES NOT have 5db added and so this does not need to be removed before use." | T | | 2 ALACE R1 FSI floats | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncated_dbar | "Surface pressure recorded just before the previous descent - Note: cumulative offset, This IS NOT used to correct pressure on boardNot autocorrected" | "In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | "APEX APF9, pre 2002 SOLO-SIO, Metocean PROVOR, NEMO (SN>=90), PALACE " | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncated_approx5dbarResolution_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset, This IS NOT used to correct pressure on board. Also note that the resolution varies because counts are repoted and converted using different calibration coefficients for each floatNot autocorrected" | | T | | APEX APF1 | | 1/5/2012 | -PRES_SurfaceOffsetNotTruncatedPlus5dbar_dbar | "Surface pressure recorded just before the previous descent - Note: this is a cumulative offset with 5dbar added.Not autocorrected" | "Subtract 5 db. In real-time, subtract the cumulative offset from the reported pressures of the present profile. In DMQC, apply this value to the reported pressures of the PREVIOUS profile." | T | | APEX APF-8 after firmware update 14-12-07 | | 5/29/2012 | -PRES_SurfaceOffsetCorrectedNotReset_1dbarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative offset but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "Provor T,CTF2, CTF3, and CTS2, JAMSTEC's MetOcean PROVOR " | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotReset_1cBarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative offset but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "JAMSTEC's PROVOR-CTS3, NINJA (2003) and MetOcean PROVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1dbarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "PROVOR CTS3, PROVOR-DO and ARVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1cBarResolution_dbar | "Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required.Autocorrected" | Cumulative offset but the data is autocorrected so no adjustment in either RT or DM typically required | T | | "PROVOR CTS3, PROVOR-DO and ARVOR" | | 1/5/2012 | -PRES_SurfaceOffsetCorrectedNotResetNegative_1mBarResolution_dbar | Surface pressure recorded just before the previous descent but data is corrected on board the float. Note: cumulative NEGATIVE offset (real offset * -1) but no further correction required. Autocorrected | The CTS5 provides the Poffset with a 1 mBar resolution. | T | | PROVOR CTS5 | 2/1/2016 | | -PRES_SurfaceOffsetBeforeReset_dbar | Surface pressure measurement which is then used to correct pressure on board the float. Note: thus is a relative offset and no further correction is required. | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeResetTruncated_dbar | "Surface pressure measurement which is then used to correct pressure on board the float. Note: this is a CUMULATIVE offset and no further correction is required. Negative offsets truncated to 0.Autocorrected" | "Autocorrecting so no adjustment in either RT or DM typically required. NOTE: if the SPO is >40 for the Argo CTD, then the autocorrection is PARTIALLY applied (40 is subtracted, leaving the 'excess' offset uncorrected) and the pressures may need to be adjusted in RT and DM." | T | | NEMO(SN<80) | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_dbar | "Surface pressure measured after pressure has been corrected on board the float. This is a relative measurement and no further correction is required. Autocorrected" | "Autocorrecting so no adjustment in either RT or DM typically required. This value used as a check on the autocorrecting of pressure onboard the float. Significant values may indicate a need for additional correction" | T | | SOLO-SIO (secondary name used in conjunction with PRES_SurfaceOffsetBeforeReset_dbar ) | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_1dBarResolution_dbar | "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile. Note: this is a relative offset and no further correction is possible.Autocorrected" | Autocorrecting so no adjustment in either RT or DM possible | T | | "French PROVOR-CTS3, PROVOR-DO, ARVOR - may be used for other floats as well." | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_1cBarResolution_dbar | "Surface pressure measured just before the float dives which is then used to correct pressure on board the float for the next profile. Note: this is a relative offset.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required but this could be applied in DMQC. | T | | "French PROVOR-CTS3, PROVOR-DO, ARVOR, SOLO-WHOI, SOLO-SIO - may be used for other floats as well." | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_1cBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_5cBarResolution_dbar | "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.5db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetAfterReset_5cBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.5db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required | T | | SOLO-SIO | | 1/5/2012 | -PRES_SurfaceOffsetBeforeReset_2mBarResolution_dbar | "Surface pressure offset measurement which is then used to correct pressure on board the float. Used for SOLO-SIO floats that transmit surface pressure before reset with 0.04db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required (changed from 4 to 2mBar resolution as per Gilson request) | T | | SOLO II-SIO | | 1/6/2013 | -PRES_SurfaceOffsetAfterReset_2mBarResolution_dbar | "Surface pressure offset measured after the pressure correction has been applied. Used for SOLO-SIO floats that transmit surface pressure after reset with 0.04db resolution - may be used for other floats as well. Note: this is a relative offset and no further correction is required.Autocorrected" | Autocorrecting so no adjustment in either RT or DM typically required (changed from 4 to 2mBar resolution as per Gilson request) | T | | SOLO II-SIO | | 1/6/2013 | -PRES_SensorAutoAdjustment_dbar | TOTAL Surface pressure offset applied by the float since deployment - this is a cumulative offset (with limitations) and cannot be used for pressure correction | This is a surface pressure name for reference only | T | | SOLO II-SIO | | | - -//end surface pressure offset section... | | | | | | | | - -CLOCK_EndAscentToSurface_hours | "ascent end time, just before Argos transmission - note units can vary and the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time." | JULD_ASCENT_END and JULD with MC=600 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartAscentToSurface_hours | ascent start time - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_ASCENT_START and JULD with MC=500 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentToPark_hours | time when park pressure is reached - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentToPark_hours | time after the crossing the gap threshold - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | not sure where this is - at the surface? | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentToProfile_hours | time when float reaches profile pressure - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DEEP_DESCENT_END or JULD_DEEP_PARK_START and JULD with MC=400 or JULD with MC=450 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentToProfile_hours | time when descent to profile pressure starts - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_PARK_END and JULD with MC=300 | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartDescentProfile_hours | time when descent profile starts - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_START and JULD with MC=100 assuming descending profile starts when float leaves the surface; otherwise choose the appropriate timing variable | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndDescentProfile_hours | time when descent profile ends - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | JULD_DESCENT_END or JULD_PARK_START and JULD with MC=200 or JULD with MC=250 assuming descending profile ends with a park phase; otherwise choose the appropriate timing variable | | | | 1/5/2012 | 1/5/2012 | -CLOCK_EndAscentToSurfaceEstimated_HHMMSS | Theoretical time of end of ascent to surface | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeFromStartUp_hours | Time from start up - note that you should also store the time of the satellite message from which this was calculated. | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_StartInternalCycle_FloatDay | the time of the (internal) cycle start for floats with multiple sub-cycles | | | | | | | -CLOCK_RealTimeDrift_seconds | The difference (seconds)between apf9's real time clock (rtc) and gps time representing clock drift | "is also represented in the traj files. We have CLOCK_OFFSET which is defined as: Decimal part of day that float clock has drifted. Float clockdrift is defined as Float time (provided by the inboard RealTime Clock (RTC) of the float) UT time. " | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatTime_HHMMSS | float internal clock time | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatTimeCorrection_MMSS | float internal clock time correction | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_DateFirstParkSample_YYYYMMDD | float internal clock date of the first park sample | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeFirstParkSample_hours | float internal clock time of the first park sample | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_InitialStabilizationDuringDescentToPark_hours | time when first stabilization appears during descent to park | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_InitialValveActionDescentToPark_HHMM | Time in the day when the float first activated the valve during its descent | | T | | | 5/25/2012 | 5/25/2012 | -TIME_ValveActionsAtSurface_minutes | duration of the basic valve actions which is computed by the float from preceding cycles | | | | | 7/8/2014 | 7/8/2014 | -CLOCK_ValveActionsAtSurface_HHMM | the time when the float moves the valve to acquire additional buoyancy for surface drift. | | | | | | | -CLOCK_PumpActionsAtSurface_HHMM | the time when the float moves the pump to acquire additional buoyancy for surface drift. | | | | | 7/8/2014 | 7/8/2014 | -CLOCK_Satellite_HHMMSS | time derived from satellite communications | | | | | 1/5/2012 | 1/5/2012 | -CLOCK_TransmissionStart_HHMMSS | time of the first transmission for this cycle NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | TRANSMISSION_START_TIME and in JULD with MC=700 | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TransmissionEndTime_YYYYMMDDHHMMSS | time when transmission is ended - NOTE - the raw values can be in the tech file only if it's not possible to calculate the final JULD in real time. | TRANSMISSION_END_TIME and JULD with MC=800 | T | | NINJA_D | 5/19/2014 | 5/19/2014 | -CLOCK_LastIridiumGPSFix_DD | Day of month of last GPS fix/Time of Last GPS Fix (HH) | | | | | | | -CLOCK_FloatDayOfYear_days | internal float day of year | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatDate_YYYYMMDD | internal float date | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_FloatDateTimeDownTimeExpired_YYYYMMDDHHMMSS | Time of expiry of the descent time and beginning of ascent | | | | | 29/0512 | 29/0512 | -CLOCK_AscentInitiationFromDownTimeExpiryOffset_minutes | "Profile initiation time (minutes) 2's compliment signed integer (positive values - profile initiated after down time expired, negative values - profile initiated before down time expired)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_EOLStart_YYYYMMDDHHMMSS | Clock time when End of Life mode starts | | | | | 10/9/2014 | 10/9/2014 | -CLOCK_TimeGrounded_HHMM | time the float grounded | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_BuoyancyInversionStart_FloatDay | Time when the float starts the buoyancy inversion phase when ice was detected during ascent. | "When the ascent profil is aborted because of the Ice detection algorithm, the float starts a 'buoyancy inversion phase'. The current label reports the start time of this phase and NUMBER_BuoyancyInversionValveActions__COUNT the number of valve actions needed to invert float buoyancy. See 132,1" | T | | Provor CTS4 | 5/24/2018 | 5/24/2018 | -CLOCK_ReceptionEndDateTime_YYYYMMDDHHMMSS | End date-time of argos message reception | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ReceptionEndDateTime_NUMBER | "Status of the end date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_ReceptionStartDateTime_YYYYMMDDHHMMSS | Start date-time of argos message reception | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ReceptionStartDateTime_NUMBER | "Status of the start date-time of argos message reception (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_LastReset_YYYYMMDDHHMMSS | Clock time of the last reset of the float | | T | | | 10/9/2014 | 10/9/2014 | -CLOCK_DateOfEmergencyAscent_DDMMYYYY | date of emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_TimeOfFirstEmergencyAscent_HHMMSS | time of first emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -CLOCK_PressureActivationStart_YYYYMMDDHHMMSS | pressure activation scrutation start date | The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. | T | | Provor CTS5 | 24/10/2018 | 24/10/2018 | -CLOCK_PressureActivationStop_YYYYMMDDHHMMSS | pressure activation scrutation end date | The pressure activation phase starts after the first successfull auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured. | T | | Provor CTS5 | 24/10/2018 | 24/10/2018 | -NUMBER_PumpActionsOnFirstEmergencyAscent_COUNT | Emergency ascent - pump actions at emergency depth | | T | | | 1/5/2012 | 1/5/2012 | -PRES_FirstEmergencyAscent_dbar | Pressure that triggered the first emergency ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_EmergencyAscents_COUNT | Number of Emergency ascents - Internal count | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_EmergencyAscent_LOGICAL | Was an emergency ascent performed? | | T | | | 5/25/2012 | 5/25/2012 | -PRES_LastAscentPumpedRawSample_dbar | Last (shallowest) pumped raw pressure sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped) (in dbars).- note this may be duplicated in the traj files with MC599 | | | | | | | -NUMBER_ParkAndProfileCycleCounter_COUNT | this is an indication of how often the float does a profile deeper than its park depth. | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentArgosMessages_COUNT | number of transmitted Argos messages with ascent data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentArgosMessages_COUNT | number of transmitted Argos messages with descent data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkArgosMessages_COUNT | number of transmitted Argos messages with park data | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentIridiumMessages_COUNT | number of transmitted Iridium messages with ascent data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_DescentIridiumMessages_COUNT | number of transmitted Iridium messages with descent data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_ParkIridiumMessages_COUNT | number of transmitted Iridium messages with park data | | C | | | 5/25/2012 | 5/25/2012 | -NUMBER_IridiumResets_COUNT | Number of Power Resets iridium | | | | | 5/25/2012 | 5/25/2012 | -NUMBER_IridiumPacketsReceivedPreviousSession_COUNT | Number of Incoming Iridium Packets Received during previous session | | | | | 5/25/2012 | 10/10/2014 | -NUMBER_IridiumMessagesReceivedPreviousSession_COUNT | Number of Incoming Iridium Messages Received during previous session | | | | | 10/10/2014 | 10/10/2014 | -NUMBER_IridiumMessagesSentPreviousSession_COUNT | Number of Incoming Iridium Messages Sent during previous session | | | | | 10/10/2014 | 10/10/2014 | -NUMBER_NearSurfaceIridiumPackets_COUNT | "Number of Iridium packets used to transmit sensor data collected during the ""near surface measurement"" phase." | internal counter measured by the float | C | | | 7/14/2016 | 7/14/2016 | -NUMBER_InAirIridiumPackets_COUNT | "Number of Iridium packets used to transmit sensor data collected during the ""in air measurement"" phase." | internal counter measured by the float | C | | | 7/14/2016 | 7/14/2016 | -NUMBER_RemoteControlCommandKO_COUNT | Number of remote control commands rejected by the float. | See also ID 309 | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_RemoteControlCommandOK_COUNT | Number of remote control commands successfully considered. | The float can receive message with multiple remote commands. It reports the number of received messages (in FLAG_RemoteControlMessageOK_COUNT and FLAG_RemoteControlMessageKO_COUNT) and also the the number of received commands (in these 2 new labels). See ID 310 | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_GPSResets_COUNT | Number of Power Resets GPS | | | | | 5/25/2012 | 5/25/2012 | -NUMBER_RetriesForGPSAcquisition_COUNT | Number of times the GPS had to try to get a valid fix | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_PRESIridiumMessages_COUNT | number of iridium messages containing PRES data | | | | | 2/11/2014 | 2/11/2014 | -NUMBER_HydraulicRecords_COUNT | Number of hydraulic (pump or valve) actions performed during the cycle. Due to transmission limitations some of them may not be transmitted (in the NUMBER_HydraulicPackets_COUNT transmitted packets). | | | | | 2/11/2014 | 2/11/2014 | - -NUMBER_BinsWithBadData_COUNT | number of pressure bins with bad data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_BinsWithData_COUNT | number of pressure bins with data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkEntriesInParkMargin_COUNT | "descent to park pressure: number of entries in margin around park pressure target - specifically, how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db)" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToProfileEntriesInProfileMargin_COUNT | "descent to profile pressure: number of entries in margin around profile pressure target - specifically, how many times the float enters the band of pressure surrounding the target profile pressure (generally +/- 30db)" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkAndToProfEntriesInParkMargin_COUNT | "Cumulated numbers of entries in both parking zones (at park and profile depth). Specifically, how many times the float enters the band of pressure surrounding the target park/profile pressure (thus 2 is the nominal value for a float which never experienced stabilization issues)." | | | | | | | -NUMBER_HydraulicPackets_COUNT | Number of hydraulic packets used to transmit hydraulic (pump or valve) actions performed during the cycle. | | | | | | | -NUMBER_NearSurfaceSamples_COUNT | Near surface measurements - Internal counter | | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_InAirSamples_COUNT | In air measurements - Internal counter | | T | | | 7/14/2016 | 7/14/2016 | -NUMBER_MixedLayerSamples_COUNT | number of CTD samples taken in the mixed layer | | | | | 1/15/2013 | 1/15/2013 | -NUMBER_ProfileSamples_COUNT | "the number of STP spot samples collected during the profile, not including the park-level spot sample " | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkSamples_COUNT | number of samples collected during park phase | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsToStartAscent_COUNT | Number of pump actions needed to start the ascent. | | | | | 4/30/2015 | 4/30/2015 | -NUMBER_PumpActionsDuringAscentToSurface_COUNT | number of pump actions between start and end of ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsAtSurface_COUNT | number of pump actions at emergence before transmission | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringPark_COUNT | number of pump actions while at park depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringDescentToPark_COUNT | number of pump actions between the crossing of the gap threshold and the end of descent at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_PumpActionsDuringDescentToProfile_COUNT | number of pump actions during descent to start profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RepositionsDuringPark_COUNT | number of times the float readjusts its buoyancy during park phase - using either the pump or EV | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RepositionsAtProfileDepth_COUNT | "at profile pressure stand-by, number of times the float readjusts its buoyancy - using either the pump or EV" | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringPark_COUNT | number of valve actions during park phase | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringDescentToPark_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsDuringDescentToProfile_COUNT | number of valve actions during descent to start profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT | number of solenoid valve actions at the surface until the crossing of the GAP threshold | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT | Number of solenoid valve actions at the surface until the crossing of the GAP threshold. Number computed by the float from previous cycles behaviour. | "This float version provides 2 counts for surface valve actions performed before the GAP threshold (threshold used to detect 'float descent start', see 126). This first one (NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT ) is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). It needs to be combined with the second (NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT, see 126,2) to get the parameter defined in 126 NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT= NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT " | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT | Number of solenoid valve actions at the surface until the crossing of the GAP threshold. These actions are performed after the NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT previous ones. | "see above (126,1 and 126). NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold." | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_ValveActionsDuringProfileDrift_COUNT | number of valve actions while drifting at profile depth | The first one: NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT is computed from what happened during the previous cycles (i.e. the total number of action used to reach the gap THRESHOLD). | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ValveActionsForGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag | The second one: NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT is the number of additional actions needed to reach the GAP threshold. | T | | | 10/9/2014 | 10/9/2014 | -NUMBER_ValveActionsForFirstGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag for the first grounding event | Thus NUMBER_CumulatedValveActionsAtSurfaceDuringDescent_COUNT + NUMBER_AdditionalValveActionsAtSurfaceDuringDescent_COUNT = NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT | T | | | 5/5/2015 | 5/5/2015 | -NUMBER_ValveActionsForSecondGroundingDetection_COUNT | Number of valve actions done at constant pressure to set the grounded flag for the second grounding event | | T | | | 5/5/2015 | 5/5/2015 | -NUMBER_PumpActionsWhenGroundedAtProfilePressure_COUNT | number of pump actions needed to leave the sea bottom when grounded at profile pressure | | T | | | 10/9/2014 | 10/9/2014 | -NUMBER_MotorActionsDuringProfileDrift_COUNT | number of motor actions while drifting at profile depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentToPark_COUNT | number of motor actions between surface and parking depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentParkToProfile_COUNT | number of motor actions between parking depth and deepest position | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringDescentToProfile_COUNT | number of motor actions between start and end ofdescent from park depth to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorActionsDuringAscentToSurface_COUNT | number of motor actions between start and end of descent to profile depth | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_BuoyancyInversionValveActions_COUNT | Number of solenoid valve actions needed to perform the buoyancy inversion phase when ice was detected during ascent. | "see 76 and 76,1" | T | | Provor CTS4 | 24/05/2018 | 24/05/2018 | -NUMBER_AscentSamples_COUNT | ascent: total number of samples collected during ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples1stBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples2ndBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples3rdBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples4thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples5thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples6thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscentSamples7thBounceProfile_COUNT | bounce profile length for this bounce | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_FltnuAscentSamples_COUNT | ascent: Flntu profile length | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_DeepSamplesDuringAscent_COUNT | ascent: number of samples collected in deep area during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ShallowSamplesDuringAscent_COUNT | ascent: number of samples collected in shallow area during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DeepSamplesDuringDescent_COUNT | descent: number of samples collected in deep area during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ShallowSamplesDuringDescent_COUNT | descent: number of samples collected in shallow area during descent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RangeOverflowDuringAscent_COUNT | number of range overflows in measurements during ascent | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_RangeOverflowDuringPark_COUNT | number of range overflows in measurements during parking | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ArgosPositioningClass0_COUNT | positioning (ARGOS message) - Class 0 - accuracy >1500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass1_COUNT | positioning (ARGOS message) - Class 1 - accuracy better than 1500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass2_COUNT | positioning (ARGOS message) - Class 2 - accuracy better than 500m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClass3_COUNT | positioning (ARGOS message) - Class 3 - accuracy better than 250m radius | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositions_COUNT | total number of Argos positions received. | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ArgosPositioningClassA_COUNT | positioning (ARGOS message) - Class A | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClassB_COUNT | positioning (ARGOS message) - Class B | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningClassZ_COUNT | positioning (ARGOS message) - Class Z | | C | | | 1/5/2012 | 9/26/2012 | -NUMBER_ArgosPositioningMessageRejected_COUNT | positioning (ARGOS message) - Rejected | | T | | | 1/5/2012 | 9/26/2012 | -NUMBER_GPSSatellites_COUNT | number of GPS satellites seen by the float | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileOldNotSent_COUNT | Number of older profiles not sent. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileSamplesLowResolution_COUNT | number of low resolution profile samples | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscendingSamplesDeepAbsolute_COUNT | Ascending profile measurements - Deep absolute | Note - JP indicates that depth and surface are inaccurate terms here and deep/shallow are better so I have made this change for all of these variables | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepRelative_COUNT | Ascending profile measurements - Deep relative | "Note also that these variables now can be used for any sensor, being replaced with the relevant variable" | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepTotal_COUNT | Ascending profile measurements - Deep total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowAbsolute_COUNT | Ascending profile measurements - Shallow absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowRelative_COUNT | Ascending profile measurements - Shallow relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowTotal_COUNT | Ascending profile measurements - Shallow total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesTotal_COUNT | Ascending profile measurements - Profile total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesAbsolute_COUNT | Ascending profile measurements - Profile absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesRelative_COUNT | Ascending profile measurements - Profile relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesDeepInternalCounter_COUNT | Ascending profile measurements - Deep internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesShallowInternalCounter_COUNT | Ascending profile measurements - Shallow internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingSamplesInternal_COUNT | Ascending profile measurements - Internal count | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_AscendingProfileReductionLowerPart_COUNT | Ascending profile reduction Number of slices in deep zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AscendingProfileReductionUpperPart_COUNT | Ascending profile reduction Number of slices in shallow zone | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_DescendingProfileReductionLowerPart_COUNT | Descending profile reduction Number of slices in deep zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingProfileReductionUpperPart_COUNT | Descending profile reduction Number of slices in shallow zone | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesAbsolute_COUNT | Descending profile measurements - Profile absolute | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesRelative_COUNT | Descending profile measurements - Profile relative | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingSamplesTotal_COUNT | Descending profile measurements - Profile total | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_DescendingSamplesDeepAbsolute_COUNT | Descending profile measurements - Depth absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesDeepRelative_COUNT | Descending profile measurements - Depth relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesDeepTotal_COUNT | Descending profile measurements - Depth total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowAbsolute_COUNT | Descending profile measurements - Surface absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowRelative_COUNT | Descending profile measurements - Surface relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_DescendingSamplesShallowTotal_COUNT | Descending profile measurements - Surface total | | | | | 1/5/2012 | 12/18/2013 | - -NUMBER_PRESSamplesDuringDescentToPark_COUNT | number of pressure samples collected as the float descends from the Shallow to the park pressure. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_PRESSamplesDuringDescentToProfile_COUNT | "number of pressure samples collected after park, during descent to the profile depth - see PRES_1HourIntoDescentToProfile_dbar for the data collected" | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescendingPRESSamples_COUNT | number of descending Profile pressure measurements | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToParkEntriesInGap_COUNT | Descent to park float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentToProfileEntriesInGap_COUNT | Descent to profile float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentEntriesInGap_COUNT | Descent float control - number of entries in gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile_COUNT | Distinct frames emitted on ascending profile | "Note - similarly to above, DOXY etc have been repaced by making these more flexible" | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnDescendingProfile_COUNT | Distinct frames emitted on descending profile | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnPark_COUNT | Distinct frames emitted on immersion profile | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FloatFramesCompleteOnDescendingProfile_COUNT | Provor frames complete on descending profile | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_FloatFramesOkOnDescendingProfile_COUNT | Provor frames ok on descending profile | | | | | 1/5/2012 | 1/5/2012 | - -NUMBER_FloatFramesReceivedOnDescendingProfile_COUNT | Provor frames received on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FloatPTOrPTCFrames_COUNT | Transmission (PROVOR frames) - PT or PTC frames | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FloatPTOrPFramesOk_COUNT | Transmission (PROVOR frames) - PT or PTC OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCompleteOnAscendingProfile_COUNT | Frames complete on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCompleteOnPark_COUNT | Frames complete on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCrcOkOnDescendingProfile_COUNT | Distinct frames received with crc ok on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesCrcOkOnPark_COUNT | Distinct frames received with crc ok on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnDescendingProfile_COUNT | Distinct frames emitted on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile_COUNT | Distinct frames emitted on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnPark_COUNT | Distinct frames emitted on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesOkOnAscendingProfile_COUNT | Frames ok on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesOkOnPark_COUNT | Frames ok on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedCrcOkOnAscendingProfile_COUNT | Distinct frames received with crc ok on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedOnAscendingProfile_COUNT | Frames received on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesReceivedOnPark_COUNT | Frames received on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnAscendingProfile_COUNT | Frames recombined on ascending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnDescendingProfile_COUNT | Frames recombined on descending profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesRecombinedOnPark_COUNT | Frames recombined on immersion profile | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_RecordsInDataset_COUNT | "The number of records in each dataset type [1-5] as transmitted - dataset 1=test data, 2=park data if profile, GPS data if test, 3=not used, 4=profile data, 5=GPS data for profile. This is currently applicable to NEMO floats only." | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_FramesEmittedOnAscendingProfile1_COUNT | Distinct optique frames emitted on ascending profile - Profile 1 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnAscendingProfile2_COUNT | Distinct optique frames emitted on ascending profile - Profile 2 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_FramesEmittedOnAscendingProfile3_COUNT | Distinct optique frames emitted on ascending profile - Profile 3 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile1_COUNT | Ascending profile optique measurements - Internal counter - Profile 1 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile2_COUNT | Ascending profile optique measurements - Internal counter - Profile 2 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ProfileMeasurementsProfile3_COUNT | Ascending profile optique measurements - Internal counter - Profile 3 | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_SpyFramesEmitted_COUNT | Distinct spy frames emitted | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkSamplesAbsolute_COUNT | Park measurements - Drift absolute | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesInternal_COUNT | Park measurements - Internal counter | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesRelative_COUNT | Park measurements - Drift relative | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkSamplesTotal_COUNT | Park measurements - Drift total | | | | | 1/5/2012 | 12/18/2013 | -NUMBER_ParkGapOrder_COUNT | Park float control - Gap order | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TemporaryCycleIdentification_COUNT | Temporary - used to identify the recalculated Apex tech_cycle_data | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesComplete_COUNT | Transmission (PROVOR frames) - Complete | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesCrcOk_COUNT | Transmission (PROVOR frames) - CRC OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesReceived_COUNT | Transmission (PROVOR frames) - Received | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesRecombined_COUNT | Transmission (PROVOR frames) - Recombined | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesTechnical_COUNT | Transmission (PROVOR frames) - Technical frames | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TransmissionFloatFramesTechnicalOk_COUNT | Transmission (PROVOR frames) - Technical OK | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TelemetryRetransmission_COUNT | Number of repeated transmissions of float data for each Argos message | | | | | | | -NUMBER_AscentPTMessages_COUNT | NUMBER OF ASCENT PT MESSAGES | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_DescentPTMessages_COUNT | NUMBER OF DESCENT PT MESSAGES | | C | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkPTMessages_COUNT | NUMBER OF DRIFT PT MESSAGES | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ParkDriftEntriesInParkMargin_COUNT | "drift at park pressure: number of entries in margin around park pressure target - specifically, how many times the float enters the band of pressure surrounding the target park pressure (generally +/- 30db)" | | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -NUMBER_ParkDriftExitsFromParkMargin_COUNT | "drift at park pressure: number of exits from margin around park pressure target - specifically, how many times the float exits the band of pressure surrounding the target park pressure (generally +/- 30db)" | | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -NUMBER_DOXYErrorsAscending_COUNT | Number of O2_ Optode errors during profile. Zero if no sensor installed. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_RAFOSErrorsAscending_COUNT | Number of RAFOS errors during profile. Zero if no rafos module installed. | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_MotorErrorDuringProfile_COUNT | Number of moter errors during profile | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDReset_COUNT | CTD reset count | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDError_COUNT | CTD error count | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CTDAcquisitionsFailed_COUNT | Number of Failed CTD Acquisitions | | T | | | 5/25/2012 | 5/25/2012 | -NUMBER_MiddleSamplesDuringAscent_COUNT | ascent: number of samples in middle area | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_AirPumpPulsesToInflateBladder_COUNT | number of 6-second pulses of the air pump required to inflate the air bladder | | T | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorDeepZoneDuringAscending_COUNT | error of temperature measurements in deep zone during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorDeepZoneDuringDescending_COUNT | error of temperature measurements in deep zone during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorShallowZoneDuringAscending_COUNT | error of temperature measurements in deep shallow during ascent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_TEMPSampleErrorShallowZoneDuringDescending_COUNT | error of temperature measurements in shallow zone during descent | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ProfileCrossCalibrationSamples_COUNT | " the number of Near Surface Temperature monitoring cross calibration samples (pumped PTS,non-pumped PT)." | | | | | 2/2/2016 | 2/2/2016 | -NUMBER_ProfileNearSurfaceTemperatureSamples_COUNT | the number of Near Surface Temperature monitoring PT samples (non-pumped PT) | | | | | 2/2/2016 | 2/2/2016 | removed | | configuration variable - do not use | | | | 1/5/2012 | 1/5/2012 | 11/1/2014 -NUMBER_SensorAnomaly_COUNT | number of anomalous sensor readings (?) | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_CoherenceProblem_COUNT | SBE sensor data check used to diagnose problems | | | | | 1/5/2012 | 1/5/2012 | -NUMBER_ExceptionProgramCounter_NUMBER | "Exception Program Counter (EPC) used to store the address of theinstruction that was executing when the exception was generated." | "The new 'Emergency' Apex-APF11 float message provide a 4 bytes information called 'PC: The exception program counter'. Customers would report emergency messages to Teledyne, and from that TWR will identify the source of the problem. - -//Actual instruction addresses in the running program change for every version of code released." | T | | APEX with APF-11 | 5/24/2018 | 5/24/2018 | -DIAGNOSTICbit_CPUBatteryVoltage_bit | bit indicating the status of the CPU battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_CurrentWithMotorOut_bit | bit indicating the current with motor out | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_PressureOffsetAfterReset_bit | bit indicating the status of the pressure offset after reset | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_VacuumPressure_bit | bit indicating the status of the pressure of the vacuum | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_TimeMotorOut_bit | bit indicating the status of the time motor out | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_BatteryPumpVoltage_bit | bit indicating the status of the pump battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -DIAGNOSTICbit_ArgosTransmitterBootFailure_bit | was there an Argos transmitter boot failure | | | | | | | -DIAGNOSTICbit_ArgosTransmitterUnexpectedResponse_bit | was there an Argos transmitter unexpected response | | | | | | | -DIAGNOSTICbit_ArgosTransmitterNonresponsive_bit | is the Argos transmitter non responsive | | | | | | | -DIAGNOSTICbit_ArgosTransmitterNegativeAcknowledgeRecieved_bit | was there an Argos transmitter negative acknowledge recieved | | | | | | | -DIAGNOSTICbit_ArgosTransmitterRebootDetected_bit | was there an Argos transmitter reboot detected | | | | | | | -DIAGNOSTICbit_ArgosTransmitterPowerCycled_bit | did the Argos transmitter power cycled | | | | | | | -DIAGNOSTICbit_ArgosTransmitterIncommunicado_bit | did the Argos transmitter attempt to communicate fail | | | | | | | -DIAGNOSTICbit_ArgosTransmitterXmitFail_bit | did the Argos transmitter transmission attempt fail | | | | | | | - -FLAG_8BitProfileCounterOverflowed_LOGICAL | The 8-bit profile counter overflowed (Yes/1 or No/0_ | | | | | 1/5/2012 | 1/5/2012 | -FLAG_AirInflationSystemByPassedExcessiveEnergyConsumption_LOGICAL | Air inflation system by-passed; excessive energy consumption (Yes/1 or No/0) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_AntennaStatus_NUMBER | Flag indicating the status of the antenna (see manual) | | T | | | 7/14/2016 | 7/14/2016 | -FLAG_AscendingProfile_NUMBER | Status of profile upcast. 0=UPCAST_BUSY 1=UPCST_DONE 2=UPCAST_TIMEOUT 3=UPCAST_ICE_DETECTION | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_AscentError_NUMBER | "0=normal, 81=too shallow (grounding?) , 82=over 2100dbar, 84=sensor error" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_AscentTimeOutExpired_LOGICAL | Ascent time out expired (Yes/1 or No/0) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_BitMaskMonthsIceDetectionActive_ NUMBER | when is ice detection active - months in reverse order | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_CTDStatus_NUMBER | Flag indicating the status of the CTD (see manual) (could be reported as hex) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_CTDFastPressureError_LOGICAL | Flag for Error on CTD Fast Pressure Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDStartProfileError_LOGICAL | Flag for Error on CTD Start Profile Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDStopProfileError_LOGICAL | Flag for Error on CTD Stop Profile Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDDownloadError_LOGICAL | Flag for Error on CTD Download Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_CTDAverageError_LOGICAL | Flag for Error on CTD Average Command | | | | | 2/11/2014 | 2/11/2014 | -FLAG_DataEntryError_LOGICAL | Data entry error (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_DataStateIndicator_LOGICAL | "Data state indicator - again, duplicated from the profile file)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_DeepProfile_LOGICAL | The current profile is a deep profile (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuNoResponse_LOGICAL | Flntu : No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuNullArgumentDetectedDuringMeasurement_LOGICAL | Flntu : Null argument detected during measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuPowerDownFailed_LOGICAL | Flntu : Power down failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuPowerUpFailed_LOGICAL | Flntu : Power up failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuResponseFailedRegexMatch_LOGICAL | Flntu : Response failed regex match (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlntuStatus_NUMBER | Flag indicating the status of the FLNTU (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FlbbStatus_NUMBER | Flag indicating the status of the FLBB (see manual) | | T | | | 22/08/2066 | 22/08/2016 | -FLAG_FloatStatus_NUMBER | Flag indicating the status of the Float (see manual) (could be reported as hex) | | T/C | | | 1/5/2012 | 1/5/2012 | -FLAG_InitialMemoryIntegrityCheck_LOGICAL | Software check on the float memory contents (0 if problems were found and 1 if no problem occured) | Check the consistency of the default values stored in the dedicated memory | T | | | 22/08/2016 | 22/08/2016 | -FLAG_GPSStatus_LOGICAL | Flag indicating whether GPS is valid (1) or not valid (0) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Grounded_NUMBER | "grounded flag , diagnostic bit - could also be logical? Yes/no? 0/1? Or can be number of profiles during which the float grounded" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_FirstGroundingCyclePhase_NUMBER | Phase of the float life or cycle when the first grounding occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_SecondGroundingCyclePhase_NUMBER | Phase of the float life or cycle when the second grounding occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_CTDErrorCyclePhase_NUMBER | Phase of the float life or cycle when the CTD error occurred. See the manual for phase definition - this will vary with float type | | | | | 5/30/2015 | 5/30/2015 | -FLAG_Beached_NUMBER | is the float beached? - could be logical | | C | | | 5/28/2012 | 5/28/2012 | -FLAG_IceDetected_COUNT | aborted profile count - increments by one for each profile interrupted by ice detection. If units are 'bit' then represents the ice evasion record for the last 8 profiles with the latest profile in the least significant bit. | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_InvalidSequencePoint_LOGICAL | Invalid sequence point detected (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_NegativeSbeNumber_LOGICAL | Negative SBE number (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_NextPressureTimeout_LOGICAL | different from ascent timeout since it refers to a single pressure point timeout. | | | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeFailed_LOGICAL | Optode : Failed (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeNoResponse_LOGICAL | Optode : No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeNullArgumentDetectedDuringMeasurement_LOGICAL | Optode : Null argument detected during measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OptodeStatus_NUMBER | Flag indicating the status of the Optode (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_OxygenSensorState_LOGICAL | "Oxygen Sensor State - 1=on, 0=off" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PistonFullyExtendedBeforeSurfaceDetectionAlgorithmTerminated_LOGICAL | Piston fully extended before surface detection algorithm terminated (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PistonMotorRunning_LOGICAL | Piston motor running (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_PressureActivationTestMessage_LOGICAL | Current argos message is a pressure-activation test message (Yes or No) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_InitialCheckError_LOGICAL | "Auto-test is performed at the beginning of the mission: Flag 0 = Problem, 1 = OK)" | or detailed auto-test for float hardware resulting in a detailed code for each tested sub-part (see manual) | | | | 4/30/2015 | 4/30/2015 | -FLAG_PressureReachedZero_LOGICAL | Pressure reached zero (Yes or No) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileInProgress_LOGICAL | Profile in progress (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTermination_hex | Flag indicating the status of the profile termination (see manual) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTerminationFlag#1_byte | see description in manufacturer's manual | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ProfileTerminationFlag#2_byte | see description in manufacturer's manual | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RemoteControlMessageKO_COUNT | number of received messages which have been rejected by the float | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RemoteControlMessageOK_COUNT | number of messages sent by the remote control and received by the iridium float | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_RTCStatus_LOGICAL | "real time clock status - 1= OK, 0=not OK" | | T | | | 1/5/2012 | 9/29/2013 | -FLAG_TelonicsPTTStatus_byte | Implemented a status byte for the Telonics ST21 PTT to facilitate diagnostics. This byte records the state of 8 status bits for the Telonics PTT | | T | | APEX- NAVO | 4/17/2014 | 4/17/2014 | -FLAG_SatlanticStatus_NUMBER | Flag indicating the status of the Satlantic optical sensor | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingPPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the P pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePNonpedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the P nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePTSNonPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the PTS nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ExceptionDetectedWhileParsingThePTSPedanticRegex_LOGICAL | Sbe41 : Exception detected while parsing the PTS pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41NullArgumentDetectedDuringPMeasurement_LOGICAL | Sbe41 : Null argument detected during P measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PExeption_LOGICAL | Sbe41 : P exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PNoResponse_LOGICAL | Sbe41 : P No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTException_LOGICAL | Sbe41 : PT exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTSException_LOGICAL | Sbe41 : PTS exception (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PTSNoResponse_LOGICAL | Sbe41 : PTS No response (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41PUnreliable_LOGICAL | Sbe41 : P unreliable (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPMeasurementFailedTheNonpedanticRegex_LOGICAL | Sbe41 : Response to P measurement failed the nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPMeasurementFailedThePedanticRegex_LOGICAL | Sbe41 : Response to P measurement failed the pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPTSMeasurementFailedTheNonpedanticRegex_LOGICAL | Sbe41 : Response to PTS measurement failed the nonpedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_Sbe41ResponseToPTSMmeasurementFailedThePedanticRegex_LOGICAL | Sbe41 : Response to PTS measurement failed the pedantic regex (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_SBE43NullArgumentDetectedDuringPTSMeasurement_LOGICAL | SBE43 : Null argument detected during PTS measurement (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_SeabirdStringLengthError_LOGICAL | Seabird string length error (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ShallowWaterTrapDetected_LOGICAL | Shallow water trap detected (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusBladderStateAtLaunch_NUMBER | "External bladder state at deployment (0: float stay at surface, 1: heavy float at deployment)" | | | | | 4/30/2015 | 4/30/2015 | -FLAG_StartDescentToProfile_NUMBER | "Status of the start date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusEndAscentToSurface_NUMBER | "Status of the end date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusEndDescentToProfile_NUMBER | "Status of the end date-time of the descending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusHistoryQCFailed_hex | Flag History Failed (from profile file) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusHistoryQCPerformed_hex | Flag History performed (from profile file) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusStartAscentToSurface_NUMBER | "Status of the start date-time of the ascending profile (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_StatusStartTransmission_NUMBER | "Status of the start date-time of transmission (0:Nominal, 1:Estimated, 2:Transmitted)" | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_System_NUMBER | | | | | | 1/5/2012 | 1/5/2012 | -FLAG_SystemAtDepth_hex | System flags at depth - SEE MANUAL | | | | | 1/5/2012 | 1/5/2012 | -FLAG_SystemAtSurface_hex | System flags at surface - SEE MANUAL | | | | | 1/5/2012 | 1/5/2012 | -FLAG_TimerDone_LOGICAL | Timer done (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_UpDown_LOGICAL | Flag indicating whether the float is in 'Up time' (0) or 'Down time' (1) | | | | | 1/5/2012 | 1/5/2012 | -FLAG_WakeUpByWatchDogAlarm_LOGICAL | Wake-up by watchdog alarm (Yes or No) | | T | | | 1/5/2012 | 1/5/2012 | -FLAG_ArgosTransmitterExceptionStatus_bit | has an Argos transmitter exception been detected | | | | | | | -REFERENCE_BlueFlntuParkEnd_COUNT | "Flntu BlueReference at end of park, before descent to profile depth" | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_BlueFlntuSurface_COUNT | Flntu BlueReference at surface | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_NTUParkEnd_COUNT | "Flntu NTU Reference at end of park, before descent to profile depth" | | T | | | 1/5/2012 | 1/5/2012 | -REFERENCE_NTUSurface_COUNT | Flntu NTU Reference at surface | | T | | | 1/5/2012 | 1/5/2012 | - -POSITION_PistonNow_COUNT | | | | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonPark_COUNT | piston position at park pressure | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonParkEnd_COUNT | piston position at end of park period before descent to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonParkStart_COUNT | plunger position at parking start | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonProfile_COUNT | piston position at maximum profile pressure | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonStorage_COUNT | | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonSurface_COUNT | "Piston position, recorded as the instrument reaches the surface" | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonSurfaceAddedBuoyancy_COUNT | "Piston position, recorded AFTER the instrument reaches the surface and the bladder has been fully pumped to increase buoyancy" | | T | | | 1/5/2012 | 9/26/2012 | -POSITION_PistonTarget_NUMBER | is this the same as one of the CONFIG_PISTON variables? | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonPosition1_COUNT | Apex ascent profile piston position 1 | | T | | | 1/5/2012 | 1/5/2012 | -POSITION_PistonMax_COUNT | reported maximum piston position | | T | | | 1/5/2012 | 1/5/2012 | - -PRES_TimeOutGPS_dbar | Pressure when GPS acquisition times out | | | | NINJA_D | | | -PRES_TimeOutIridium_dbar | Pressure when iridium communications time out | | | | NINJA_D | | | -PRES_1HourIntoDescentToProfile_dbar | pressure taken 1 hour after the beginning of descent | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | T | | | 1/5/2012 | 1/5/2012 | -PRES_2HoursIntoDescentToProfile_dbar | pressure taken 2 hours after the beginning of descent | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | T | | | 1/5/2012 | 1/5/2012 | -PRES_HoursIntoDesentToProfile_dbar | (add more of these as required to complete the sequence as reported by the float) | "NOTE - If Descent Start Time (DST) is known from the decoding process in real time, this pressure should be stored in the TRAJ file as a PRES variable with the corresponding code of MC - 10 (often MC = 190). If Descent Start Time is not known in real time, store the pressure measurement in the TECH file. " | | | | 1/5/2012 | 1/5/2012 | -PRES_MaxDifferencePvsPTorPTSSamples_dbar | "The maximum (in absolute value) divergence between pressures from closely-spaced (ie., a few seconds apart in time) P-only sample requests and PT or PTS sample requests. The divergence is measured as the P-only sample minus the pressure from the PTS (or PT) sample." | | | | | 10/20/2015 | 10/20/2015 | -PRES_AscendingProfileReductionBottomSlicesThickness_dbar | Ascending profile reduction Deep zone slices thickness - ETF | PRES_AscendingProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionETF_dbar | Ascending profile reduction - ETF | PRES_AscendingProfileReductionETF_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionETS_dbar | Ascending profile reduction - ETS | PRES_AscendingProfileReductionETS_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionSeparation_dbar | Ascending profile reduction Surface / bottom pressure threshold - PRSEP | PRES_AscendingProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_AscendingProfileReductionSurfaceSlicesThickness_dbar | Ascending profile reduction surface slices thickness - ETS | PRES_AscendingProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionBottomSlicesThickness_dbar | CTD profile reduction Deep zone slices thickness - ETF | PRES_CTDProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionSeparation_dbar | CTD profile reduction Shallow / deep pressure threshold - PRSEP | PRES_CTDProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_CTDProfileReductionSurfaceSlicesThickness_dbar | CTD profile reduction Shallow zone slices thickness - ETS | PRES_CTDProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionBottomSlicesThickness_dbar | Descending profile reduction Deep zone slices thickness - ETF | PRES_DescendingProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionSeparation_dbar | Descending profile reduction Shallow / deep pressure threshold - PRSEP | PRES_DescendingProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescendingProfileReductionSurfaceSlicesThickness_dbar | Descending profile reduction surface slices thickness - ETS | PRES_DescendingProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DescentStartAfterReset_dbar | Pressure after pressure reset just prior to descent (IDG VAR=PFS) | | T | | | 1/5/2012 | 1/5/2012 | - -PRES_DOXYProfileReductionBottomSlicesThickness_dbar | DOXY profile reduction Deep zone slices thickness - ETF | PRES_DOXYProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DOXYProfileReductionSeparation_dbar | DOXY profile reduction Shallow / deep pressure threshold - Surface / bottom pressure thresholdPRSEP | PRES_DOXYProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_DOXYProfileReductionSurfaceSlicesThickness_dbar | DOXY profile reduction Number of slices in shallow zone - ETS | PRES_DOXYProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_ForFLNTUSurface_dbar | pressure used for Flntu at surface | | | | | 1/5/2012 | 1/5/2012 | -PRES_ForOptodeSurface_dbar | pressure used for Optode at surface | | | | | 1/5/2012 | 1/5/2012 | - -PRES_MaximumDepthBinWithValidData_dbar | Maximum depth bin with valid data according to the float | | | | | 1/5/2012 | 1/5/2012 | -PRES_ExceededMaximumProfileDepth_dbar | The pressure where the float exceeds its maximum profile depth. | | | | | | | - -PRES_MiddleDeepBoundaryAscent_dbar | boundary pressure between middle/deep areas at ascent - IS THIS A CONFIGURATION VARIABLE?? | | | | | 1/5/2012 | 1/5/2012 | -PRES_MinimumDepthBinWithValidData_dbar | Minimum depth bin with valid data according to the float | | | | | 1/5/2012 | 1/5/2012 | - -PRES_MinimumDuringMaximumBuoyancy_dbar | the shallowest presssure reached by a float when buoyancy is at maximum but it cannot reach the surface. | | | | NINJA_D | 2/10/2014 | 2/10/2014 | -PRES_Now_dbar | test message data reporting pressure at the surface during drift - cycle 0 | | T | | | 1/5/2012 | 1/5/2012 | -PRES_PlusFourseconds_dbar | PRES measured 4 seconds after PRES_AscentStart_dbar | "NOTE - this can also be placed into the traj files with MC-10 depending on the timing event (Often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. " | | | | 40913 | 40913 | -PRES_PlusTwoseconds_dbar | PRES measured 2 seconds after PRES_AscentStart_dbar | "NOTE - this can also be placed into the traj files with MC -10 depending on the timing event (often this would be MC = 590) and a JULD calculated from AscentStart times. If the AscentStart time is not known, then they can remain in the tech file. " | | | | 1/5/2012 | 1/5/2012 | -PRES_Settling0_dbar | needs valid definitions | | T | | | 1/5/2012 | 1/5/2012 | -PRES_Settling1_dbar | needs valid definitions | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowDeepBoundaryAscent_dbar | boundary pressure between shallow/deep areas at ascent | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowDeepBoundaryDescent_dbar | boundary pressure between shallow/deep areas at descent | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowestInProfile_dbar | shallowest profile point | | T | | | 1/5/2012 | 1/5/2012 | -PRES_ShallowMiddleBoundaryAscent_dbar | boundary pressure between shallow/middle areas at ascent - IS THIS A CONFIGURATION VARIABLE?? | | | | | 1/5/2012 | 1/5/2012 | -PRES_AscentTimeOutExpired_dbar | Pressure when ascending time out | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_DescentTimeOutExpired_dbar | Pressure when descending time out | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_DescentTimeOutExpiredAfterFailedAscent_dbar | Maximum pressure when descent times out after a previous failed ascent (from ice avoidancy or buoyancy issues). | | | | NINJA_D | 2/10/2014 | 2/10/2014 | -PRES_IceAvoidance_dbar | Pressure when float avoids ice | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_SurfaceComplement_dbar | Surface pressure complement | | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionBottomSlicesThickness_dbar | TUR3 profile reduction Deep zone slices thickness - ETF | PRES_TUR3ProfileReductionBottomSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionSeparation_dbar | TUR3 profile reduction Surface / bottom pressure threshold - PRSEP | PRES_TUR3ProfileReductionSeparation_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_TUR3ProfileReductionSurfaceSlicesThickness_dbar | TUR3 profile reduction Number of slices in shallow zone - ETS | PRES_TUR3ProfileReductionSurfaceSlicesThickness_dbar | | | | 1/5/2012 | 1/5/2012 | -PRES_ChangeInFirstSeek_COUNT | Pressure Change during first seek at the park depth (IDG Var=PSK) | | T | | | 1/5/2012 | 9/26/2012 | -PRES_WhenInWaterSensed_dbar | "From p,t,s when in water sensed " | | | | | 1/5/2012 | 1/5/2012 | -TEMP_WhenInWaterSensed_degC | "From p,t,s when in water sensed " | | T | | | 1/5/2012 | 1/5/2012 | -PSAL_WhenInWaterSensed_psu | "From p,t,s when in water sensed " | | | | | 1/5/2012 | 1/5/2012 | - -PRESSURE_AirBladder_COUNT | measured in COUNT - approx 148 COUNT | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_BladderNow_dbar | current pressure of the air bladder 'now' (when is 'now'?). | | | | | 1/5/2012 | 1/5/2012 | -PRES_DuringMaxBuoyancyAndGPSAcquisition_dbar | Pressure when buoyancy is max during getting GPS | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -PRES_During MaximumBuoyancyAndIridiumTransmission_dbar | Pressure when buoyancy is max during sending messages | | | | NINJA_D | 5/19/2014 | 5/19/2014 | - -PRESSURE_InternalVacuum_mbar | units might be (mbar) or (COUNT) or (inHg) | | | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAirBladderEmpty_inHg | Internal Vacuum when air (sleeve) bladder is empty (IDG Var=VACb) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAirBladderFull_inHg | Internal Vacuum when air (sleeve) bladder is full (IDG Var=VACa) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumDuringDescent50dbar_inHg | Internal Vacuum at 50dbar as float is sinking towards drift depth. | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumOilBladderEmpty_inHg | Internal vacuum when all oil is inside pressure case | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumOilBladderFull_inHg | Internal vacuum when all oil isinside the oil bladder | | T | | | 9/25/2012 | 9/25/2012 | -PRESSURE_InternalVacuumAtEndSurface_inHg | Air pressure inside of SOLO at end of surface time (IDG Var=ATE) ! | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtLaunch_inHg | Internal vacuum when float launched | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtStartSurface_inHg | Air pressure inside of SOLO at start of surface time (IDG Var=ATS) | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumAtSurface_mbar | Surface internal pressure | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumBeforeFill_inHg | SAME AS SOMETHING ELSE? | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumDuringPark_inHg | Park vacuum | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumEndXmit_inHg | internal pressure at the end of the transmission period | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumParkEnd_inHg | Internal Vacuum at end of park. before descent to profile depth | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumProfileStart_mbar | Internal tube pressure [mbar] in profile depth | | T | | | 1/5/2012 | 1/5/2012 | -PRESSURE_InternalVacuumRange_mbar | "the range of internal vacuum reported by the float - e.g., ""<=725"" or ""726-750""" | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumAtSurface_degC | internal tube temperature at the surface | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumAirBladderFull_degC | internal tube temperature at surface after airbladder fill | | T | | | 1/5/2012 | 1/5/2012 | -TEMPERATURE_InternalVacuumProfileStart_degC | internal tube temperature at the profile depth | | T | | | 1/5/2012 | 1/5/2012 | - -STATUS_LimitSwitch_hex | | | | | | 1/5/2012 | 1/5/2012 | -STATUS_MiscellaneousOperations_hex | | | T | | | 1/5/2012 | 1/5/2012 | -STATUS_LimitSwitchINAtSurfaceStartXmit_NUMBER | "Binary reporting of piston position (1=IN, 0=OUT) IDG VAR=LIMsw....not same LIMsw as in Cy0" | | T | | | 1/5/2012 | 1/5/2012 | -STATUS_LimitSwitchOUTAtStartAscent_NUMBER | "Binary reporting of piston position (0=IN, 1=OUT) (IDG VAR=LIMsw)...not same LIMsw as in Cy0" | | | | | 1/5/2012 | 1/5/2012 | -TIME_AirPumpOn_seconds | Air pump on time | | T | | | 1/5/2012 | 1/5/2012 | -TIME_AirPumpOnIntegrated_seconds | Air pumped integrated | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Ascent1900DB_seconds | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Ascent2000DB_seconds | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_BuoyancyPumpOn_seconds | are the units right? | | T | | | 1/5/2012 | 1/5/2012 | -TIME_BuoyancyReductionActionAtSurface_seconds | the time the pump or valve ran at the surface to initiate descent | | | | | | | -TIME_ClockDrift_dsec/day | MOVED from CONFIG to TIME | | T | | | 1/5/2012 | 1/5/2012 | - -TIME_DescentTo50Decibars_seconds | IDG Var=FallT | | | | | 1/5/2012 | 1/5/2012 | -TIME_DescentToPark_hours | metadata? Measured and reported? OR CONFIGURATION INFORMATION? | | T | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringAscent_seconds | DOXY ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringDescent_seconds | DOXY descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_DOXYSampleFrequencyDuringPark_hours | DOXY drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -TIME_FromBladdersEmptyToStartOfMission_seconds | TIME FROM START TO END FIRST PROFILE | | | | | 1/5/2012 | 1/5/2012 | -TIME_FromStartOfMissionToEndFirstProfile_seconds | TIME FROM BLADDERS EMPTY TO START | | T | | | 1/5/2012 | 1/5/2012 | -TIME_GroundingRelativeToCycleBeginning_hours | Gounding day relative to cycle beginning | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceLastIridiumGPSFix_DD | Days since the last GPS fix/Hours since the Last GPS Fix (HH) | | T | | | 5/25/2012 | 5/25/2012 | -TIME_IridiumGPSFix_seconds | the number of seconds required to obtain a GPS fix for a profile | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PreviousIridiumSession_seconds | duration of the previous iridium session | | | | | | | -TIME_TransmissionLastHousekeepingMessage_seconds | time required to transmit the last housekeeping message | | | | | 5/25/2012 | 5/25/2012 | - -TIME_MotorDriveDuringDescent_minutes | | | T | | | 5/29/2012 | 5/29/2012 | -TIME_MotorDriveDuringAscent_minutes | | | T | | | 1/5/2012 | 1/5/2012 | -TIME_OptiqueSampleFrequencyDuringDescent_seconds | Optique descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_OptiqueSampleFrequencyDuringPark_hours | Optique drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -TIME_PistonRanDuringDescentFrom100db_seconds | seconds that piston ran to descend from approximately 100db (IDG Var= TIP) | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PistonRanDuringFirstSeek_seconds | seconds that piston ran during first seek (park depth) IDG Var=TSK | | T | | | 1/5/2012 | 1/5/2012 | -TIME_PumpActionsAtSurface_seconds | duration of pump actions at the surface | | | | | 1/5/2012 | 1/5/2012 | -TIME_PumpActionsAdditionalAtSurfaceForGPSAcquisition_seconds | duration of additional pump actions at the surface performed during GPS acquisition in case of insufficient buoyancy | | T | | | 7/14/2016 | 7/14/2016 | -TIME_PumpActionsAtDepth_seconds | total duration of pump actions at depth | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpActionsInOutAtDepth_COUNT | total duration of pump actions (in and out both reported) at depth | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpActionsInOutAtSurface_COUNT | total duration of pump actions (in and out both reported) at the surface | | T | | | 5/25/2012 | 5/25/2012 | -TIME_PumpMotor_seconds | units could be COUNT or seconds - Pump motor time=COUNT multiplied by 2 for seconds | | T | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringAscent_seconds | CTD ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringDescent_seconds | CTD descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SampleFrequencyDuringPark_seconds | "sampling period during park was: TIME_SamplePeriodPark_hours" | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Settling0_seconds | | | | | | 1/5/2012 | 1/5/2012 | -TIME_Settling1_seconds | | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceAscentEnd_HHMMSS | (units variable) | | | | | 1/5/2012 | 1/5/2012 | -TIME_SinceStartUp_seconds | time since startup before deployment | | | | | 1/5/2012 | 1/5/2012 | -TIME_TelemetryPhaseInitiationTimeRelativeEPOCH_minutes | time of telemetry phase initiation in mintes relative to EPOCH - this includes the ascent from profiling depth. | | T | | | 1/5/2012 | 1/5/2012 | -TIME_ToAscend_seconds | time taken to reach the surface | | T | | | 1/5/2012 | 1/5/2012 | -TIME_Transmission_minutes | Transmission time in minutes | | T | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringAscent_seconds | TUR3 ascent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringDescent_seconds | TUR3 descent acquisition frequency (sec) | | | | | 1/5/2012 | 1/5/2012 | -TIME_TUR3SampleFrequencyDuringPark_hours | TUR3 drift acquisition frequency (hour) | | | | | 1/5/2012 | 1/5/2012 | -VOLUME_OilVolumeTransferredAtSurfaceDuringDescent_cm^3 | Oil volume transferred from the external bladder during the descent to park (between the surface and the second threshold of the buoyancy reduction phase). This is the oil volume tranferred during the NUMBER_ValveActionsAtSurfaceDuringDescent_COUNT valve actions (Id 126). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringDescentToPark_cm^3 | Oil volume transferred from the external bladder during the descent to park (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions (Id 124). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredToAscentWhenGrounded_cm^3 | "Oil volume, transferred to the external bladder, needed to leave the sea bottom when grounded. " | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringDescentToProfile_cm^3 | Oil volume transferred from the external bladder during the descent to start profile pressure. This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToProfile_COUNT valve actions (Id 125). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | -VOLUME_OilVolumeTransferredDuringAscentToSurface_cm^3 | Oil volume transferred to the external bladder during the ascent to surface This is the oil volume tranferred during the NUMBER_PumpActionsDuringAscentToSurface_COUNT pump actions (Id 116). | reported pump/valve actions were expressed as durations in the previous floats version. For the CTS5 they are reported as transferred oil volume. | T | | PROVOR CTS5 | 2/1/2017 | 2/1/2017 | - -CURRENT_BatteryAirPumpOn_mA | Battery Current during inflation of sleeve bladder | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryAvgPumpOnStartAscent_mA | Average pump motor current taken at start of ascent | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlntu_mA | battery current measured when Flntu sampled at unspecified time in profile | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlntuParkEnd_mA | battery current measured when Flntu sampled at end of park | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryFlbbParkEnd_mA | battery current measured when Flbb sampled at end of park | | T | | | 22/08/2016 | 22/08/2016 | -CURRENT_BatteryOptics_COUNT | battery current while the optial sensor is on | | T | | | 5/29/2012 | 5/29/2012 | -CURRENT_Battery_mA | battery current measured by the sensors themselves. | | | | | 3/28/2014 | 3/28/2014 | -CURRENT_BatteryInitialAtProfileDepth_mA | Battery Current measured at bottom (park or pressure) at initial pump extension completion | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryMaxPumpOnStartAscent_mA | Maximum pump motor current taken at start of ascent | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryNoLoad_mA | same as: CURRENT_BATTERY_PARK_NOLOAD_mA? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPark_mA | measured during park-park phase and is averaged | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkEnd_mA | "battery current measured at end of park, before descent to profile depth" | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryParkNoLoad_mA | "Battery Current measured at park pressure with no load, Same as BOTTOM battery current (older floats)" | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPistonPumpOn_mA | Battery Current during pumping to ascend | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPumpOn_mA | Battery Current buoyancy pump on | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySampledbyFlntu_mA | Flntu sampled battery current | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySampledbySBE_mA | Sbe sampled battery current - same as CURRENT_BatterySBEPump_mA???? | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySBEParkEnd_mA | battery current measured when the SBE41 sampled at the end of park | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySBEPump_mA | battery current when CTD active | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatterySurfaceAirPumpOn_mA | Battery Current measured at the surface with the air pump running (6 seconds) | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_BatteryPumpLastValueAsAscends_mA | Current measured in the last portion of pumping as the float ascends | | T | | | 5/25/2012 | 5/25/2012 | -CURRENT_MotorAtEndOfAscent_mA | Motor current measured at the end of the ascent phase (pump motor?) | | T | | | 1/5/2012 | 1/5/2012 | -CURRENT_MotorOutToAscent_mA | Motor current measured during the ? ascent phase (pump motor?) | | | | | 1/5/2012 | 1/5/2012 | -CURRENT_MotorStartProfile_amps | Motor current in profile depth | | | | | 1/5/2012 | 1/5/2012 | - -VOLTAGE_Aux_volts | auxiliary voltage (formerly VOLTAGE_OF_AUX(volts)) | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery_volts | battery voltage when battery capacity is unknown | | | | | | | -VOLTAGE_Battery6V_volts | battery voltage of 6v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery7V_volts | battery voltage of 7v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery12V_volts | battery voltage of 12V system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery14V_volts | battery voltage of 14v system | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery18V_volts | battery voltage of 18v system | | T | | | 5/25/2012 | 5/25/2012 | -VOLTAGE_BatteryCPU_volts | "CPU Voltage LSB=0.1 Volts, requires a full description " | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_Battery14VStartDescentToPark_volts | battery voltage of 14V system when float starts descending to park | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery14VStartAscentToSurface_volts | battery voltage of 14V system when float starts ascending to surface | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery7VStartDescentToPark_volts | battery voltage of 7V system when float starts descending to park | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_Battery7VStartAscentToSurface_volts | battery voltage of 7V system when float starts ascending to surface | | | | NINJA_D | 5/19/2014 | 5/19/2014 | -VOLTAGE_BatteryCPUStartProfile_volts | CPU battery voltage at profile depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUStartXmit_volts | "CPU Battery @ start oftransmission after data has been processed LSB=0.1 volts, IDG Var= Vcpu" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUSurface_volts | Surface CPU battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryCPUDepth_volts | CPU battery voltage at (unspecified) depth | | T | | | 5/25/2012 | 5/25/2012 | -VOLTAGE_BatteryDescentToProfile_volts | | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryExternalStartProfile_volts | voltage of the external battery at the profile depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryFlntuParkEnd_volts | battery voltage measured by Flntu at end of park | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryFlbbParkEnd_volts | battery voltage measured by Flbb at end of park | | T | | | 22/08/2016 | 22/08/2016 | -VOLTAGE_BatteryFltnu_volts | Flntu sampled battery voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryOptics_volts | battery voltage of the optical sensor. | | | | | | | -VOLTAGE_Battery_volts | battery voltage measured by the individual sensors | | | | | 3/28/2014 | 3/28/2014 | -VOLTAGE_BatteryInitialAtProfileDepth_volts | measured at initial pump extension completion | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryNoLoad_volts | battery voltage measured with no load | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryParkEnd_volts | battery voltage measured at end of park with no load | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryParkNoLoad_volts | battery voltage during inactive park phase - SAME AS BOTTOM BATTERY VOLTAGE FOR OLDER FLOATS | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPistonPumpOn_volts | buoyancy pump voltage | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryProfileNoLoad_volts | battery voltage jus before profile begins - no load on the batteries | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpAscentEnd_volts | "Pump Battery at end of ascent Voltage LSB=0.1 Volts, - also a diagnostic message " | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpLastValueAsAscends_volts | "pump battery voltage, on last reading as ascending (IDG Var=Vpmp)" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpOn_volts | Pump Battery Voltage LSB=0.1 Volts | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatteryPumpStartProfile_volts | Pump battery voltage (volts) at depth | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEAscent_volts | Voltage measured when ctd switched on sampling during profile ascend phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEParkEnd_volts | battery voltage measured when the SBE41 sampled after the end of park phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySBEPump_volts | battery voltage when CTD active | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySurfaceAirPumpOn_volts | Voltage measured when AIR PUMP is switched on at the surface for extra buoyancy | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGE_BatterySurfaceNoLoad_volts | battery voltage during inactive surface phase | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGEDROP_BatteryStartProfile_volts | "battery voltage drop, pump on at max pressure, starting profile(tenths of volts)" | | T | | | 1/5/2012 | 1/5/2012 | -VOLTAGETIME_IntegratedAirPumpVolume_voltseconds | integrated measure (volts * seconds) of the pumped air volume (VSAP of Apex floats) | Changed units from volt+B640seconds to voltseconds | T | | | 1/5/2012 | 2/18/2015 | -VOLTAGE_AcrossInsulation_mV | Insulation voltage measured between 2 sub-parts of the float. | | | | | 2/16/2016 | 2/16/2016 | -SPEED_FirstGrounding_mm/s | Vertical speed during the first grounding | | | | | 10/9/2014 | 10/9/2014 | - -//BIO-Argo names: | | " can be: CTD, OPTODE, OCR, ECO3, FLNTU, CROVER, SUNA or any other BIO-Argo sensor defined." | | | | | | - -CURRENT_SUNAAPFSupply_mA | SUNA APF Frame Supply Current | | T | | | 9/26/2013 | 9/26/2013 | -FLAG_Status_LOGICAL | "Sensor status - 1= OK, 0=not OK" | | T | | | 9/26/2013 | 9/29/2013 | - -FLAG_SensorBoardStatus_NUMBER | Flag reporting the status of the sensor board. | | | | | 9/26/2013 | 9/29/2013 | - -NUMBER_AscentIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_AscentSamplesDepthZone_COUNT | Number of samples acquired by in the depth zone # during the ascent from the profile depth to the surface. Depth zone number: = 1..5 | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_DescentIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_DescentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_DescentSamplesDepthZone_COUNT | Number of samples acquired by in the depth zone # during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). Depth zone number: = 1..5 | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscentSamples_COUNT | "Number of samples acquired by during the ""ascent to surface"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_InAirSamples_COUNT | "Number of samples acquired by during the ""surface"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_DescentToParkSamples_COUNT | "Number of samples acquired by during the ""surface to parking depth"" phase." | | | | CTS5 | 10/12/2020 | 10/12/2020 | -NUMBER_DescentToProfileSamples_COUNT | "Number of samples acquired by during the ""parking depth to profile depth"" phase." | | | | CTS5 | 12.10.202 | 10/12/2020 | -NUMBER_ParkIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the drift at park depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ParkIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the drift at park depth. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_ProfileDriftIridiumMessages_COUNT | Number of Iridium messages used to transmit data collected during the drift at profile depth. (Drift is added to the name because otehrwise it appears to be ascent data) | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ParkSamples_COUNT | Number of samples acquired by during the drift at parking depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_ProfileDriftSamples_COUNT | Number of samples acquired by during the drift at profile depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_AscendingCTDSamplesInternalCounter_COUNT | total number of slices of the ascending profile after reduction | | NUMBER_AscendingCTDSamplesDepthInternalCounter_COUNT | Ascending profile ctd measurements - Depth internal counter | | 9/26/2013 | 9/29/2013 | -NUMBER_DescendingCTDSamplesInternalCounter_COUNT | total number of slices of the descending profile after reduction | | NUMBER_DescendingCTDSamplesDepthInternalCounter_COUNT | Descending profile cdt measurements - Depth internal counter | | 9/26/2013 | 9/29/2013 | -NUMBER_PumpActionsDuringProfileDrift_COUNT | Number of pump actions during drift at profile depth. | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_PumpActionsToLeaveReleasingSystem_COUNT | Number of pump actions needed to leave the releasing system (float deployed in ASFAR (Autonomous System for Argo float Release) mode) | | | | | 10/18/2015 | 10/18/2015 | -NUMBER_SBEFPCommandTimeouts_COUNT | "Number of timeouts while measuring pressure with the SBE sensor using a ""Fast Pressure"" command." | | | | | 9/26/2013 | 9/29/2013 | -NUMBER_VectorToSensorBoardsDialogErrors_COUNT | Number of dialog errors between vector and sensor boards. | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFErrorCounter_COUNT | "Incremented each time an error is encountered.The APF interface provides a mechanism to access error messages.If the error counter increases between frames, the operator or control system can retrieve the accumulated error message(s)." | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFPowerCycleCounter_COUNT | Incremented each time power is applied to SUNA (it can be used to notice if the SUNA was powered unintentionally between data collection events). | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SUNAAPFSampleCounter_COUNT | "Incremented for each sample the SUNA measures (it can be used to track frames, and recognize if frames were missed)." | | | | | 12/17/2013 | 12/17/2013 | -VOLTAGE_SUNAAPFSupplyVoltage_volts | "Voltage [V] measured inside SUNA via ADC.The voltage available to the SUNA just outside its power regulators.SUNA can operate on 6 to 18 VDC. This voltage allows the operator to monitor supply voltage, and in the case of a drop to makedecisions on the continued operation of the SUNA." | | | | | 12/17/2013 | 12/17/2013 | -CURRENT_SUNAAPFSupplyCurrent_mA | "Current [mA] measured inside SUNA via ADC.The current can be monitored to ascertain that all components are operating. A sudden drop or increase would indicate the failure of a system component." | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_OptodeSensorReset_COUNT | Number of power resets of the DO sensor | | | | | 5/10/2016 | 5/10/2016 | -NUMBER_OptodeAcquisitionsFailed_COUNT | Number of failed acquisitions of the DO sensor | | | | | 5/10/2016 | 5/10/2016 | -NUMBER_SubCycle_NUMBER | | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_InternalCycle_NUMBER | | | | | | 12/17/2013 | 12/17/2013 | -NUMBER_SubCyclesDoneSinceDeployment_COUNT | | | | | | 1/1/2014 | 1/1/2014 | -/////added so we don't have to allow missing ///// -NUMBER_AscentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the ascent from the profile depth to the surface. | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_DescentIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the descent phases (from surface to the parking depth and from the parking depth to the profile depth). | | | | | 10/14/2014 | 10/14/2014 | -NUMBER_ParkIridiumPackets_COUNT | Number of Iridium packets used to transmit data collected during the drift at park depth. | | | | | 10/14/2014 | 10/14/2014 | - -NUMBER_PumpActionsDuringPark1_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark1_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark1_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark1Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark1Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark1_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark2_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark2_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark2_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark2Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark2Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark2_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark3_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark3_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark3_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark3Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark3Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark3_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark4_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark4_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark4_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark4Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark4Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark4_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 - -NUMBER_PumpActionsDuringPark5_COUNT | number of pump actions while at park in multiparking mode #I depth | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringPark5_COUNT | number of valve actions during park with multiparking mode #I phase | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ValveActionsDuringDescentToPark5_COUNT | number of valve actions between the crossing of the gap threshold and the end of descent to park during multiparking mode park#I pressure | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftEntriesInPark5Margin_COUNT | drift at park during multiparking mode #I pressure: number of entries in margin around park #I pressure target - specifically, how many times the float enters the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -NUMBER_ParkDriftExitsFromPark5Margin_COUNT | drift at park druing multiparking mode #I pressure: number of exits from margin around park #I pressure target - specifically, how many times the float exits the band of pressure surrounding the target park #I pressure (generally +/- 30db) | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 -VOLUME_OilVolumeTransferredDuringDescentToPark5_cm^3 | Oil volume transferred from the external bladder during the descent to park with multiparking mode park#I (between the second threshold of the buoyancy reduction phase and the end of the descent to park). This is the oil volume tranferred during the NUMBER_ValveActionsDuringDescentToPark_COUNT valve actions. | needed for the multi-parking Provor CTS5 floats with park phases 1-5 | T | | Provor CTS5 diff --git a/file_checker_spec/argo-tech_names-spec-v3.1.deprecated b/file_checker_spec/argo-tech_names-spec-v3.1.deprecated deleted file mode 100644 index b581c63..0000000 --- a/file_checker_spec/argo-tech_names-spec-v3.1.deprecated +++ /dev/null @@ -1,37 +0,0 @@ -//THE FOLLOWING NAMES ARE ADDED HERE ONLY FOR THOSE DACS WHO HAVE NOT YET CONVERTED T OVERSION 3.1 TRAJ FILES - THEY WILL NOT BE ALLOWED INDEFINITELY IN THE TECH FILES SO PLEASE DISCONTINUE USE HERE AS SOON AS POSSIBLE TO AVOID FUTURE CHAOS! | | | | | | | | - -PRES_ParkGrounded_dbar | Deprecated - PRES during Park phase when float is grounded | MC901 references grounding information | T | Deprecated | | | | -PRES_ParkMean_dbar | Deprecated - mean PRES during the park phase | There are MC codes for this: MC minus 4 or 296 | T | Deprecated | | | | -PRES_ParkMaximum_dbar | Deprecated - maximum PRES during park phase | There are MC codes for this: MC minus 2 or 298 | T | Deprecated | | | | -PRES_ParkMinimum_dbar | Deprecated - minimum PRES during park phase | There are MC codes for this: MC minus 3 or 297 | T | Deprecated | | | | -PRES_ParkStandardDeviation_dbar | Deprecated - standard deviation of PRES during the park phase | This is MC minus 6 or 294 | T | Deprecated | | | | -PRES_WhenMaximumTemperatureAtPark_dbar | Deprecated - pressure where the max TEMP was measured during park phase | This is MC minus 12 or 288 | T | Deprecated | | | | -PRES_WhenMinimumTemperatureAtPark_dbar | Deprecated - pressure where the min TEMP was measured during park phase | This is MC minus 13 or 287 | T | Deprecated | | | | -TEMP_ParkMaximum_degC | Deprecated - TEMP max during park phase | There are MC codes for this: MC minus 2 or 298 | T | Deprecated | | | | -TEMP_ParkMean_degC | Deprecated - mean TEMP during park phase | There are MC codes for this: MC minus 4 or 296 | T | Deprecated | | | | -TEMP_ParkMinimum_degC | Deprecated - TEMP min during park phase | There are MC codes for this: MC minus 3 or 297 | T | Deprecated | | | | -TEMP_ParkStandardDeviation_degC | Deprecated - standard deviation of TEMP during the park phase | This is MC minus 6 or 294 | T | Deprecated | | | | -CLOCK_FirstMessageTime_YYYYMMDDHHMMSS | Deprecated - time when the first message is sent. | spoke with Kanako about this and decided not to include it in traj file for Deep Ninja - it is basically same time as first message received by satellite (MC=702) | T | Deprecated | NINJA_D | 5/19/2014 | 5/19/2014 | -CLOCK_DateGrounded_DDMMYYYY | Deprecated - date the float grounded | MC901 references grounding information | T | Deprecated | | 1/5/2012 | 1/5/2012 | -CLOCK_1stSettlingBeforePark_YYYYMMDDHHMMSS | Deprecated - time when float was settled at the parking depth for the 1st time | MC189 - buoyancy action | T | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_1stSettlingBeforePark_dbar | Deprecated - pressure when float was settled at the parking depth for the 1st time | MC189 - buoyancy action | T | Deprecated | | 1/5/2012 | 1/5/2012 | -CLOCK_2ndSettlingBeforePark_YYYYMMDDHHMMSS | Deprecated - time when float was settled at the parking depth for the 2nd time | MC189 - buoyancy action | T | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_2ndSettlingBeforePark_dbar | Deprecated - pressure when float was settled at the parking depth for the 2nd time | MC189 - buoyancy action | T | Deprecated | | 1/5/2012 | 1/5/2012 | -CLOCK_3rdSettlingBeforePark_YYYYMMDDHHMMSS | Deprecated - time when float was settled at the parking depth for the 3rd time | MC189 - buoyancy action | T | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_3rdSettlingBeforePark_dbar | Deprecated - pressure when float was settled at the parking depth for the 3rd time | MC189 - buoyancy action | T | Deprecated | | 1/5/2012 | 1/5/2012 | -TEMP_LastAscentPumpedRawSample_degC | Deprecated - Last (shallowest) pumped raw temperature sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped) (in in degC). | MC599 | | Deprecated | | | | -PSAL_LastAscentPumpedRawSample_psu | Deprecated - Last (shallowest) pumped raw salinity sample acquired during the ascent from the profile depth to the surface (i.e. just before the cut-off pressure where the pump is stopped) (in PSU). | MC599 | | Deprecated | | | | -PRES_DescentStartToPark_dbar | Deprecated - Pressure taken at the end of piston retraction | JULD_PARK_START and JULD with MC = 250 | T | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_DescentStartToProfile_dbar | Deprecated - Pressure taken at the end of piston retraction | JULD_DEEP_PARK_START and JULD with MC = 450 | T | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_DescentToParkEnd_dbar | Deprecated - pressure when the float reaches park depth but still goes through settling etc so not quite equivalent to ParkStart | JULD_DESCENT_END and JULD with MC=200 | T | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_DescentToParkMaxPressure_dbar | Deprecated - Descent to park - Max pressure | we have an MC for this: MC minus 2 | | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_DescentToParkMinPressure_dbar | Deprecated - Descent to park - Min pressure | we have an MC for this: MC minus 3 | | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_DescentToProfileMaxPressure_dbar | Deprecated - Descent to profile- Max pressure | we have an MC for this: MC minus 2 | | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_DescentToProfileMinPressure_dbar | Deprecated - Descent to profile - Min pressure | we have an MC for this: MC minus 3 | | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_Grounded_dbar | Deprecated - the grounded pressure if the float hit bottom. | MC901 references grounding information | | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_InitialStabilizationDuringDescentToPark_dbar | Deprecated - pressure when first stabilization appears during descent to park (dbar) | use MC 150 | T | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_MaximumDescentToPark_dbar | "Deprecated - max recorded pressure (dbar) during descent, before stabilisation at park pressure" | we have an MC for this: MC minus 2 | | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_MaximumDescentToProfile_dbar | "Deprecated - max recorded pressure during descent, before stabilisation at profile pressure" | we have an MC for this: MC minus 2 | | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_MaximumDuringProfileDrift_dbar | Deprecated - maximum PRES during drifting at profile depth | we have an MC for this: MC minus 2 | | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_MinimumDescentToProfile_dbar | Deprecated - min pressure recorded during descent to profile | we have an MC for this: MC minus 3 | | Deprecated | | 1/5/2012 | 1/5/2012 | -PRES_MinimumDuringProfileDrift_dbar | Deprecated - minimum PRES during drifting at profile depth | we have an MC for this: MC minus 3 | | Deprecated | | 1/5/2012 | 1/5/2012 | diff --git a/file_checker_spec/generic_template_cycle_phase_name b/file_checker_spec/generic_template_cycle_phase_name deleted file mode 100644 index 9bf04fb..0000000 --- a/file_checker_spec/generic_template_cycle_phase_name +++ /dev/null @@ -1,12 +0,0 @@ -// $Revision: 949 $ -// $Date: 2018-07-31 17:33:44 +0000 (Tue, 31 Jul 2018) $ - -//GENERIC TEMPLATE VALUES: - -AscentPhase -BuoyancyReductionPhase -DescentToParkPhase -DescentToProfPhase -ParkDriftPhase -ProfDriftPhase -SurfaceDriftPhase diff --git a/file_checker_spec/generic_template_param b/file_checker_spec/generic_template_param deleted file mode 100644 index 1de45a6..0000000 --- a/file_checker_spec/generic_template_param +++ /dev/null @@ -1,13 +0,0 @@ -// $Revision: 949 $ -// $Date: 2018-07-31 17:33:44 +0000 (Tue, 31 Jul 2018) $ - -//GENERIC TEMPLATE VALUES: - -Cdom -Chla -DownIrr -DownRad -Irradiance -Radiance -UpIrr -UpRad diff --git a/file_checker_spec/generic_template_short_sensor_name b/file_checker_spec/generic_template_short_sensor_name deleted file mode 100644 index 8b06330..0000000 --- a/file_checker_spec/generic_template_short_sensor_name +++ /dev/null @@ -1,19 +0,0 @@ -// $Revision: 949 $ -// $Date: 2018-07-31 17:33:44 +0000 (Tue, 31 Jul 2018) $ - -//GENERIC TEMPLATE VALUES: - -Crover -Ctd -CTD -Cyc -Eco -Flbb -Flntu -Mcoms -Ocr -Optode -Ph -Sfet -Stm -Suna diff --git a/file_checker_spec/measurement_code-specific_codes b/file_checker_spec/measurement_code-specific_codes deleted file mode 100644 index 47c17d5..0000000 --- a/file_checker_spec/measurement_code-specific_codes +++ /dev/null @@ -1,27 +0,0 @@ -// $Revision: 1181 $ -// $Date: 2020-10-23 16:48:02 +0000 (Fri, 23 Oct 2020) $ - -101 | DM Traj file only | This MC is used in the DM Traj file when new cycles have been recovered during DM operations ( the TECH file, where surface pressure measurements usually belong, is not updated during TRAJ DM). | -110 | | Any in-water samples taken as part of a surface sequence. (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence) | -111 | | Any in-air samples taken as part of a surface sequence. (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence) | -203 | | Deepest bin reached during descending profile | -275 | RAFOS | RAFOS positions and times determined during drift | All float types with RAFOS capabilities | RAFOS -301 | | Representative Park found either from measurements taken during drift or from metafile information | -501 | | Down-time end time: end date of the down-time parameter reported by APEX floats | APEX -502 | | Ascent start time directly transmitted by APEX floats | APEX -503 | | Deepest bin reached during ascending profile | -602 | AET | Time of MC=701 minus 10 minutes | -610 | | Any in-water samples taken as part of a surface sequence. (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence) | -611 | | Any in-air samples taken as part of a surface sequence. (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence) | -701 | | Transmission start time directly transmitted by APEX float | APEX -702 | FMT | Earliest time of all messages received by telecommunications system . may or may not have a location fix. Time (JULD_FIRST_MESSAGE) | All Argos floats. Iridium floats that send timing of messages. This includes SBD Iridium floats -703 | | Surface times and locations (if available) during surface drift. Should be listed in chronological order. | All floats -704 | LMT | Latest time of all messages received by telecommunications system . may or may not have a location fix. Time (JULD_LAST_MESSAGE) | All Argos floats. Iridium floats that send timing of messages. This includes SBD Iridium floats. -710 | | Any in-water samples taken as part of a surface sequence. (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence) | -711 | | Any in-air samples taken as part of a surface sequence. (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence) | -810 | | Any in-water samples taken as part of a surface sequence. (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence) | -811 | | Any in-air samples taken as part of a surface sequence. (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence) | -901 | | Grounded flag. Configuration phase | -902 | | Last time before float recovery. For floats that have been recovered, it is important to know when this occurred. This time in the JULD array will be the last time before the float was recovered. Determined by inspection of data | -903 | | Pressure offset used to correct APEX pressure measurements | APEX - diff --git a/file_checker_spec/ref_table-10 b/file_checker_spec/ref_table-10 deleted file mode 100644 index 0edd696..0000000 --- a/file_checker_spec/ref_table-10 +++ /dev/null @@ -1,7 +0,0 @@ -// $Revision: 656 $ -// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ - -ARGOS | Argos transmission system -IRIDIUM | Iridium transmission system -ORBCOMM | Orbcomm transmission system -BEIDOU | diff --git a/file_checker_spec/ref_table-16 b/file_checker_spec/ref_table-16 deleted file mode 100644 index c6ab7b8..0000000 --- a/file_checker_spec/ref_table-16 +++ /dev/null @@ -1,12 +0,0 @@ -Primary sampling: averaged<*> -Primary sampling: discrete<*> -Primary sampling: mixed<*> -Secondary sampling: averaged<*> -Secondary sampling: discrete<*> -Secondary sampling: mixed<*> -Near-surface sampling: averaged<*> -Near-surface sampling: discrete<*> -Near-surface sampling: mixed<*> -Bounce sampling: averaged<*> -Bounce sampling: discrete<*> -Bounce sampling: mixed<*> diff --git a/file_checker_spec/ref_table-19 b/file_checker_spec/ref_table-19 deleted file mode 100644 index ac25e47..0000000 --- a/file_checker_spec/ref_table-19 +++ /dev/null @@ -1,12 +0,0 @@ -// $Revision: 656 $ -// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ - -// Status Flags (JULD_*_STATUS) - -0 | Value is estimated from pre-deployment information found in the metadata -1 | Value is estimated using information not transmitted by the float or by procedures that rely on typical float behavior -2 | Value is transmitted by the float -3 | Value is directly computed from relevant, transmitted float information -4 | Value is determined by satellite -9 | Value is not immediately known, but believe it can be estimated later - diff --git a/file_checker_spec/ref_table-2 b/file_checker_spec/ref_table-2 deleted file mode 100644 index a7866b4..0000000 --- a/file_checker_spec/ref_table-2 +++ /dev/null @@ -1,11 +0,0 @@ -// $Revision: 656 $ -// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ - -0 | No QC was performed -1 | Good data -2 | Probably good data -3 | Bad data that are potentially correctable -4 | Bad data -5 | Value changed -8 | Estimated value -9 | Missing value diff --git a/file_checker_spec/ref_table-20 b/file_checker_spec/ref_table-20 deleted file mode 100644 index cdf43cf..0000000 --- a/file_checker_spec/ref_table-20 +++ /dev/null @@ -1,12 +0,0 @@ -// $Revision: 1225 $ -// $Date: 2021-03-02 20:50:37 +0000 (Tue, 02 Mar 2021) $ -// -// Reference table 20: Grounded Flag - -Y | Yes, the float touched the ground and the programmed free-drift period was affected. If it is uncertain what mission phase the grounding took place, use 'Y'. -P | Yes, the float touched the ground during a part of the mission that did not affect the free-drift period. -B | Yes, the float touched the ground as determined by an external bathymetry database and the programmed free-drift period was affected. If it is uncertain what mission phase the grounding took place, use 'B'. -C | Yes, the float touched the ground as determined by an external bathymetry database during a part of the mission that did not affect the free-drift period. -N | No, the float did not touch the ground -S | Float is known to be drifting at a shallower depth than originally programmed Warning: this is not a "grounded" situation. The 'S' flag should probably be declared obsolete -U | Unknown Warning: U and FillValue " " have a close meaning. The 'U' flag should probably be declared obsolete diff --git a/file_checker_spec/ref_table-22 b/file_checker_spec/ref_table-22 deleted file mode 100644 index f8fad7f..0000000 --- a/file_checker_spec/ref_table-22 +++ /dev/null @@ -1,10 +0,0 @@ -// $Revision: 656 $ -// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ -// -// Reference Table 22: Platform Family - -FLOAT | Profiling float -FLOAT_DEEP | Profiling float that is capable of profiling deeper than 2000dbar -FLOAT_COASTAL | "Coastal float, i.e. ARVOR_C" -POLAR_OCEAN_PROFILING_SYSTEM | "Ice platform that provides meteorological data is paired with a subsurface platform, either a PROVOR or NEMO float tethered along a cable that uses buoyancy to go up and down." -ICE_TETHERED_PROFILER | Surface ice-mounted platform that provides meteorological data and subsurface profiler tethered to a cable that uses a motor to go up and down. diff --git a/file_checker_spec/ref_table-23 b/file_checker_spec/ref_table-23 deleted file mode 100644 index b6b1bf6..0000000 --- a/file_checker_spec/ref_table-23 +++ /dev/null @@ -1,45 +0,0 @@ -// $Revision: 1194 $ -// $Date: 2020-11-13 15:54:33 +0000 (Fri, 13 Nov 2020) $ -//PLATFORM_TYPE | PLATFORM_TYPE_KEY | IXIXIX (1770) | PLATFORM_MAKER | Description | FLOAT_SERIAL_NO SAMPLE - -PALACE | 000 | 831 | WRC | 1st float model by WRC | -APEX | 001 | 845 846 847 877 | WRC/TWR | | -APEX_EM | 005 | 848 | WRC/TWR | Electro-magnetic float (measures velocity and mixing) | -APEX_D | 020 | 849 | TWR | Deep APEX | -PROVOR_MT | 100 | 840 841 842 | METOCEAN | Metocean PROVOR | -PROVOR | 101 | 840 841 842 | MARTEC KANNAD NKE | | -ARVOR | 102 | 844 878 | NKE | NKE ARVOR float | -PROVOR_II | 103 | 839 | NKE MARTEC | dual board PROVOR | -PROVOR_III | 104 | 836 | NKE | dual board PROVOR new generation CTS4 | -PROVOR_III_JUMBO | 108 | 836 | NKE | PROVOR float with additional battery pack | -PROVOR_IV | 105 | 835 | NKE | PROVOR CTS5 | -PROVOR_V | 106 | 834 | NKE | | -PROVOR_V_JUMBO | 107 | 834 | NKE | PROVOR float with additional battery pack | -ARVOR_L | | 844 | | ARVOR with light battery pack | -ARVOR_C | 110 | 837 | NKE | coastal ARVOR | -ARVOR_D | 120 | 838 | NKE | Deep ARVOR | -POPS_PROVOR | 130 | 843 | NKE | Polar Ocean Profiling System with a PROVOR | -SOLO | 200 | 850 851 852 | SIO_IDG | SIO SOLO | -SOLO_BGC | 206 | 884 885 | SIO_IDG | MBARI SOLO | -SOLO_BGC_MRV | 207 | 886 887 | MRV | MRV SOLO | -SOLO_W | 201 | 850 851 852 | WHOI | WHOI SOLO | -SOLO_II | 202 | 853 879 | SIO_IDG | SIO SOLOII | -SOLO_D | 220 | 862 | SIO_IDG | Deep SOLO | -SOLO_D_MRV | 221 | 874 | MRV | | -S2A | 204 or 202 | 854 880 | MRV | MRV SOLOII | -S2X | 203 | 872 | MRV | Designed for US Navy | -ALTO | 205 | 873 875 876 | MRV | Hybrid SOLO2 (ALAMO engine in SOLO2 hull) | -NINJA | 300 | 855 856 857 858 | TSK | | -NINJA_D | 320 | 864 | TSK | Deep NINJA | -NEMO | 400 | 859 860 861 | OPTIMARE | OPTIMARE Float | -POPS_NEMO | 430 | 843 | OPTIMARE | Polar Ocean Profiling System with a NEMO | -NAVIS_EBR | 501 | 869 | SBE | SBE FLoat. serial >=590 | -NAVIS_A | 500 | 863 | SBE | SBE Float | -NOVA | 600 | 865 | METOCEAN | METOCEAN Float | http://www.metocean.com/sites/default/files/files/products/pdfs/metocean_iridium_profiling_floats_1.pdf -HM2000 | 700 | 870 | HSOE | manufactured by HSOE | -HM4000 | 700 | 881 | HSOE | Xuanwu deep 4000 float manufactured by HSOE for LAOSHAN LABORATORY | -XUANWU | 700 | 882 | LaoshanLaboratory | Xuanwu deep 6000 float | -COPEX | 701 | 871 | SOA/NOTC | The COPEX is developed by National Ocean Technology Center (NOTC), SOA, which uses BEIDOU satellite for data transmission and positioning | -ITP | 901 | 901 | WHOI | http://www.whoi.edu/website/itp/overview | -ALAMO | 800 | 866 867 868 | MRV | MRV/WHOI new micro float | -FLOAT | 999 | | | Generic value when unknown | diff --git a/file_checker_spec/ref_table-24 b/file_checker_spec/ref_table-24 deleted file mode 100644 index 89b1c49..0000000 --- a/file_checker_spec/ref_table-24 +++ /dev/null @@ -1,18 +0,0 @@ -// $Revision: 656 $ -// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ -//PLATFORM_MAKER | Description | Comment | update date | update comment - -MARTEC | Martec | | | -METOCEAN | MetOcean | | | -MRV | MRV Systems | | | -NKE | NKE Instrumentation | | | -OPTIMARE | Optimare | | | -SBE | Seabird | | | -SIO_IDG | Scripps Institution of Ocenaography - Instrument Development Group | | | -TSK | Tsurumi-Seiki Co., Ltd. | | | -TWR | Teledyne Webb Research (formerly Webb Research Corporation) | | | -WHOI | Woods Hole Oceanographic Institution | | | -WRC | Webb Research Corporation | | | -HSOE | Qingdao Hisun Ocean Equipment Corporation Limited | | 4/9/2015 | MB for Argo CHINA -LaoshanLaboratory | Laoshan Laboratory | | 2023-06-17 | TC for Argo CHINA -Unknown | Unknown platform maker | The platform maker should not be unknown, the use of this value should be exceptional | 22/06/2015 | request from Wataru Ito diff --git a/file_checker_spec/ref_table-25 b/file_checker_spec/ref_table-25 deleted file mode 100644 index 198f0e5..0000000 --- a/file_checker_spec/ref_table-25 +++ /dev/null @@ -1,32 +0,0 @@ -// $Revision: 1018 $ -// $Date: 2019-01-03 00:21:44 +0000 (Thu, 03 Jan 2019) $ -//SENSOR | Comment | Status - -ACOUSTIC | | -ACOUSTIC_GEOLOCATION | | -CTD_PRES | | -CTD_TEMP | | -CTD_CNDC | | -CTD_TEMP_CNDC | | -EM | | -FLUOROMETER_CDOM | | -FLUOROMETER_CHLA | | -IDO_DOXY | | -OPTODE_DOXY | | -RADIOMETER_DOWN_IRR | | deprecated -RADIOMETER_DOWN_IRR | Radiometer measuring downwelling irradiance at wavelength specified in Table 3 BGC-Argo parameters list | -RADIOMETER_PAR | | -RADIOMETER_UP_RAD | | deprecated -RADIOMETER_UP_RAD | Radiometer measuring upwelling radiance at wavelength specified in Table 3 BGC-Argo parameters list | -SCATTEROMETER_BBP | | deprecated -BACKSCATTERINGMETER_BBP | Backscattering meter measuring backscattering at wavelength specified in Table 3 BGC-Argo parameters list | -SCATTEROMETER_TURBIDITY | | deprecated -BACKSCATTERINGMETER_TURBIDITY | | -SPECTROPHOTOMETER_NITRATE | | -SPECTROPHOTOMETER_BISULFIDE | | -STS_CNDC | | -STS_TEMP | | -TRANSISTOR_PH | | -TRANSMISSOMETER_CP | | deprecated -TRANSMISSOMETER_CP | Transmissometer measuring attenuation at wavelength specified in Table 3 BGC-Argo parameters list | -FLOATCLOCK_MTIME | | diff --git a/file_checker_spec/ref_table-26 b/file_checker_spec/ref_table-26 deleted file mode 100644 index 757b380..0000000 --- a/file_checker_spec/ref_table-26 +++ /dev/null @@ -1,26 +0,0 @@ -// $Revision: 1019 $ -// $Date: 2019-01-03 00:23:05 +0000 (Thu, 03 Jan 2019) $ -//SENSOR_MAKER | | | | - -AANDERAA | | | | -AMETEK | | | | -DRUCK | | | | -FSI | | | | -KISTLER | | | | -PAINE | | | | -SBE | | | | -SEASCAN | | | | -WETLABS | Wetlabs Inc. | | | -MBARI | Monterey Bay Aquarium Research Institute | | | -SATLANTIC | | | | -JAC | JFE Advantech Co., Ltd | | | -APL_UW | University of Washington, Applied Pysics Laboratory | | | -TSK | Tsurumi-Seiki Co., Ltd. | | | -RBR | RBR Ltd | | | -Unknown | Unknown sensor maker | The sensor maker should not be unknown, the use of this value should be exceptional | 22/06/2015 | request from Wataru Ito -KELLER | | | 17/08/2015 | added by M.B. for A.Thresher -MICRON | Micron Instruments | A manufacturing company located in Simi Valley, California (United States of America), specialised in the production and supply of semiconductor strain gages, pressure transducers, temperature sensors and measuring systems. | 2021-02-11 | -SEAPOINT | | | | -TURNER_DESIGN | | | | -QUARTZDYNE | Quartzdyne Inc. | | 26/12/2021 | added by T. Carval for AOML -MENSOR | MENSOR | A manufacturing company located in San Marcos, Texas (United States of America), specialised in precision pressure products. | 22/10/2023 | added by T. Carval for SOLO diff --git a/file_checker_spec/ref_table-27 b/file_checker_spec/ref_table-27 deleted file mode 100644 index c3c373a..0000000 --- a/file_checker_spec/ref_table-27 +++ /dev/null @@ -1,177 +0,0 @@ -// $Revision: 1328 $ -// $Date: 2025-09-23 17:30:00 +0000 (Thu, 23 Sep 2025) $ - -//SENSOR_MODEL | SENSOR_MAKER | COMMENTS | SENSOR | | update date | update comment | parameter status operational/pilot/obsolete - -UNKNOWN | | to use when necessary | UNKNOWN_SENSOR_MODEL | | | - -//Conductivity/temperature sensors | | | | | | -FSI | FSI | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE37 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41_V2.5 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-04-27 | added by t. carval for a. thresher -SBE41_V2.6 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41_V3 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41CP | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41_IDO | SBE | Seabird CTD module with IDO oxygen sensor | CTD_PRES, CTD_TEMP, CTD_CNDC,IDO_DOXY | CTD | 2025-04-28 | added by y. lubac -SBE41CP_IDO | SBE | Seabird CTD module with IDO oxygen sensor | CTD_PRES, CTD_TEMP, CTD_CNDC,IDO_DOXY | CTD | 2025-04-28 | added by y. lubac -SBE41_IDO_V1.0c | SBE | Seabird CTD module with IDO oxygen sensor | CTD_PRES, CTD_TEMP, CTD_CNDC,IDO_DOXY | CTD | 2015-06-02 | added b. m. belbeoch for JAMSTEC. updated CTD_IDO to CTD (10/06 2021) -SBE41_IDO_V2.0 | SBE | Seabird CTD module with IDO oxygen sensor | CTD_PRES, CTD_TEMP, CTD_CNDC,IDO_DOXY | CTD | 2015-06-02 | updated CTD_IDO to CTD (10/06 2021) -SBE41CP_IDO_V2.0b | SBE | Seabird CTD module with IDO oxygen sensor | CTD_PRES, CTD_TEMP, CTD_CNDC,IDO_DOXY | CTD | 2015-04-27 | added by t. carval for a. thresher updated CTD_IDO to CTD (10/06 2021) -SBE41_IDO_V3.0 | SBE | Seabird CTD module with IDO oxygen sensor | CTD_PRES, CTD_TEMP, CTD_CNDC,IDO_DOXY | CTD | 2015-07-23 | added by m. belbeoch for JAMSTEC. updated CTD_IDO to CTD (10/06 2021) -SBE41CP_V1 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41CP_V1.1 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-04-23 | added by t. carval for j. gilson -SBE41CP_V1.2 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41CP_V1.2a | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-04-27 | added by t. carval for a. thresher -SBE41CP_V1.3 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-04-23 | added by t. carval for j. gilson -SBE41CP_V1.3b | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-04-27 | added by t. carval for a. thresher -SBE41CP_V1.4 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-04-23 | added by t. carval for j. gilson -SBE41CP_V1.5 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-04-23 | added by t. carval for j. gilson -SBE41CP_V1.7 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-04-23 | added by t. carval for j. gilson -SBE41CP_V1.8 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-04-23 | added by t. carval for j. gilson -SBE41CP_V1.9 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-04-23 | added by t. carval for j. gilson -SBE41CP_V1.9a | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-09-08 | added by m. belbeoch for JAMSTEC -SBE41CP_V2 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41CP_V3 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41CP_V3.0a | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41CP_V3.0c | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41CP_V4.4.0 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2015-08-17 | added by M.B. for A.Thresher -SBE41CP_V5.0.1 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2016-08-17 | added by M.B. for A.Thresher -SBE41CP_V5.3.0 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2016-01-21 | added by M.B. for A.Thresher -SBE41CP_V5.3.1 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2018-12-18 | added by MB for M. Takahashi. -SBE41CP_V5.3.2 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2019-09-02 | added by MB for F. Akazawa -SBE41CP_V5.3.4 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2023-08-17 | https://github.com/nvs-vocabs/ArgoVocabs/issues/68 -SBE41CP_V5.3.5 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2023-08-17 | https://github.com/nvs-vocabs/ArgoVocabs/issues/68 -SBE41CP_V7.2.3 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2016-04-18 | added by MB for K. Sato -SBE41CP_V7.2.5 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2016-04-18 | added by MB for K. Sato -SBE41N | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41N_V5.3.0 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE41N_V5.3.1 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 28/02/2021 | *** added my Iggy for Fumihiko Akazawa *** Not in Google docs -SBE41N_V5.3.2 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 28/12/2020 | *** added my Iggy for Fumihiko Akazawa *** Not in Google docs -SBE41N_V5.3.3 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 28/12/2020 | *** added my Iggy for Fumihiko Akazawa *** Not in Google docs -SBE41N_V5.3.4 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 28/12/2020 | added by TC for Fumihiko Akazawa -SBE41N_V5.3.5 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 21/10/2022 | added by TC for Kanako Sato -SBE41N_V5.4.0 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -SBE61CP_V5.0.1 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 08/07/2022 | added by T. Carval for Z. Liu -SBE61 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 26/01/2016 | added by M.Scanderbeg for J. Gilson -SBE61_V4.5.2 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 10/6/2015 | added by t. carval for j. gilson -SBE61_V4.5.3 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 10/6/2015 | added by t. carval for j. gilson -SBE61_V5.0.0 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 23/02/2016 | aded by MB for J. Gilson -SBE61_V5.0.1 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 26/01/2016 | added by M.Scanderbeg for J. Gilson -SBE61_V5.0.2 | SBE | Pressure calibration done correctly. | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 11/01/2019 | added by M. Scanderbeg for J. Gilson -SBE61_V5.0.3 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 26/12/2021 | added by T. Carval for C. Schmid -SBE61_V5.0.9 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2021-12-10 | added by T. Carval for C. Schmid -SBE61_V5.0.10 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2023-07-21 | https://github.com/nvs-vocabs/ArgoVocabs/issues/65 -SBE61_V5.0.12 | SBE | | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | 2023-07-21 | https://github.com/nvs-vocabs/ArgoVocabs/issues/65 -CTD_F01 | TSK | TSK model | CTD_PRES, CTD_TEMP, CTD_CNDC | CTD | | -RBR | RBR | RBR model | CTD_PRES, CTD_TEMP, CTD_CNDC, CTD_TEMP_CNDC | CTD | | -RBRoem_V1.16 | RBR | RBR model | CTD_PRES, CTD_TEMP, CTD_CNDC | | | deprecated -RBR_ARGO | RBR | | CTD_PRES, CTD_TEMP, CTD_CNDC, CTD_TEMP_CNDC | CTD | | added by MB 15/07/2020 completed by VT 28/07/2020 -RBR_ARGO3 | RBR | | CTD_PRES, CTD_TEMP, CTD_CNDC, CTD_TEMP_CNDC | CTD | | added by MB 15/07/2020 completed by VT 28/07/2020 -RBR_ARGO3_DEEP4K | RBR | | CTD_PRES, CTD_TEMP, CTD_CNDC, CTD_TEMP_CNDC | CTD | | added by MB 15/07/2020 completed by VT 28/07/2020 -RBR_ARGO3_DEEP6K | RBR | | CTD_PRES, CTD_TEMP, CTD_CNDC, CTD_TEMP_CNDC | CTD | | added by MB 15/07/2020 completed by VT 28/07/2020 -RBR_CTD | RBR | | CTD_PRES, CTD_TEMP, CTD_CNDC, CTD_TEMP_CNDC | CTD | 2025-09-23 | added by ylubac 23/09/2025 https://github.com/OneArgo/ArgoVocabs/issues/157 - -//Oxygen sensors | | | | | | -RBR_CODA_T_ODO | RBR | | OPTODE_DOXY | OPTODE | | added by VT 28/07/2020 -SBE43_IDO | SBE | Seabird Electrochemical Dissolved Oxygen IDO sensor (volt output) | IDO_DOXY | IDO | | -SBE43I | SBE | configuration option | IDO_DOXY | IDO | | -SBE43F_IDO | SBE | Seabird Electrochemical Dissolved Oxygen IDO sensor (frequency output) | IDO_DOXY | IDO | | -SBE63_OPTODE | SBE | Seabird Optical Dissolved Oxygen Sensor | OPTODE_DOXY | OPTODE | | -SBE83_OPTODE | SBE | Seabird Optical Dissolved Oxygen Sensor | OPTODE_DOXY | OPTODE | 2023-10-24 | https://github.com/nvs-vocabs/R27/issues/15 -//** following sensor is deprecated but not marked as such in the table -AANDERAA_OPTODE | AANDERAA | | OPTODE_DOXY | OPTODE | | deprecated -AANDERAA_OPTODE_3830 | AANDERAA | | OPTODE_DOXY | OPTODE | | -AANDERAA_OPTODE_3835 | AANDERAA | | OPTODE_DOXY | OPTODE | | -AANDERAA_OPTODE_3930 | AANDERAA | | OPTODE_DOXY | OPTODE | | -AANDERAA_OPTODE_4330 | AANDERAA | | OPTODE_DOXY | OPTODE | | -AANDERAA_OPTODE_4330F | AANDERAA | | OPTODE_DOXY | OPTODE | | -AANDERAA_OPTODE_4831 | AANDERAA | | OPTODE_DOXY | OPTODE | | -AANDERAA_OPTODE_4831F | AANDERAA | | OPTODE_DOXY | OPTODE | | -ARO_FT | JAC | JAC RINKO | OPTODE_DOXY | OPTODE | | added by MB 13/02/2018 -AROD_FT | JAC | deep housing | OPTODE_DOXY | OPTODE | | added by MB 13/02/2019 - -//Pressure sensors | | | | | | -RBR_PRES | RBR | | CTD_PRES | PRES | | corrected from RBR_PRESA into RBR_PRES_A 2021-06-07 -RBR_PRES_A | RBR | | CTD_PRES | PRES | | -DRUCK_2900PSIA | DRUCK | | CTD_PRES | PRES | | -DRUCK | DRUCK | | CTD_PRES | PRES | | -DRUCK_10153PSIA | DRUCK | | CTD_PRES | PRES | | add by MB 05/10/2016 -PAINE | PAINE | | CTD_PRES | PRES | | -PAINE_1500PSIA | PAINE | | CTD_PRES | PRES | | -PAINE_1600PSIA | PAINE | | CTD_PRES | PRES | | -PAINE_2000PSIA | PAINE | | CTD_PRES | PRES | | -PAINE_2900PSIA | PAINE | | CTD_PRES | PRES | | -PAINE_3000PSIA | PAINE | | CTD_PRES | PRES | | -AMETEK | AMETEK | | CTD_PRES | PRES | | -AMETEK_3000PSIA | AMETEK | | CTD_PRES | | | add by MB 05/10/2016 -KISTLER | KISTLER | | CTD_PRES | PRES | | -KISTLER_2900PSIA | KISTLER | | CTD_PRES | PRES | | -KISTLER_10153PSIA | KISTLER | | CTD_PRES | PRES | 10/6/2015 | added by t. carval for j. gilson -KELLER_PA8 | KELLER | | CTD_PRES | PRES | 17/08/2015 | added by M.B. for A.Thresher -SEASCAN_SSTD | SEASCAN | | CTD_PRES | PRES | 4/9/2015 | added by M.B for AOML -MP40_C_2000_G | Micron Instruments MP40C-2000G pressure transducer | A flush mountable pressure transducer MP40 model, configured to performance specification 'C' and header option 'G' (gage), depth-rated to 2000 psi. The instrument was manufactured by Micron Instruments (also operating as Piezo-Metrics). | CTD_PRES | PRES | 11/5/2016 | added by M.B for AOML -DSB301-10-C85 | QUARTZDYNE | Deep SOLO with two pressure sensors | CTD_PRES | PRES | 06/04/2021 | added by M. Scanderbeg for J. Gilson, 20211226 T. Carval remove quartzdyne from name -MENSOR | MENSOR | Deep SOLO with two pressure sensors | CTD_PRES | PRES | 06/04/2021 | added by M. Scanderbeg for J. Gilson - -//Near Surface conductivity and temperature sensors | | | | | | -SBE_STS | SBE | SBE Near Surface Conductivity and Temperature Module | STS_CNDC,STS_TEMP | STS | | - -//Biogeochemical sensors | | * Note that some biogeochemical sensors have different configurations, i.e. they are either in the pumped stream or not in the pumped stream. Sensor readings from those in the pumped vs unpumped stream can be very different. Some manufacturers do not distinguish this in the sensor model name. In order to capture this information there is a configuration parameter that specifies this, i.e. CONFIG_SensorInPumpedStream_LOGICAL, (Yes =1, No = 0). For the relevant sensors this configuration parameter should be filled in the metadata file for the launch configuration settings. | | | | - -//Spectrophotometers | | | | | | -SUNA | SBE SATLANTIC | UV absorption to derive nitrate and bisulfide (MBARI) | SPECTROPHOTOMETER_NITRATE, SPECTROPHOTOMETER_BISULFIDE | SUNA | | -SUNA_V2 | SBE SATLANTIC | UV absorption to derive nitrate and bisulfide (SATLANTIC) | SPECTROPHOTOMETER_NITRATE, SPECTROPHOTOMETER_BISULFIDE | SUNA | | -ISUS | MBARI | Nitrate (MBARI) | SPECTROPHOTOMETER_NITRATE | ISUS | | -ISUS_V3 | SATLANTIC | Nitrate (SATLANTIC) | SPECTROPHOTOMETER_NITRATE | ISUS | | -OPUS_DS | TRIOS | UV absorption to derive nitrate and bisulfide (TRIOS) | SPECTROPHOTOMETER_NITRATE, SPECTROPHOTOMETER_BISULFIDE | OPUS | 17/11/2020 | added by t. carval for h. bittig, pilot stage to be validated by BGC-Argo on https://github.com/nvs-vocabs/ArgoVocabs/issues/1 - -//Transmissometers | | | | | | -C_ROVER | WETLABS | Transmissometer (WETLABS) | TRANSMISSOMETER_CP | CROVER | | - -//pH Sensors | | | | | | -DURA | MBARI | pH (MBARI) | TRANSISTOR_PH | DURAFET | | -GDF | MBARI | New pH sensor design : similar root components (DURA), same sensor output and processing chain | TRANSISTOR_PH | DURAFET | 07/12/2022 | added by t. carval for t. maurer -SEAFET | SBE | pH (SEABIRD) | TRANSISTOR_PH | DURAFET | | updated from DURAFET on 10/06/2021 - -//Radiometers | | | | | | -OCR504_ICSW | SBE | Multispectral radiometer 4 channels with cosine detector to measure irradiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_DOWN_IRR, RADIOMETER_PAR | OCR | 23/12/2021 | added by t. carval for c. schmid https://github.com/nvs-vocabs/R27/issues/11 -OCR504_R10W | SBE | Multispectral radiometer 4 channels with a 10° half-angle field of view to measure radiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_UP_RAD | OCR | 27/12/2021 | added by t. carval for c. schmid https://github.com/nvs-vocabs/R27/issues/11 -OCR507_ICSW | SBE | Multispectral radiometer 7 channels with cosine detector to measure irradiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_DOWN_IRR, RADIOMETER_PAR | OCR | 27/12/2021 | deprecated added by t. carval for c. schmid https://github.com/nvs-vocabs/R27/issues/11 -OCR507_R10W | SBE | Multispectral radiometer 7 channels with a 10° half-angle field of view to measure radiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_UP_RAD | OCR | 27/12/2021 | deprecated added by t. carval for c. schmid https://github.com/nvs-vocabs/R27/issues/11 -OCR507_ICSWR10W | SBE | Multispectral radiometer 7 channels combination of cosine detector to measure irradiance and a 10° half-angle field of view to measure radiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_DOWN_IRR , RADIOMETER_PAR, RADIOMETER_UP_RAD | OCR | 27/12/2021 | deprecated added by t. carval for c. schmid https://github.com/nvs-vocabs/R27/issues/11 -SATLANTIC_OCR504_ICSW | SATLANTIC | Multispectral radiometer 4 channels (SATLANTIC) with cosine detector to measure irradiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_DOWN_IRR, RADIOMETER_PAR | OCR | | -SATLANTIC_OCR504_R10W | SATLANTIC | Multispectral radiometer 4 channels (SATLANTIC) with a 10° half-angle field of view to measure radiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_UP_RAD | | | -SATLANTIC_OCR507_ICSW | SATLANTIC | Multispectral radiometer 7 channels (SATLANTIC) with cosine detector to measure irradiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_DOWN_IRR, RADIOMETER_PAR | OCR | | deprecated -SATLANTIC_OCR507_R10W | SATLANTIC | Multispectral radiometer 7 channels (SATLANTIC) with a 10° half-angle field of view to measure radiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_UP_RAD | | | deprecated -SATLANTIC_OCR507_ICSWR10W | SATLANTIC | Multispectral radiometer 7 channels (SATLANTIC) combination of cosine detector to measure irradiance and a 10° half-angle field of view to measure radiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_DOWN_IRR , RADIOMETER_PAR, RADIOMETER_UP_RAD | | | deprecated -SATLANTIC_PAR | SATLANTIC | | RADIOMETER_PAR | | | -RAMSES_ACC | TRIOS | Hyperspectral radiometer 256 channels (TRIOS) with cosine detector to measure irradiance in water (at wavelength specified in Table 3 BGC-Argo parameters list) | RADIOMETER_DOWN_IRR, RADIOMETER_PAR | RAMSES | 17/11/2020 | added by t. carval for h. bittig, pilot stage to be validated by BGC-Argo on https://github.com/nvs-vocabs/ArgoVocabs/issues/1 - -//Backscatteringmeters and Fluorometers combination | | | | | | -ECO_BB | WETLABS | Wetlabs Eco optical sensor packages with one backscattering meter (at wavelength specified in Table 3 BGC-Argo parameters list) | BACKSCATTERINGMETER_BBP | ECO | 11/5/2016 | deprecated added by MB. validated by BioGCArgo -ECO_FL | WETLABS | Wetlabs Eco optical sensor packages with one fluorometer (type specified in SENSOR) | FLUOROMETER_CHLA | ECO | 11/5/2016 | added by MB. validated by BioGCArgo -ECO_NTU | WETLABS | Wetlabs Eco optical sensor packages with one backscattering meter measuring turbidity | BACKSCATTERINGMETER_TURBIDITY | ECO | 11/5/2016 | added by MB. validated by BioGCArgo -ECO_FLBB | WETLABS | Wetlabs Eco optical sensor packages with one fluorometer (type specified in SENSOR) and one backscattering meter (at wavelength specified in Table 3 BGC-Argo parameters list) | FLUOROMETER_CHLA, BACKSCATTERINGMETER_BBP | ECO | 11/5/2016 | added by MB. validated by BioGCArgo -ECO_FLBB_AP2 | WETLABS | Wetlabs Eco optical sensor packages with one fluorometer (type specified in SENSOR) and one backscattering meter (wavelength specified in SENSOR) mounted on an Apex float | FLUOROMETER_CHLA, BACKSCATTERINGMETER_BBP | ECO | | -ECO_FLBBFL_AP2 | WETLABS | A three-channel optical sensor fitted with two single-wavelength chlorophyll fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and chlorophyll-a fluorescence at 435 nm (excitation) / 695 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, manufactured by Sea-Bird Scientific. The sensor is fitted on an APEX float.| FLUOROMETER_CHLA,FLUOROMETER_CHLA435, BACKSCATTERINGMETER_BBP | ECO | 2023-10-03 | added by added by TC and validated by BGC-Argo -ECO_FLBB_2K | WETLABS | Wetlabs Eco optical sensor packages with one fluorometer (type specified in SENSOR) and one backscattering meter (at wavelength specified in Table 3 BGC-Argo parameters list) certified for applications down to 2000m | FLUOROMETER_CHLA, BACKSCATTERINGMETER_BBP | ECO | | -ECO_FLBBCD_AP2 | WETLABS | Wetlabs Eco optical sensor packages with one fluorometer (type specified in SENSOR), one CDOM fluorescence channel, and one backscattering meter (wavelength specified in SENSOR) mounted on an Apex float | FLUOROMETER_CHLA,FLUOROMETER_CDOM, BACKSCATTERINGMETER_BBP | ECO | 30/01/2019 | added by MB. validated by BioGCArgo -ECO_FLNTU | WETLABS | Wetlabs Eco optical sensor packages with one fluorometer (type specified in SENSOR) and one backscattering meter measuring turbidity | FLUOROMETER_CHLA, BACKSCATTERINGMETER_TURBIDITY | ECO | 11/5/2016 | added by MB. validated by BioGCArgo -ECO_BB2 | WETLABS | Wetlabs Eco optical sensor packages with two backscatteringmeters (at wavelength specified in Table 3 BGC-Argo parameters list) | BACKSCATTERINGMETER_BBP | ECO | 11/5/2016 | deprecated - added by MB. validated by BioGCArgo -ECO_FLBBCD | WETLABS | Wetlabs Eco optical sensor packages with two fluorometers (type specified in SENSOR) and one backscatteringmeter (at wavelength specified in Table 3 BGC-Argo parameters list) | FLUOROMETER_CHLA,FLUOROMETER_CDOM, BACKSCATTERINGMETER_BBP | ECO | 11/5/2016 | added by MB. validated by BioGCArgo -ECO_FLBB2 | WETLABS | Wetlabs Eco optical sensor packages with one fluorometer (type specified in SENSOR) and two backscatteringmeters (at wavelength specified in Table 3 BGC-Argo parameters list) | FLUOROMETER_CHLA,BACKSCATTERINGMETER_BBP | ECO | 11/5/2016 | added by MB. validated by BioGCArgo -ECO_FLBBFL | SBE | A three-channel optical sensor fitted with two single-wavelength chlorophyll fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and chlorophyll-a fluorescence at 435 nm (excitation) / 695 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, manufactured by Sea-Bird Scientific. | FLUOROMETER_CHLA,FLUOROMETER_CHLA435, BACKSCATTERINGMETER_BBP | ECO | 2022-11-21 | added by added by TC and validated by BGC-Argo -ECO_BB3 | WETLABS | Wetlabs Eco optical sensor packages with 3 backscatteringmeters (at wavelength specified in Table 3 BGC-Argo parameters list) | BACKSCATTERINGMETER_BBP | ECO | 11/5/2016 | added by MB. validated by BioGCArgo -MCOMS_FLBBCD | WETLABS | Wetlabs MCOMS optical sensor packages with two fluorometers CHLA, CDOM and one backscatteringmeter (at wavelength specified in Table 3 BGC-Argo parameters list) | FLUOROMETER_CHLA,FLUOROMETER_CDOM,BACKSCATTERINGMETER_BBP | MCOMS | | -MCOMS_FLBB2 | WETLABS | Wetlabs MCOMS optical sensor packages with one fluorometer CHLA and two backscatteringmeters (wavelengths specified in SENSOR) | FLUOROMETER_CHLA, BACKSCATTERINGMETER_BBP | MCOMS | | -CYCLOPS_7_FLUOROMETER | TURNER_DESIGN | Turner designs Optical sensor | FLUOROMETER_CHLA, BACKSCATTERINGMETER_TURBIDITY | CYC | 11/5/2016 | added by MB. validated by BioGCArgo -SEAPOINT_TURBIDITY_METER | SEAPOINT | Seapoint turbidity meter | BACKSCATTERINGMETER_TURBIDITY | STM | 11/5/2016 | added by MB. validated by BioGCArgo - -//Other sensors | | | | | | -RAFOS | | Receiver mounted on some floats for geopositioning under ice using RAFOS sound sources in the array in the Weddell Sea (Location derivation is done in Delayed Mode for under ice floats equipped with RAFOS receivers). | ACOUSTIC_GEOLOCATION | RAFOS | | -PAL_UW | APL_UW | UW Passive acoustic listener | ACOUSTIC | PAL | | -EM | | Electromagnetic sensor package to measure velocity | EM | EM | | -FLOATCLOCK | | | FLOATCLOCK_MTIME | | | - diff --git a/file_checker_spec/ref_table-29.manufacturer b/file_checker_spec/ref_table-29.manufacturer deleted file mode 100644 index 35739ff..0000000 --- a/file_checker_spec/ref_table-29.manufacturer +++ /dev/null @@ -1,7 +0,0 @@ -// $Revision: 1225 $ -// $Date: 2021-03-02 20:50:37 +0000 (Tue, 02 Mar 2021) $ - -// -ELECTROCHEM -TADIRAN -SAFT diff --git a/file_checker_spec/ref_table-29.type b/file_checker_spec/ref_table-29.type deleted file mode 100644 index 8063a06..0000000 --- a/file_checker_spec/ref_table-29.type +++ /dev/null @@ -1,7 +0,0 @@ -// $Revision: 1225 $ -// $Date: 2021-03-02 20:50:37 +0000 (Tue, 02 Mar 2021) $ - -// -Alkaline -Lithium -Hybrid diff --git a/file_checker_spec/ref_table-2a b/file_checker_spec/ref_table-2a deleted file mode 100644 index cbb5c97..0000000 --- a/file_checker_spec/ref_table-2a +++ /dev/null @@ -1,10 +0,0 @@ -// $Revision: 656 $ -// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ - - | No QC was performed -A | N = 100%; All levels have good data -B | 75% <= N < 100% -C | 50% <= N < 75% -D | 25% <= N < 50% -E | 0% < N < 25% -F | No levels have good data diff --git a/file_checker_spec/ref_table-30.style b/file_checker_spec/ref_table-30.style deleted file mode 100644 index 4b7e837..0000000 --- a/file_checker_spec/ref_table-30.style +++ /dev/null @@ -1,7 +0,0 @@ -// $Revision: 1225 $ -// $Date: 2021-03-02 20:50:37 +0000 (Tue, 02 Mar 2021) $ - -// -C -D -DD diff --git a/file_checker_spec/ref_table-30.type b/file_checker_spec/ref_table-30.type deleted file mode 100644 index 1766650..0000000 --- a/file_checker_spec/ref_table-30.type +++ /dev/null @@ -1,7 +0,0 @@ -// $Revision: 1225 $ -// $Date: 2021-03-02 20:50:37 +0000 (Tue, 02 Mar 2021) $ - -// -Alk -Li -Hyb diff --git a/file_checker_spec/ref_table-41 b/file_checker_spec/ref_table-41 deleted file mode 100644 index 2046a8e..0000000 --- a/file_checker_spec/ref_table-41 +++ /dev/null @@ -1,142 +0,0 @@ -// $Revision: 0002 $ -// $Date: 2025-23-09 -//CODNAM - -Argo ARGENTINA -Argo AUSTRALIA -Argo eq. AUSTRALIA -Argo AWI -Argo BGC - AOML -Argo BRAZIL -Argo BSH -Argo CANADA -Argo CANADA Dalhousie University -Argo eq. CANADA -Argo CANADA ONC -Argo CHILE -Argo CHINA -Argo COLOMBIA -Argo COSTA RICA -Argo Deep, CHINA -Argo DENMARK -Argo ECUADOR -Argo eq. AOML -Argo eq. AWI -Argo eq. BSH -Argo eq. CHINA -Argo eq. ESP-OMZ -Argo eq. FERHRI -Argo eq. FSU -Argo eq. HNFRI -Argo eq. IFM -Argo eq. IFM2 -Argo eq. IRELAND -Argo eq. JAMSTEC -Argo eq. JMA -Argo eq. NAVOCEANO -Argo eq. NDBC -Argo eq. NIPR -Argo eq. NRIFS -Argo eq. OIST -Argo eq. ORI -Argo eq. PMEL -Argo eq. SAGE -Argo eq. TNFRI -Argo eq. TSK -Argo eq. TU -Argo eq. UC -Argo eq. UH -Argo eq. UHH -Argo eq. UM-OSU -Argo eq. VOCALS -Argo FINLAND -Argo GABON -Argo GERMANY -Argo GERMANY 2025 -Argo GO-BGC, SIO -Argo GO-BGC, UW -Argo GO-BGC, WHOI -Argo eq. GOM-BOEM -Argo Greenland Ocean Observations -Argo eq. HU -Argo IFM-GEOMAR -Argo INDIA -Argo INDONESIA -Argo IRELAND -Argo ITALY -Argo JAMSTEC -Argo JMA -Argo KENYA -Argo KIOST -Argo LEBANON -Argo MAURITIUS -Argo MEXICO-US -Argo MEXICO -Argo MOROCCO -Argo NETHERLANDS -Argo NEW ZEALAND -Argo NIMS/KMA -Argo NORWAY -Argo PERU -Argo PMEL -Argo POLAND -Argo PORTUGAL -Argo ROMANIA -Argo RUSSIA -Argo SAUDI ARABIA -Argo SIO -Argo eq. SIO (ASIRI) -Argo eq. SIO (BGCSOLONOPP) -Argo eq. SIO (OKMC) -Argo eq. SIO (SBE61NOPP) -Argo SOUTH AFRICA -Argo SPAIN -Argo SRI LANKA -Argo TWR Engineering -Argo UK -Argo UK Bio -Argo eq. UK -Argo UW -Argo eq. UW, APL -Argo eq. UW -Argo UW, MBARI -Argo eq. UW (SPURS) -Argo eq. UW (TPOS) -Argo eq. UW (UA) -Argo WHOI -Argo eq. WHOI -Argo eq. WHOI (IR) -Argo eq. WHOI (LOOP CURRENT) -Argo eq. WHOI, MRV -Argo eq. WHOI (SODA) -AtlantOS H2020 -Argo Bio UMaine -Argo Bulgaria -DEKOSIM -E-AIMS -Euro-Argo -EuroSea Argo -Gyroscope -LOV_ATLANTOS -MEDARGO -MERSEA -MOCCA-EU -MOCCA-GER -MOCCA-IT -MOCCA-NETH -MOCCA-POL -NAOS-Canada -Argo GREECE -Argo UW (SOCCOM) -Argo BRAZIL Navy -Argo eq. SIO (ARCTIC SOLO) -Euro-Argo (RISE) -Meridian Goodhope -Argo CHINA, SOA -Coriolis (CANOA) -Argo UKRAINE -Argo SWEDEN -Argo FRANCE -Argo eq. FRANCE -ITINERIS -Argo AOML \ No newline at end of file diff --git a/file_checker_spec/ref_table-5 b/file_checker_spec/ref_table-5 deleted file mode 100644 index 2a112f0..0000000 --- a/file_checker_spec/ref_table-5 +++ /dev/null @@ -1,20 +0,0 @@ -// $Revision: 1225 $ -// $Date: 2021-03-02 20:50:37 +0000 (Tue, 02 Mar 2021) $ -// -// Reference table 5: location classes - -0 | Argos accuracy estimation over 1500m radius -1 | Argos accuracy estimation better than 1500m radius -2 | Argos accuracy estimation better than 500 m radius -3 | Argos accuracy estimation better than 250 m radius -A | Argos no accuracy estimation (3 messages received) -B | Argos no accuracy estimation (1 or 2 messages received) -Z | Argos invalid location -G | GPS positioning accuracy accuracy (not better than 10 m) -I | Iridium accuracy (not better than 5 km) -D | Beidou accuracy (not better than 10 m) -E | GLONASS accuracy (not better than 10 m) -F | GALILEO accuracy (not better than 10 m) -H | GNSS accuracy (not better than 10 m) -R | RAFOS accuracy -U | Estimated position. Accuracy not sent back by the float. An estimated accuracy may be in AXES_ERROR_ELLIPSE_ diff --git a/file_checker_spec/ref_table-6 b/file_checker_spec/ref_table-6 deleted file mode 100644 index 04603c6..0000000 --- a/file_checker_spec/ref_table-6 +++ /dev/null @@ -1,11 +0,0 @@ -// $Revision: 656 $ -// $Date: 2017-04-24 16:47:02 +0000 (Mon, 24 Apr 2017) $ - -0A | Data pass through a communications system and arrive at a processing centre. The data resolution is the highest permitted by the technical constraints of the floats and communications system. -1A | The national centre assembles all of the raw information into a complete located in space and time. -2B | The national centre passes the data through automated QC procedures and prepares the data for distribution on the GTS, to global servers and to PIs. -2B+ | "Real-time data are received at global data centres that apply QC including visual inspection of the data. These are then distributed to users in near real-time -2C | Data are reviewed by PIs and returned to processing centres. The processing centres forward the data to the global Argo servers. -2C+ | Scientists accept data from various sources, combine them as they see fit with other data and generate a product. Results of the scientific analysis may be returned to regional centres or global servers. Incorporation of these results improves the quality of the data. -3B | Scientists working as part of GODAE generate fields of gridded products delivered in near real-time for distribution from the global servers. Generally, these products mostly will be based on data having passed through automated QC procedures. -3C | Scientists working as part of GODAE generate fields of gridded products delivered with some time delay for distribution from the global servers. Generally, these products mostly will be based on data having passed through manual or more sophisticated QC procedures than employed on the real-time data. diff --git a/file_checker_spec/ref_table-8 b/file_checker_spec/ref_table-8 deleted file mode 100644 index d227991..0000000 --- a/file_checker_spec/ref_table-8 +++ /dev/null @@ -1,64 +0,0 @@ -// $Revision: 1156 $ -// $Date: 2020-10-20 20:57:52 +0000 (Tue, 20 Oct 2020) $ - -// WMO Instrument Type - -831 | P-Alace float -834 | PROVOR V SBE -835 | PROVOR IV -836 | PROVOR III -837 | Arvor-C float -838 | Arvor-D float -839 | Provor-II float -840 | Provor, no conductivity -841 | Provor, Seabird conductivity sensor -842 | Provor, FSI conductivity sensor -843 | POPS Ice Buoy/Float -844 | Arvor, Seabird conductivity sensor -845 | Webb Research, no conductivity -846 | Webb Research, Seabird sensor -847 | Webb Research, FSI sensor -848 | Apex-EM float -849 | Apex-D deep float -850 | Solo, no conductivity -851 | Solo, Seabird conductivity sensor -852 | Solo, FSI conductivity sensor -853 | Solo2, Seabird conductivity sensor -854 | S2A float -855 | Ninja, no conductivity sensor -856 | Ninja, SBE conductivity sensor -857 | Ninja, FSI conductivity sensor -858 | Ninja, TSK conductivity sensor -859 | Profiling Float, NEMO, no conductivity -860 | Profiling Float, NEMO, SBE conductivity sensor -861 | Profiling Float, NEMO, FSI conductivity sensor -862 | Solo-D deep float -863 | Navis-A Float -864 | Ninja-D deep float -865 | Nova float -866 | ALAMO -867 | ALAMO RBR -868 | ALAMO SBE -869 | DOVA -870 | NAMI -871 | HM2000 -872 | S2X -873 | ALTO -874 | SOLO_D_MRV -875 | ALTO RBR -876 | ALTO SBE -877 | APEX RBR -878 | ARVOR RBR -879 | SOLO_II RBR -880 | S2A RBR -881 | HM4000 -882 | XUANWU -883 | APEX_D, RBR -884 | SOLO_BGC, SBE -885 | SOLO_BGC, RBR -886 | SOLO_BGC_MRV, SBE -887 | SOLO_BGC_MRV, RBR -888 | PROVOR_V - Jumbo, SBE -889 | PROVOR_V - Jumbo, RBR -890 | PROVOR_III - Jumbo, SBE -891 | PROVOR_III - Jumbo, RBR \ No newline at end of file diff --git a/file_checker_spec/ref_table-9 b/file_checker_spec/ref_table-9 deleted file mode 100644 index 4ad7ecb..0000000 --- a/file_checker_spec/ref_table-9 +++ /dev/null @@ -1,15 +0,0 @@ -// $Revision: 1156 $ -// $Date: 2020-10-20 20:57:52 +0000 (Tue, 20 Oct 2020) $ -//POSITIONING_SYSTEM - -ARGOS | ARGOS positioning system -GPS | GPS positioning system -RAFOS | RAFOS positioning system -IRIDIUM | Iridium positioning system -BEIDOU | Beidou navigation satellite system -GLONASS | GLONASS navigation satellite system -GALILEO | Galileo navigation satellite system -GNSS | Global Navigation Satellite System -NONE | For profile file only: if an estimated position is based on two or more positioning systems, or if the estimation does not rely on information from positioning systems - - diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 0000000..35203b4 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,6 @@ +sonar.projectBaseDir = /builds/amrit/development/format-checker/file_checker_exec +sonar.sources=src/main/java +sonar.tests=src/test/java +sonar.language=java +sonar.java.binaries=target/classes +sonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml \ No newline at end of file