diff --git a/.secrets.baseline b/.secrets.baseline index c4f0be865..6b5adfe55 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -125,9 +125,9 @@ { "path": "detect_secrets.filters.regex.should_exclude_file", "pattern": [ - "\\.secrets..*", "\\.git.*", "\\.pre-commit-config\\.yaml", + "\\.secrets..*", "target" ] } @@ -227,7 +227,7 @@ "filename": "src/site/markdown/operate/index.md", "hashed_secret": "3a6d7aa49a8e4a2fe32a5cd0e53da9cb96bd8d29", "is_verified": false, - "line_number": 968, + "line_number": 991, "is_secret": false } ], @@ -273,7 +273,7 @@ "filename": "src/site/xdoc/operate/errors.xml.vm", "hashed_secret": "4fb813c304003b3813b35a85f05b7cb0c3994cc1", "is_verified": false, - "line_number": 173, + "line_number": 179, "is_secret": false } ], @@ -388,17 +388,7 @@ "line_number": 76, "is_secret": false } - ], - "src/test/resources/riut/auth.txt": [ - { - "type": "Secret Keyword", - "filename": "src/test/resources/riut/auth.txt", - "hashed_secret": "d033e22ae348aeb5660fc2140aec35850c4da997", - "is_verified": false, - "line_number": 3, - "is_secret": false - } ] }, - "generated_at": "2024-05-22T15:27:52Z" + "generated_at": "2024-11-01T18:54:24Z" } diff --git a/pom.xml b/pom.xml index e300d5879..f77bdcdff 100644 --- a/pom.xml +++ b/pom.xml @@ -367,19 +367,51 @@ 5.4.1 - org.opensearch.client - opensearch-rest-client - 2.16.0 + org.mp4parser + isoparser + 1.9.56 + + + + gov.nasa.pds + registry-common + 2.1.0-SNAPSHOT + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.1 + + + com.sun.xml.bind + jaxb-impl + 4.0.4 + + + jakarta.activation + jakarta.activation-api + 2.1.2 + + + + org.apache.httpcomponents.client5 + httpclient5 + 5.3.1 org.opensearch.client - opensearch-rest-high-level-client - 2.5.0 + opensearch-java + 2.13.0 - org.mp4parser - isoparser - 1.9.56 + software.amazon.awssdk + opensearch + 2.25.31 + + + software.amazon.awssdk + apache-client + 2.25.31 diff --git a/src/main/java/gov/nasa/pds/validate/ri/AuthInformation.java b/src/main/java/gov/nasa/pds/validate/ri/AuthInformation.java index d64588a55..af73c1916 100644 --- a/src/main/java/gov/nasa/pds/validate/ri/AuthInformation.java +++ b/src/main/java/gov/nasa/pds/validate/ri/AuthInformation.java @@ -1,102 +1,41 @@ package gov.nasa.pds.validate.ri; -import java.io.File; -import java.io.FileInputStream; -import java.io.IOException; -import java.nio.charset.Charset; -import java.util.Properties; -import java.util.Scanner; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; -import javax.xml.parsers.ParserConfigurationException; -import org.w3c.dom.Document; -import org.w3c.dom.NodeList; -import org.xml.sax.SAXException; +import org.apache.commons.cli.CommandLine; +import org.apache.commons.lang.NotImplementedException; +import gov.nasa.pds.registry.common.ConnectionFactory; +import gov.nasa.pds.registry.common.EstablishConnectionFactory; public class AuthInformation { - final public static AuthInformation NO_AUTH = new AuthInformation(false, "", "", ""); - final private boolean trustSelfSigned; - final private String password; - final private String url; - final private String username; - - private AuthInformation(boolean tss, String pwd, String un, String url) { - this.password = pwd; - this.trustSelfSigned = tss; - this.url = url; - this.username = un; + final private String apiAuthFile; + final private String osAuthFile; + final private String regConn; + private transient ConnectionFactory factory = null; + private AuthInformation(String a, String A, String r) { + this.apiAuthFile = A; + this.osAuthFile = a; + this.regConn = r; } - - public static AuthInformation buildFrom(String filename) - throws IOException, ParserConfigurationException, SAXException { - boolean tss; - File file = new File(filename); - Scanner textReader; - String line = null, pwd, un, url; - - if (filename == null || filename.length() == 0) - return NO_AUTH; - if (!file.exists()) - throw new IOException("Filename '" + filename + "' does not exist"); - - // Get the first non-comment line - textReader = new Scanner(file, Charset.defaultCharset().name()); - while (textReader.hasNext() && line == null) { - line = textReader.nextLine().strip(); - if (line.charAt(0) == '#') - line = null; - } - textReader.close(); - - // Determine which file processing to use - if (line.startsWith("")) { // XML - // - DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder(); - Document document = builder.parse(file); - NodeList registries = document.getElementsByTagName("registry"); - - if (registries.getLength() != 1) - throw new SAXException( - "There should be one and only registry tag in the harvest config file but found " - + registries.getLength()); - if (registries.item(0).getAttributes().getNamedItem("auth") == null) - throw new SAXException("Requires an authorization file or 'auth' attribute on ."); - - filename = registries.item(0).getAttributes().getNamedItem("auth").getNodeValue(); - url = registries.item(0).getAttributes().getNamedItem("url").getNodeValue(); - } else { // java property - FileInputStream input = new FileInputStream(file); - Properties properties = new Properties(); - properties.load(input); - url = properties.getProperty("url"); - filename = properties.getProperty("credentials"); - input.close(); - } - - // Get credentials - FileInputStream input = new FileInputStream(filename); - Properties properties = new Properties(); - properties.load(input); - pwd = properties.getProperty("password"); - tss = Boolean.valueOf(properties.getProperty("trust.self-signed", "false")); - un = properties.getProperty("user"); - input.close(); - return new AuthInformation(tss, pwd, un, url); - } - - public String getPassword() { - return password; - } - - public boolean getTrustSelfSigned() { - return trustSelfSigned; + public static AuthInformation buildFrom(CommandLine cl) { + return new AuthInformation( + cl.getOptionValue("a",""), + cl.getOptionValue("A",""), + cl.getOptionValue("r","")); } - - public String getUsername() { - return username; + public synchronized ConnectionFactory getConnectionFactory() throws Exception { + if (this.factory == null) { + if (!this.apiAuthFile.isBlank()) { + throw new NotImplementedException(); + } + if (!this.osAuthFile.isBlank()) { + this.factory = EstablishConnectionFactory.from(this.regConn, this.osAuthFile); + } + if (this.factory == null) { + throw new IllegalArgumentException("did not supply necessary arguments on the CLI"); + } + } + return this.factory; } - - public String getUrl() { - return url; + public String getURL() { + return factory != null ? this.factory.toString() : "uninitialized connection factory"; } } diff --git a/src/main/java/gov/nasa/pds/validate/ri/CommandLineInterface.java b/src/main/java/gov/nasa/pds/validate/ri/CommandLineInterface.java index b52bc5840..32060ba28 100644 --- a/src/main/java/gov/nasa/pds/validate/ri/CommandLineInterface.java +++ b/src/main/java/gov/nasa/pds/validate/ri/CommandLineInterface.java @@ -32,10 +32,13 @@ public CommandLineInterface() { "file with the URL and credential content to have full (all product states) read-only access to the Registry Search API") .hasArg(true).longOpt("auth-api").numberOfArgs(1).optionalArg(true).build()); */ this.opts.addOption(Option.builder("a").argName("auth-file").desc( - "file with the URL and credential content to have full, direct read-only access to the Registry OpenSearch DB") + "file with the credential content to have full, direct read-only access to the Registry OpenSearch DB") .hasArg(true).longOpt("auth-opensearch").numberOfArgs(1).optionalArg(true).build()); this.opts.addOption(Option.builder("h").desc("show this text and exit").hasArg(false) .longOpt("help").optionalArg(true).build()); + this.opts.addOption(Option.builder("r").argName("registry-connection").desc( + "URL point to the registry connection information usually of the form app://connection/direct/localhost.xml") + .hasArg(true).longOpt("registry-connection").numberOfArgs(1).optionalArg(true).build()); this.opts.addOption(Option.builder("t").argName("count").desc( "process the lidvids in parallel (multiple threads) with this argument being the maximum number of threads") .hasArg(true).longOpt("threads").optionalArg(true).build()); @@ -55,16 +58,11 @@ public void help() { "Multiple arguments may be given in any order, for example:\n" + " > validate-refs urn:nasa:pds:foo::1.0 label.xml urn:nasa:pds:bar::2.0 manifest.txt\n\n", opts, - "\nAn auth-file is either a text file of the Java property format " + - "with two variables, 'url' and 'credentials': \n\n" + - " - The 'url' property is the complete base URL to the Registry OpenSearch endpoint or Search API\n" + - " * 'https://my-registry.es.amazonaws.com/_search'\n\n" + - " - The 'credentials' is the path to:\n" + - " * Harvest config file containing the necessary Registry OpenSearch authorization\n" + - " \n" + - " * Java Properties file with a 'user' and 'password' specified, for example: \n" + - " user=janedoe\n" + - " password=mypassword\n\n", + "\nAn auth-file is a text file of the Java property format " + + "with two variables, 'user' and 'password' for example: \n" + + " user=janedoe\n" + + " password=mypassword\n\n" + + "Both -a and -r are required.\n\n", true); } @@ -89,17 +87,16 @@ public int process(String[] args) loggerConfig.setLevel(Level.INFO); ctx.updateLoggers(); - if (!cl.hasOption("a")) { - throw new ParseException("Not yet implemented. Must provide OpenSearch Registry authorization information."); - } else if (!cl.hasOption("A")) { - log.warn("Using Registry OpenSearch Database to check references."); + if (cl.hasOption("A")) { + throw new ParseException("Not yet implemented. Must provide OpenSearch Registry authorization information through -a and -r."); } else { - /* not true statement until registry handles authentication - * throw new ParseException("Must supply authorization file for access to either OpenSearch Database (auth-opensearch) or OpenSearch Registry (auth-api)."); - */ - throw new ParseException("Must define authorization file for access to OpenSearch Database (auth-opensearch)."); + boolean both = cl.hasOption("a") && cl.hasOption("r"); + if (!both) { + throw new ParseException("Both -a and -r must be given."); + } else { + log.warn("Using Registry OpenSearch Database to check references."); + } } - if (cl.getArgList().size() < 1) throw new ParseException("Must provide at least one LIDVID, Label file path, or manifest file path as a starting point."); @@ -115,31 +112,17 @@ public int process(String[] args) } else this.log.info("lidvids will be sequentially processed."); - try { - DuplicateFileAreaFilenames scanner = new DuplicateFileAreaFilenames( - AuthInformation.buildFrom(cl.getOptionValue("auth-api", "")), - AuthInformation.buildFrom(cl.getOptionValue("auth-opensearch", ""))); - Engine engine = new Engine(cylinders, UserInput.toLidvids (cl.getArgList()), - AuthInformation.buildFrom(cl.getOptionValue("auth-api", "")), - AuthInformation.buildFrom(cl.getOptionValue("auth-opensearch", ""))); - this.log.info("Starting the duplicate filename in FileArea checks."); - scanner.findDuplicatesInBackground(); - this.log.info("Starting the reference integrity checks."); - engine.processQueueUntilEmpty(); - scanner.waitTillDone(); - this.broken = engine.getBroken(); - this.duplicates = scanner.getResults(); - this.total = engine.getTotal(); - } catch (IOException e) { - this.log.fatal("Cannot process request because of IO problem.", e); - throw e; - } catch (ParserConfigurationException e) { - this.log.fatal("Could not parse the harvest configuration file.", e); - throw e; - } catch (SAXException e) { - this.log.fatal("Mal-formed harvest configuration file.", e); - throw e; - } + DuplicateFileAreaFilenames scanner = new DuplicateFileAreaFilenames(AuthInformation.buildFrom(cl)); + Engine engine = new Engine(cylinders, UserInput.toLidvids (cl.getArgList()), AuthInformation.buildFrom(cl)); + this.log.info("Starting the duplicate filename in FileArea checks."); + scanner.findDuplicatesInBackground(); + this.log.info("Starting the reference integrity checks."); + engine.processQueueUntilEmpty(); + scanner.waitTillDone(); + this.broken = engine.getBroken(); + this.duplicates = scanner.getResults(); + this.total = engine.getTotal(); + if (-1 < this.total) { this.log.info("Reference Summary:"); this.log.info(" " + this.total + " products processed"); diff --git a/src/main/java/gov/nasa/pds/validate/ri/CountingAppender.java b/src/main/java/gov/nasa/pds/validate/ri/CountingAppender.java index 3c33c9e51..00f9ce7ee 100644 --- a/src/main/java/gov/nasa/pds/validate/ri/CountingAppender.java +++ b/src/main/java/gov/nasa/pds/validate/ri/CountingAppender.java @@ -1,5 +1,6 @@ package gov.nasa.pds.validate.ri; +import java.io.Serializable; import org.apache.logging.log4j.Level; import org.apache.logging.log4j.core.Appender; import org.apache.logging.log4j.core.ErrorHandler; @@ -11,7 +12,7 @@ class CountingAppender implements Appender { private int err = 0, fatal = 0, warn = 0; private ErrorHandler handler = null; private Filter filter = null; - private Layout layout = null; + private Layout layout = null; private String name = ""; public void addFilter(Filter newFilter) { @@ -54,7 +55,7 @@ public ErrorHandler getHandler() { } @Override - public Layout getLayout() { + public Layout getLayout() { return this.layout; } diff --git a/src/main/java/gov/nasa/pds/validate/ri/Cylinder.java b/src/main/java/gov/nasa/pds/validate/ri/Cylinder.java index 3066e5f91..9b2ff13f4 100644 --- a/src/main/java/gov/nasa/pds/validate/ri/Cylinder.java +++ b/src/main/java/gov/nasa/pds/validate/ri/Cylinder.java @@ -5,7 +5,6 @@ import org.apache.logging.log4j.Logger; public class Cylinder implements Runnable { - final private AuthInformation registry; final private AuthInformation search; final private CamShaft cam; final private Logger log = LogManager.getLogger(Cylinder.class); @@ -13,10 +12,9 @@ public class Cylinder implements Runnable { final private String lidvid; private long broken = 0; - public Cylinder(String lidvid, AuthInformation registry, AuthInformation search, CamShaft cam) { + public Cylinder(String lidvid, AuthInformation search, CamShaft cam) { this.cam = cam; this.lidvid = lidvid; - this.registry = registry; this.search = search; } @@ -37,8 +35,7 @@ public long getBroken() { public void run() { try { ArrayList referenced_valid_lidvids = new ArrayList(); - DocumentInfo search = AuthInformation.NO_AUTH.equals (this.registry) ? new OpensearchDocument(this.search) : new RegistryDocument(this.registry);; - String magicWord = AuthInformation.NO_AUTH.equals (this.registry) ? "database." : "registry."; + DocumentInfo search = new OpensearchDocument(this.search); if (search.exists(this.lidvid)) { this.log.info( @@ -49,11 +46,11 @@ public void run() { else { this.broken++; this.reporter.error("In the search the lidvid '" + this.lidvid + "' references '" - + reference + "' that is missing in the " + magicWord); + + reference + "' that is missing in the database."); } } } else - this.reporter.error("The given lidvid '" + this.lidvid + "' is missing from the " + magicWord); + this.reporter.error("The given lidvid '" + this.lidvid + "' is missing from the database."); if (this.has_children(search)) this.cam.addAll(referenced_valid_lidvids); diff --git a/src/main/java/gov/nasa/pds/validate/ri/DuplicateFileAreaFilenames.java b/src/main/java/gov/nasa/pds/validate/ri/DuplicateFileAreaFilenames.java index 089c95db5..d4227d153 100644 --- a/src/main/java/gov/nasa/pds/validate/ri/DuplicateFileAreaFilenames.java +++ b/src/main/java/gov/nasa/pds/validate/ri/DuplicateFileAreaFilenames.java @@ -1,46 +1,27 @@ package gov.nasa.pds.validate.ri; -import java.io.IOException; -import java.net.MalformedURLException; -import java.net.URL; + import java.util.ArrayList; +import java.util.Arrays; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; -import org.apache.http.HttpHost; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; -import org.opensearch.action.search.SearchRequest; -import org.opensearch.action.search.SearchResponse; -import org.opensearch.client.RestClient; -import org.opensearch.client.RestClientBuilder; -import org.opensearch.client.RestHighLevelClient; -import org.opensearch.index.query.QueryBuilders; -import org.opensearch.search.SearchHit; -import org.opensearch.search.aggregations.bucket.terms.Terms; -import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder; -import org.opensearch.search.builder.SearchSourceBuilder; +import gov.nasa.pds.registry.common.RestClient; + -class DuplicateFileAreaFilenames extends OpensearchDocument implements Runnable, RestClientBuilder.HttpClientConfigCallback, RestClientBuilder.RequestConfigCallback { - final private AuthInformation registry; +class DuplicateFileAreaFilenames extends OpensearchDocument implements Runnable { final private AuthInformation search; final private HashMap> duplicates = new HashMap>(); final private Logger log = LogManager.getLogger(CommandLineInterface.class); private boolean done = true; - public DuplicateFileAreaFilenames(AuthInformation registry, AuthInformation search) { + public DuplicateFileAreaFilenames(AuthInformation search) { super(search); - this.registry = registry; this.search = search; } - public void findDuplicates() { - if (AuthInformation.NO_AUTH.equals(this.registry)) { - viaOpenSearch(); - } else { - viaRegistry(); - } - } public void findDuplicatesInBackground() { this.done = false; Thread t = new Thread(this); @@ -58,70 +39,25 @@ public void run() { this.notifyAll(); } } - private void viaOpenSearch() { - RestHighLevelClient client = null; - /* - * GET registry/_search - * { - * "size": 0, - * "aggregations": { - * "duplicates": { - * "terms": { - * "field": "ops:Data_File_Info/ops:file_ref", - * "size": 100, - * "min_doc_count": 2 - * } - * } - * } - * } - */ - SearchRequest request = new SearchRequest() - .indices("registry") - .source(new SearchSourceBuilder() - .aggregation(new TermsAggregationBuilder("duplicates") - .field("ops:Data_File_Info/ops:file_ref") - .minDocCount(2) - .size(this.PAGE_SIZE) - ) - .size(0)); - SearchResponse response; + public void findDuplicates() { try { - URL url = new URL(this.search.getUrl()); - client = new RestHighLevelClient( - RestClient.builder(new HttpHost(url.getHost(), url.getPort(), url.getProtocol())) - .setHttpClientConfigCallback(this).setRequestConfigCallback(this)); - response = this.search(client, request); - if (response.getAggregations() == null || response.getAggregations().get("duplicates") == null) - return; - for (Terms.Bucket bucket : ((Terms)response.getAggregations().get("duplicates")).getBuckets()) { - SearchRequest findIDs = new SearchRequest() - .indices("registry") - .source(new SearchSourceBuilder() - .fetchSource ("lid", null) - .query( - QueryBuilders.boolQuery() - .must(QueryBuilders - .termQuery("ops:Data_File_Info/ops:file_ref", bucket.getKeyAsString()))) - .size(this.PAGE_SIZE)); - SearchResponse duplicators = this.search(client, findIDs); + RestClient client = this.search.getConnectionFactory().createRestClient(); + for (String file_ref : client.performRequest(client.createSearchRequest() + .buildFindDuplicates(PAGE_SIZE) + .setIndex(this.search.getConnectionFactory().getIndexName())).bucketValues()) { HashSet lids = new HashSet(); - for (SearchHit hit : duplicators.getHits()) { - lids.add(hit.getSourceAsMap().get("lid").toString()); - } + lids.addAll(client.performRequest(client.createSearchRequest() + .buildTermQuery("ops:Data_File_Info/ops:file_ref", file_ref) + .setReturnedFields(Arrays.asList("lid"))).fields()); if (1 < lids.size()) { - this.log.error("Found duplicate file: " + bucket.getKeyAsString()); - this.duplicates.put (bucket.getKeyAsString(), new ArrayList(lids)); + this.log.error("Found duplicate file: " + file_ref); + this.duplicates.put (file_ref, new ArrayList(lids)); } } - } catch (MalformedURLException e) { - this.log.error ("Could not form a valid URL from " + this.search.getUrl(), e); - } catch (IOException e) { - this.log.error ("Something went wrong talking to opensearch.", e); + } catch (Exception e) { + this.log.error("Had an error communicating with opensearch", e); } } - private void viaRegistry() { - this.log.fatal("finding duplicate file area filenames is not implemented."); - } public synchronized void waitTillDone() { while (!this.done) { try { diff --git a/src/main/java/gov/nasa/pds/validate/ri/Engine.java b/src/main/java/gov/nasa/pds/validate/ri/Engine.java index fa13ab98d..aae9fcaaf 100644 --- a/src/main/java/gov/nasa/pds/validate/ri/Engine.java +++ b/src/main/java/gov/nasa/pds/validate/ri/Engine.java @@ -10,17 +10,14 @@ public class Engine implements CamShaft { private final int cylinders; private long broken, total = 0; - private final AuthInformation registry; private final AuthInformation search; private final Queue queue = new ArrayDeque(); private final ArrayList workers = new ArrayList(); private final Logger log = LogManager.getLogger(Engine.class); - public Engine(int cylinders, List lidvids, AuthInformation registry, - AuthInformation search) { + public Engine(int cylinders, List lidvids, AuthInformation search) { this.cylinders = cylinders; this.queue.addAll(lidvids); - this.registry = registry; this.search = search; this.total = this.queue.size(); } @@ -64,7 +61,7 @@ public void processQueueUntilEmpty() { synchronized (this.queue) { lidvid = this.queue.remove(); } - applicants.add(new Cylinder(lidvid, this.registry, this.search, this)); + applicants.add(new Cylinder(lidvid, this.search, this)); } if (this.cylinders == 1) { @@ -87,7 +84,7 @@ public void processQueueUntilEmpty() { this.workers.wait(); } catch (InterruptedException e) { log.trace( - "This should never happen and means there is one or more workers stuck in teh abyss", + "This should never happen and means there is one or more workers stuck in the abyss", e); } } diff --git a/src/main/java/gov/nasa/pds/validate/ri/OpensearchDocument.java b/src/main/java/gov/nasa/pds/validate/ri/OpensearchDocument.java index cd4f5169d..56fc05c8e 100644 --- a/src/main/java/gov/nasa/pds/validate/ri/OpensearchDocument.java +++ b/src/main/java/gov/nasa/pds/validate/ri/OpensearchDocument.java @@ -1,42 +1,15 @@ package gov.nasa.pds.validate.ri; -import java.io.IOException; -import java.net.ConnectException; -import java.net.URL; -import java.security.KeyManagementException; -import java.security.KeyStoreException; -import java.security.NoSuchAlgorithmException; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; -import java.util.Objects; -import org.apache.http.HttpHost; -import org.apache.http.auth.AuthScope; -import org.apache.http.auth.UsernamePasswordCredentials; -import org.apache.http.client.config.RequestConfig; -import org.apache.http.conn.ssl.TrustSelfSignedStrategy; -import org.apache.http.impl.client.BasicCredentialsProvider; -import org.apache.http.impl.nio.client.HttpAsyncClientBuilder; -import org.apache.http.ssl.SSLContextBuilder; -import org.apache.http.ssl.SSLContexts; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; -import org.opensearch.action.search.SearchRequest; -import org.opensearch.action.search.SearchResponse; -import org.opensearch.client.HttpAsyncResponseConsumerFactory; -import org.opensearch.client.RequestOptions; -import org.opensearch.client.RestClient; -import org.opensearch.client.RestClientBuilder; -import org.opensearch.client.RestHighLevelClient; -import org.opensearch.index.query.QueryBuilders; -import org.opensearch.search.SearchHit; -import org.opensearch.search.builder.SearchSourceBuilder; +import gov.nasa.pds.registry.common.RestClient; -public class OpensearchDocument implements DocumentInfo, RestClientBuilder.HttpClientConfigCallback, - RestClientBuilder.RequestConfigCallback { - protected static OpensearchDocument sourceOverride = null; +public class OpensearchDocument implements DocumentInfo { protected final int PAGE_SIZE = 5000; final private AuthInformation context; final private HashMap> documents = @@ -44,53 +17,34 @@ public class OpensearchDocument implements DocumentInfo, RestClientBuilder.HttpC final private HashMap> references = new HashMap>(); final private LidvidComparator lidvid_compare = new LidvidComparator(); final private Logger log = LogManager.getLogger(OpensearchDocument.class); - final private RequestOptions.Builder hugeMemory = RequestOptions.DEFAULT.toBuilder(); - + private RestClient client = null; private void load(String lidvid) { if (!this.documents.containsKey(lidvid)) { try { - RestHighLevelClient client = null; - SearchRequest request = - new SearchRequest() - .indices( - "registry") - .source( - new SearchSourceBuilder() - .query( - QueryBuilders.boolQuery() - .must(QueryBuilders - .termQuery(lidvid.contains("::") ? "lidvid" : "lid", lidvid))) - .size(this.PAGE_SIZE)); - SearchResponse response; - URL url = new URL(this.context.getUrl()); - try { - client = new RestHighLevelClient( - RestClient.builder(new HttpHost(url.getHost(), url.getPort(), url.getProtocol())) - .setHttpClientConfigCallback(this).setRequestConfigCallback(this)); - response = this.search(client, request); - if (response != null && response.getHits() != null - && response.getHits().getTotalHits() != null) { - if (response.getHits().getTotalHits().value == 1L) - this.documents.put(lidvid, response.getHits().getAt(0).getSourceAsMap()); - else { - ArrayList ids = new ArrayList(); - for (SearchHit hit : response.getHits()) - ids.add(hit.getId()); - ids.sort(lidvid_compare); - for (SearchHit hit : response.getHits()) { - if (hit.getId().equals(ids.get(ids.size() - 1))) { - this.documents.put(lidvid, hit.getSourceAsMap()); - this.documents.put(hit.getId(), hit.getSourceAsMap()); - } - } + synchronized (this) { + if (this.client == null) this.client = this.context.getConnectionFactory().createRestClient(); + } + List> docs = this.client.performRequest( + this.client.createSearchRequest() + .buildTermQuery(lidvid.contains("::") ? "lidvid" : "lid", lidvid) + .setIndex(this.context.getConnectionFactory().getIndexName())).documents(); + if (docs.size() == 1) { + this.documents.put(lidvid, docs.get(0)); + } else { + ArrayList ids = new ArrayList(); + for (Map doc : docs) { + ids.add(doc.get("lidvid").toString()); + } + ids.sort(lidvid_compare); + for (Map doc : docs) { + if (doc.get("lidvid").toString().equals(ids.get(ids.size() - 1))) { + this.documents.put(lidvid, doc); + this.documents.put(ids.get(ids.size() - 1), doc); } } - } finally { - if (client != null) - client.close(); } - } catch (IOException ioe) { - this.log.fatal("Error reading from URL: " + this.context.getUrl(), ioe); + } catch (Exception e) { + this.log.fatal("Error reading from URL: " + this.context.getURL(), e); } } } @@ -99,73 +53,27 @@ private void load(String lidvid) { private void load_refs(String lidvid) { if (!this.references.containsKey(lidvid)) { try { - RestHighLevelClient client = null; - SearchRequest request = new SearchRequest().indices("registry-refs") - .source(new SearchSourceBuilder() - .query(QueryBuilders.boolQuery() - .must(QueryBuilders.termQuery( - lidvid.contains("::") ? "collection_lidvid" : "collection_lid", lidvid))) - .size(this.PAGE_SIZE)); - SearchResponse response; - URL url = new URL(this.context.getUrl()); - try { - HashSet newbies = new HashSet(); - client = new RestHighLevelClient( - RestClient.builder(new HttpHost(url.getHost(), url.getPort(), url.getProtocol())) - .setHttpClientConfigCallback(this).setRequestConfigCallback(this)); - response = this.search(client, request); - if (response != null && response.getHits() != null) { - for (SearchHit hit : response.getHits()) { - newbies.addAll((List) hit.getSourceAsMap().get("product_lid")); - newbies.addAll((List) hit.getSourceAsMap().get("product_lidvid")); + synchronized (this) { + if (this.client == null) this.client = this.context.getConnectionFactory().createRestClient(); + } + HashSet newbies = new HashSet(); + List> docs = this.client.performRequest( + this.client.createSearchRequest() + .buildTermQuery(lidvid.contains("::") ? "collection_lidvid" : "collection_lid", lidvid) + .setIndex(this.context.getConnectionFactory().getIndexName() + "-refs")).documents(); + for (Map doc : docs) { + newbies.addAll((List)doc.get("product_lid")); + newbies.addAll((List)doc.get("product_lidvid")); } - } this.references.put(lidvid, new ArrayList(newbies)); - } finally { - if (client != null) - client.close(); - } - } catch (IOException ioe) { - this.log.fatal("Error reading from URL: " + this.context.getUrl(), ioe); - } - } - } - - protected SearchResponse search(RestHighLevelClient client, SearchRequest request) - throws IOException { - /* - * Below is a particularly evil bit of code. It allows unit test to set the static variable - * (evil 1) which can then flow a priori data back through the code as though it was retreived - * from an opensearch database. It means the unit test code no only returns values it has to - * wrap them up as though opensearch did its work (evil 2). Therefore the code becomes sensitive - * to the ability of unit testing to emulate opensearch as well as the performance of the - * integrity checks. - * - * Despite the evil, it keeps the operational code from knowing about the unit test code. - * Unfortunately the opensearch code RestHighLevelClient is not written to be overriden either. - * Therefore cannot simply extend it or implement a common interface to do a more subtle - * insertion of unit testing. - */ - int iteration = 0; - while (true) { - try { - if (OpensearchDocument.sourceOverride != null) - return OpensearchDocument.sourceOverride.search(client, request); - return client.search(request, this.hugeMemory.build()); - } catch (ConnectException ce) { - iteration++; - if (iteration < 5) - this.log.warn("Could not connect but trying again: " + iteration); - else - throw ce; + } catch (Exception ioe) { + this.log.fatal("Error reading from URL: " + this.context.getURL(), ioe); } } } public OpensearchDocument(AuthInformation context) { this.context = context; - this.hugeMemory.setHttpAsyncResponseConsumerFactory( - new HttpAsyncResponseConsumerFactory.HeapBufferedResponseConsumerFactory(Integer.MAX_VALUE)); // almost 2 GB } @Override @@ -206,33 +114,4 @@ else if (value instanceof List) } return references; } - - @Override - public HttpAsyncClientBuilder customizeHttpClient(HttpAsyncClientBuilder httpClientBuilder) { - if (this.context.getTrustSelfSigned()) { - try { - SSLContextBuilder sslBld = SSLContexts.custom(); - sslBld.loadTrustMaterial(new TrustSelfSignedStrategy()); - httpClientBuilder.setSSLContext(sslBld.build()); - } catch (KeyManagementException | KeyStoreException | NoSuchAlgorithmException e) { - this.log.fatal("Could not set self signed trust", e); - } - } - if (!Objects.equals(this.context.getUsername(), "")) { - BasicCredentialsProvider handler = new BasicCredentialsProvider(); - handler.setCredentials(AuthScope.ANY, - new UsernamePasswordCredentials(this.context.getUsername(), this.context.getPassword())); - httpClientBuilder.setDefaultCredentialsProvider(handler); - } else - log.info("Skipping credentials because no username was given."); - return httpClientBuilder; - } - - @Override - public RequestConfig.Builder customizeRequestConfig(RequestConfig.Builder requestConfigBuilder) { - final int ms = 1000; - requestConfigBuilder.setConnectionRequestTimeout(5 * ms); - requestConfigBuilder.setSocketTimeout(10 * ms); - return requestConfigBuilder; - } } diff --git a/src/main/java/gov/nasa/pds/validate/ri/RegistryDocument.java b/src/main/java/gov/nasa/pds/validate/ri/RegistryDocument.java deleted file mode 100644 index 664974727..000000000 --- a/src/main/java/gov/nasa/pds/validate/ri/RegistryDocument.java +++ /dev/null @@ -1,30 +0,0 @@ -package gov.nasa.pds.validate.ri; - -import java.util.List; - -public class RegistryDocument implements DocumentInfo { - final private AuthInformation context; - - public RegistryDocument(AuthInformation context) { - this.context = context; - } - - @Override - public boolean exists(String lidvid) { - // TODO Auto-generated method stub - return false; - } - - @Override - public String getProductTypeOf(String lidvid) { - // TODO Auto-generated method stub - return null; - } - - @Override - public List getReferencesOf(String lidvid) { - // TODO Auto-generated method stub - return null; - } - -} diff --git a/src/test/java/gov/nasa/pds/validate/ReferenceIntegrityTest.java b/src/test/java/gov/nasa/pds/validate/ReferenceIntegrityTest.java deleted file mode 100644 index 272f4128a..000000000 --- a/src/test/java/gov/nasa/pds/validate/ReferenceIntegrityTest.java +++ /dev/null @@ -1,95 +0,0 @@ -package gov.nasa.pds.validate; - -import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertThrows; -import static org.junit.jupiter.api.Assertions.assertTrue; -import java.io.IOException; -import javax.xml.parsers.ParserConfigurationException; -import org.apache.commons.cli.ParseException; -import org.junit.jupiter.api.Test; -import org.xml.sax.SAXException; -import gov.nasa.pds.validate.ri.AuthInformation; -import gov.nasa.pds.validate.ri.CliExecutioner; -import gov.nasa.pds.validate.ri.FakeOpensearch; - -public class ReferenceIntegrityTest { - @Test - public void checkBundle() { - final FakeOpensearch db = new FakeOpensearch(); // necessary for side effects despite it not - // being used - final String[] args = {"--auth-opensearch", "src/test/resources/riut/auth.txt", "--threads", - "1", "urn:nasa:pds:insight_rad::2.1"}; - CliExecutioner cli = new CliExecutioner(args); - assertDoesNotThrow(cli); - assertEquals(46, cli.getCli().getTotal(), "Did not process the expected number of products."); - assertEquals(257, cli.getCli().getBroken(), - "Did not find the expected number of missing product references"); - } - - @Test - public void checkBundleMultithreaded() { - final FakeOpensearch db = new FakeOpensearch(); // necessary for side effects despite it not - // being used - final String[] args = {"--auth-opensearch", "src/test/resources/riut/auth.txt", "--threads", - "10", "urn:nasa:pds:insight_rad::2.1"}; - CliExecutioner cli = new CliExecutioner(args); - assertDoesNotThrow(cli); - assertEquals(46, cli.getCli().getTotal(), "Did not process the expected number of products."); - assertEquals(257, cli.getCli().getBroken(), - "Did not find the expected number of missing product references"); - } - - @Test - public void invalidArg() { - final String[] args = - {"--auth-serch", "src/test/resources/riut/auth.txt", "urn:nasa:pds:insight_rad::2.1"}; - assertThrows(ParseException.class, new CliExecutioner(args)); - } - - @Test - public void invalidThreadValue() { - final String[] args = {"--auth-opensearch", "src/test/resources/riut/auth.txt", "-t", "1", - "urn:nasa:pds:insight_rad::2.1"}; - assertDoesNotThrow(new CliExecutioner(args)); - final String[] argsA = {"--auth-opensearch", "src/test/resources/riut/auth.txt", "-t", "a", - "urn:nasa:pds:insight_rad::2.1"}; - assertThrows(ParseException.class, new CliExecutioner(argsA)); - final String[] argsNeg = {"--auth-opensearch", "src/test/resources/riut/auth.txt", "-t", "-1", - "urn:nasa:pds:insight_rad::2.1"}; - assertThrows(ParseException.class, new CliExecutioner(argsNeg)); - } - - @Test - public void missingFile() { - final String[] args = {"--auth-opensearch", "src/test/resources/riut/no-auth.txt", - "urn:nasa:pds:insight_rad::2.1"}; - assertThrows(IOException.class, new CliExecutioner(args)); - } - - @Test - public void missingLIDVID() { - final String[] args = {"--auth-opensearch", "src/test/resources/riut/auth.txt"}; - assertThrows(ParseException.class, new CliExecutioner(args)); - } - - @Test - public void missingRequired() { - final String[] args = {"urn:nasa:pds:insight_rad::2.1"}; - assertThrows(ParseException.class, new CliExecutioner(args)); - } - - @Test - public void readSearchAuth() { - try { - AuthInformation asProperties = AuthInformation.buildFrom("src/test/resources/riut/auth.txt"); - AuthInformation asXML = AuthInformation.buildFrom("src/test/resources/riut/harvest.xml"); - assertEquals(asProperties.getPassword(), asXML.getPassword()); - assertEquals(asProperties.getTrustSelfSigned(), asXML.getTrustSelfSigned()); - assertEquals(asProperties.getUrl(), asXML.getUrl()); - assertEquals(asProperties.getUsername(), asXML.getUsername()); - } catch (IOException | ParserConfigurationException | SAXException e) { - assertTrue(false, "Had an exception and that should not have occurred."); - } - } -} diff --git a/src/test/java/gov/nasa/pds/validate/ri/FakeOpensearch.java b/src/test/java/gov/nasa/pds/validate/ri/FakeOpensearch.java deleted file mode 100644 index 038a63ab5..000000000 --- a/src/test/java/gov/nasa/pds/validate/ri/FakeOpensearch.java +++ /dev/null @@ -1,76 +0,0 @@ -package gov.nasa.pds.validate.ri; - -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.IOException; -import java.util.HashSet; -import java.util.Set; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; -import org.opensearch.action.search.SearchRequest; -import org.opensearch.action.search.SearchResponse; -import org.opensearch.client.RestHighLevelClient; -import org.opensearch.common.xcontent.DeprecationHandler; -import org.opensearch.common.xcontent.NamedXContentRegistry; -import org.opensearch.common.xcontent.XContentParser; -import org.opensearch.common.xcontent.json.JsonXContent; -import org.opensearch.index.query.BoolQueryBuilder; -import org.opensearch.index.query.TermQueryBuilder; - -public class FakeOpensearch extends OpensearchDocument { - final private Logger log = LogManager.getLogger(FakeOpensearch.class); - final private Set broken = new HashSet(); - - public FakeOpensearch() { - super(null); - OpensearchDocument.sourceOverride = this; - } - - private SearchResponse getSearchResponseFromJson(String jsonResponse) throws IOException { - XContentParser parser = JsonXContent.jsonXContent.createParser(NamedXContentRegistry.EMPTY, - DeprecationHandler.IGNORE_DEPRECATIONS, jsonResponse); - return SearchResponse.fromXContent(parser); - } - - @Override - protected synchronized SearchResponse search(RestHighLevelClient client, SearchRequest request) - throws IOException { - SearchResponse result; - if (request.source().query() != null) { - FileInputStream fis = null; - result = this.getSearchResponseFromJson( - "{\"took\":4,\"timed_out\":false,\"_shards\":{\"total\":0,\"successful\":1,\"skipped\":0,\"failed\":0},\"hits\":{\"total\":{\"value\":0,\"relation\":\"eq\"},\"max_score\":4.841559,\"hits\":[]}}"); - String field = ((TermQueryBuilder) ((BoolQueryBuilder) request.source().query()).must().get(0)) - .fieldName(); - String index = request.indices()[0]; - String value = ((TermQueryBuilder) ((BoolQueryBuilder) request.source().query()).must().get(0)) - .value().toString(); - String workingFilename = - "src/test/resources/riut/" + index + "___" + field + "___" + value + ".json"; - try { - fis = new FileInputStream(workingFilename); - result = this.getSearchResponseFromJson(new String(fis.readAllBytes())); - } catch (FileNotFoundException e) { - if (!this.broken.contains(workingFilename)) { - this.broken.add(workingFilename); - log.error("Incomplete test data set because of missing file: " + workingFilename); - } - } catch (IOException e) { - if (!this.broken.contains(workingFilename)) { - this.broken.add(workingFilename); - log.error( - "Incomplete test data set because of JSON parsing error of file: " + workingFilename, - e); - } - } finally { - if (fis != null) - fis.close(); - } - } else { - result = this.getSearchResponseFromJson( - "{\"took\":233,\"timed_out\":false,\"_shards\":{\"total\":1,\"successful\":1,\"skipped\":0,\"failed\":0},\"hits\":{\"total\":{\"value\":10000,\"relation\":\"gte\"},\"max_score\":null,\"hits\":[]},\"aggregations\":{}}}\n" - ); - } - return result; - } -} diff --git a/src/test/resources/riut/auth.txt b/src/test/resources/riut/auth.txt deleted file mode 100644 index 965286795..000000000 --- a/src/test/resources/riut/auth.txt +++ /dev/null @@ -1,8 +0,0 @@ -# TODO Warning: Use the default username and password only for testing purposes in local setup -user = admin -password = admin -trust.self-signed = true - -# add the stuff for validate -credentials = src/test/resources/riut/auth.txt -url = https://localhost:9200 diff --git a/src/test/resources/riut/harvest.xml b/src/test/resources/riut/harvest.xml deleted file mode 100644 index 074b777a0..000000000 --- a/src/test/resources/riut/harvest.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/test/resources/riut/manifest.txt b/src/test/resources/riut/manifest.txt deleted file mode 100644 index 80974470c..000000000 --- a/src/test/resources/riut/manifest.txt +++ /dev/null @@ -1,2 +0,0 @@ -urn:nasa:pds:insight_rad::2.1 -urn:nasa:pds:insight_rad::2.0 diff --git a/src/test/resources/riut/registry-refs___collection_lid___urn:nasa:pds:insight_rad:data_calibrated.json b/src/test/resources/riut/registry-refs___collection_lid___urn:nasa:pds:insight_rad:data_calibrated.json deleted file mode 100644 index 58dc40ea2..000000000 --- a/src/test/resources/riut/registry-refs___collection_lid___urn:nasa:pds:insight_rad:data_calibrated.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":0.9808291,"hits":[{"_index":"registry-refs","_id":"urn:nasa:pds:insight_rad:data_calibrated::7.0::P1","_score":0.9808291,"_source":{"batch_id":1,"batch_size":7,"reference_type":"primary","collection_lidvid":"urn:nasa:pds:insight_rad:data_calibrated::7.0","collection_lid":"urn:nasa:pds:insight_rad:data_calibrated","collection_vid":"7.0","product_lidvid":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545::1.0"],"product_lid":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545"],"_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55"}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry-refs___collection_lid___urn:nasa:pds:insight_rad:data_derived.json b/src/test/resources/riut/registry-refs___collection_lid___urn:nasa:pds:insight_rad:data_derived.json deleted file mode 100644 index 4138701d9..000000000 --- a/src/test/resources/riut/registry-refs___collection_lid___urn:nasa:pds:insight_rad:data_derived.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":0.9808291,"hits":[{"_index":"registry-refs","_id":"urn:nasa:pds:insight_rad:data_derived::7.0::P1","_score":0.9808291,"_source":{"batch_id":1,"batch_size":7,"reference_type":"primary","collection_lidvid":"urn:nasa:pds:insight_rad:data_derived::7.0","collection_lid":"urn:nasa:pds:insight_rad:data_derived","collection_vid":"7.0","product_lidvid":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545::1.0"],"product_lid":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545"],"_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55"}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry-refs___collection_lid___urn:nasa:pds:insight_rad:data_raw.json b/src/test/resources/riut/registry-refs___collection_lid___urn:nasa:pds:insight_rad:data_raw.json deleted file mode 100644 index 1d14793b9..000000000 --- a/src/test/resources/riut/registry-refs___collection_lid___urn:nasa:pds:insight_rad:data_raw.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":0.9808291,"hits":[{"_index":"registry-refs","_id":"urn:nasa:pds:insight_rad:data_raw::8.0::P1","_score":0.9808291,"_source":{"batch_id":1,"batch_size":7,"reference_type":"primary","collection_lidvid":"urn:nasa:pds:insight_rad:data_raw::8.0","collection_lid":"urn:nasa:pds:insight_rad:data_raw","collection_vid":"8.0","product_lidvid":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545::1.0"],"product_lid":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545"],"_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55"}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:context:instrument:radiometer.insight.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:context:instrument:radiometer.insight.json deleted file mode 100644 index 73126adc6..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:context:instrument:radiometer.insight.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":0,"relation":"eq"},"max_score":null,"hits":[]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:context:instrument_host:spacecraft.insight.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:context:instrument_host:spacecraft.insight.json deleted file mode 100644 index 73126adc6..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:context:instrument_host:spacecraft.insight.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":0,"relation":"eq"},"max_score":null,"hits":[]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:context:investigation:mission.insight.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:context:investigation:mission.insight.json deleted file mode 100644 index c3c802f39..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:context:investigation:mission.insight.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":0,"relation":"eq"},"max_score":null,"hits":[]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:context:target:planet.mars.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:context:target:planet.mars.json deleted file mode 100644 index 73126adc6..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:context:target:planet.mars.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":0,"relation":"eq"},"max_score":null,"hits":[]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_documents:document_hp3rad.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_documents:document_hp3rad.json deleted file mode 100644 index 73126adc6..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_documents:document_hp3rad.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":0,"relation":"eq"},"max_score":null,"hits":[]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis.json deleted file mode 100644 index a19706902..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis.json +++ /dev/null @@ -1 +0,0 @@ -{"took":1,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":0,"relation":"eq"},"max_score":null,"hits":[]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_documents:document_mission.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_documents:document_mission.json deleted file mode 100644 index a19706902..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_documents:document_mission.json +++ /dev/null @@ -1 +0,0 @@ -{"took":1,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":0,"relation":"eq"},"max_score":null,"hits":[]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated.json deleted file mode 100644 index 96558c3be..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated.json +++ /dev/null @@ -1 +0,0 @@ -{"took":7,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":37,"relation":"eq"},"max_score":1.1443806,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::7.0","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"7.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::7.0","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlWtlu2zgUfS/QfyD8HFuWs7UGoyKIkamBZMaIMsVgXghGom0CEimQlJP8/ZCULGuh7bhtmmJiFI4l3o3nXC6XLPzylCZgRYSknF30/MGwBwiLeEzZ4qL39/11/1PvS/DxAzRy/ZTHJAFLQeYXvaVSmRx7XhbLAcMSDxZ8ZR5OzJe38r3ZJDxB+gv5l/5wIKNlD+gvkmL1nBEmCwvGQC6SAY+SaMDFwotlnHilnOCscD4TPM4jha54kpBI6VA/fgD6o2OqG9oSSa8mPH6StFJ4fHwcPB5bt6Ph0Pf+ub0Jrec+ZVJhFpG1qqTjIqYbHmFlodrjFBSanc+BsD3JuBcUpuA0JkzROS0iQJeC4GDjBSZ8oZsSREsxIoJcsLFxMta2x7pPdLFUSOB4HGOFkRamDwIrEkPPoVwzXeaHbg3OB0Po1Z5rUoqqhARTFho34O5yAq4qD2CiPYINf9ArpGvqlM25SIu+2URDpZvAH2gkfON4u0zNUFZmS5RgKYNu7kCvKVFTvaKqMD7dOAqaTMIsf0jWHDwTLILR0P+kbbZft9RiIiNBM2vxpRjVdWpRenvChLd6/FZ58pVKxcVzO56GzIQoTJOgm7MwrYvptCG2u/3hqO+fQK/b6jBRyxZN45bsceI0I0T0BVlR8rieo7aBUgCzv1M/1O/P/eFZf3R2eL/9raPG2W/33HG/pBJEVXron0xHzySo0okkBEsC/COQYaHA6AhsxjgwY37gthwSUin/yRWRIOZRnuqpAFAG1NK0zonQCwMBNzqdgM46EFvspMPkW3P0uT86Ppyj0WtwpJ/yLLb4G8zaTI3eBSG+niz8wwk5fgNCjv//hIyG/eGxHiSHE3LyBoScvA9CzvSKejghp29AyOn7IOTzd42Qszcg5OxdEGLWkOHhhGwvV16PkPPfn5BWe7NEgN72ShNe6U0neVKd6vOepkTXWFzElGlkZDsgXU8LZRlDSouWVYSv//0LvXZjR5dnDdVRXbXRVu/ijpDgTNAUi2d0R2SeKBTmqXnslnoi45IEYUQNK6bIK1605QSPiJSULVBCViQJrmqldaexpVwaR9c4IqqNm5WIear3+UGYizk2UZTPLkkqI5ollBHEsIbjD8JlYV5qtVZjO2W2BgK9vXDBKVsRqejCeTZhJazPcqxAzxWBORgKbqks6jz71JKY6uQTDCeoGikuFBIaI1EJNA5BoiJ9x7Qe7jgtfA7KIxLoNS04XFSNyIa5mRyQ4qhhHHot2TbsO/tkmncAC/96kESsTG6Fz1KR9HDQ2xb0iEkzzvQE4Or3XnsbIsNM51Ek8Fw5uXw5ny/nVCph51O05FKNZRXAy4l1kUslapnew+kLeC1EXoz997B0dznZw9C06tUvZ2gscEx5SrTxn0jOL+WlK9ZYD7FYEIWaK6lzdN5iIXfMh7MEM+Im6OdNh8pGO86sr0FqI/qxObCw+KOT3y4UoefYi8DKDjJbqOYKtY/3HUCtD8/XOzY5Xv9C6XrB2gXYbrDWtvbBFfHUiAVmJ2n2i+VaCSbrfWR9k1psKdeb00rkIWdxQhzXE2a3WTtfB/iB58raKHt4BDYz6hHALAabkScH0FtH11y9dvH7WpQss2Nzy6H/mNsOJOmedH4ddr7Ojj1zwh/yuXrEwnChu2u2cCDMSFTlc7sM6FKzthQ7eN5OW3nLIbeadV0/bCz/joyKonxCzJRPv5LT++W+2m0HR13kl1gC2wc7jIgQBfQ6CsH0egIIjpaguFECZZ8Bn298mKP8A+mBnnNqhJv7prqdOloGFpMbxmHz7WYibtmA1zQhdl5GZv/KWhdQtrkN9dyo2GWw5sZeVJoxvLnIGERyBb2NdJsx7bQ6HajXmsWNlaO5Dl8rMOiK3jbw+VwS1WU2Z1Rd9B6eFekFQ+gVYp16US+wZttgLpljLGJzMjGbhGASfgO+rhgdzZ3kjnRdK4Nzk8DFT6cEiklCU6pzQtekQlC8IP07ovSwAze6EOxfE1OidmQ71JCkYUonHjYcNF+3tO4Kq5Oy3Xn4Yk3IYFQac5a/C8HzTBo0y18OmWsbyi5XVqzYcJH0gQgQKqxy986r1XGWG4XAX/e4fN6iY1PWDo/L8Go6RaESmkxdflfvtyim+ImmeYoKJwlhC7V0i5pPPdHM5YpD2bn93Y/UQWDeTCffphOk/xyA5Oj7kKz7ekU0R6enPw1PM+vuHAWdemY94SC9RqDUpioqV/Idi1VxTsAap3juOdgc5rT/R4R+/R/y5InT"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"]}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::6.5","_score":1.1443806,"_source":{"lid": "urn:nasa:pds:insight_rad:data_calibrated", "vid": "6.5", "lidvid": "urn:nasa:pds:insight_rad:data_calibrated::6.5", "title": "InSight RAD Calibrated Data Collection", "product_class": "Product_Collection", "_package_id": "e1f3ef4c-e331-4938-a3f4-3bbc17532c55", "ref_lid_document": ["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis", "urn:nasa:pds:insight_documents:document_hp3rad:release_notes", "urn:nasa:pds:insight_documents:document_mission"], "ref_lid_instrument": ["urn:nasa:pds:context:instrument:radiometer.insight"], "ref_lid_instrument_host": ["urn:nasa:pds:context:instrument_host:spacecraft.insight"], "ref_lid_investigation": ["urn:nasa:pds:context:investigation:mission.insight"], "ref_lid_target": ["urn:nasa:pds:context:target:planet.mars"], "alternate_ids": ["urn:nasa:pds:insight_rad:data_calibrated::7.0", "urn:nasa:pds:insight_rad:data_calibrated"], "description": ["InSight RAD Calibrated Data Collection", "Peer-review version", "This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."], "ops:Data_File_Info/ops:creation_date_time": ["2020-12-11T00:44:44Z"], "ops:Data_File_Info/ops:file_name": ["collection_data_rad_calibrated.csv"], "ops:Data_File_Info/ops:file_ref": ["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"], "ops:Data_File_Info/ops:file_size": ["581"], "ops:Data_File_Info/ops:md5_checksum": ["374ac573ec2553fb2f7d20e9afadd87c"], "ops:Data_File_Info/ops:mime_type": ["text/plain"], "ops:Harvest_Info/ops:harvest_date_time": ["2022-12-14T21:48:32.297808Z"], "ops:Harvest_Info/ops:node_name": ["PDS_ENG"], "ops:Label_File_Info/ops:blob": ["eJzlWtlu2zgUfS/QfyD8HFuWs7UGoyKIkamBZMaIMsVgXghGom0CEimQlJP8/ZCULGuh7bhtmmJiFI4l3o3nXC6XLPzylCZgRYSknF30/MGwBwiLeEzZ4qL39/11/1PvS/DxAzRy/ZTHJAFLQeYXvaVSmRx7XhbLAcMSDxZ8ZR5OzJe38r3ZJDxB+gv5l/5wIKNlD+gvkmL1nBEmCwvGQC6SAY+SaMDFwotlnHilnOCscD4TPM4jha54kpBI6VA/fgD6o2OqG9oSSa8mPH6StFJ4fHwcPB5bt6Ph0Pf+ub0Jrec+ZVJhFpG1qqTjIqYbHmFlodrjFBSanc+BsD3JuBcUpuA0JkzROS0iQJeC4GDjBSZ8oZsSREsxIoJcsLFxMta2x7pPdLFUSOB4HGOFkRamDwIrEkPPoVwzXeaHbg3OB0Po1Z5rUoqqhARTFho34O5yAq4qD2CiPYINf9ArpGvqlM25SIu+2URDpZvAH2gkfON4u0zNUFZmS5RgKYNu7kCvKVFTvaKqMD7dOAqaTMIsf0jWHDwTLILR0P+kbbZft9RiIiNBM2vxpRjVdWpRenvChLd6/FZ58pVKxcVzO56GzIQoTJOgm7MwrYvptCG2u/3hqO+fQK/b6jBRyxZN45bsceI0I0T0BVlR8rieo7aBUgCzv1M/1O/P/eFZf3R2eL/9raPG2W/33HG/pBJEVXron0xHzySo0okkBEsC/COQYaHA6AhsxjgwY37gthwSUin/yRWRIOZRnuqpAFAG1NK0zonQCwMBNzqdgM46EFvspMPkW3P0uT86Ppyj0WtwpJ/yLLb4G8zaTI3eBSG+niz8wwk5fgNCjv//hIyG/eGxHiSHE3LyBoScvA9CzvSKejghp29AyOn7IOTzd42Qszcg5OxdEGLWkOHhhGwvV16PkPPfn5BWe7NEgN72ShNe6U0neVKd6vOepkTXWFzElGlkZDsgXU8LZRlDSouWVYSv//0LvXZjR5dnDdVRXbXRVu/ijpDgTNAUi2d0R2SeKBTmqXnslnoi45IEYUQNK6bIK1605QSPiJSULVBCViQJrmqldaexpVwaR9c4IqqNm5WIear3+UGYizk2UZTPLkkqI5ollBHEsIbjD8JlYV5qtVZjO2W2BgK9vXDBKVsRqejCeTZhJazPcqxAzxWBORgKbqks6jz71JKY6uQTDCeoGikuFBIaI1EJNA5BoiJ9x7Qe7jgtfA7KIxLoNS04XFSNyIa5mRyQ4qhhHHot2TbsO/tkmncAC/96kESsTG6Fz1KR9HDQ2xb0iEkzzvQE4Or3XnsbIsNM51Ek8Fw5uXw5ny/nVCph51O05FKNZRXAy4l1kUslapnew+kLeC1EXoz997B0dznZw9C06tUvZ2gscEx5SrTxn0jOL+WlK9ZYD7FYEIWaK6lzdN5iIXfMh7MEM+Im6OdNh8pGO86sr0FqI/qxObCw+KOT3y4UoefYi8DKDjJbqOYKtY/3HUCtD8/XOzY5Xv9C6XrB2gXYbrDWtvbBFfHUiAVmJ2n2i+VaCSbrfWR9k1psKdeb00rkIWdxQhzXE2a3WTtfB/iB58raKHt4BDYz6hHALAabkScH0FtH11y9dvH7WpQss2Nzy6H/mNsOJOmedH4ddr7Ojj1zwh/yuXrEwnChu2u2cCDMSFTlc7sM6FKzthQ7eN5OW3nLIbeadV0/bCz/joyKonxCzJRPv5LT++W+2m0HR13kl1gC2wc7jIgQBfQ6CsH0egIIjpaguFECZZ8Bn298mKP8A+mBnnNqhJv7prqdOloGFpMbxmHz7WYibtmA1zQhdl5GZv/KWhdQtrkN9dyo2GWw5sZeVJoxvLnIGERyBb2NdJsx7bQ6HajXmsWNlaO5Dl8rMOiK3jbw+VwS1WU2Z1Rd9B6eFekFQ+gVYp16US+wZttgLpljLGJzMjGbhGASfgO+rhgdzZ3kjnRdK4Nzk8DFT6cEiklCU6pzQtekQlC8IP07ovSwAze6EOxfE1OidmQ71JCkYUonHjYcNF+3tO4Kq5Oy3Xn4Yk3IYFQac5a/C8HzTBo0y18OmWsbyi5XVqzYcJH0gQgQKqxy986r1XGWG4XAX/e4fN6iY1PWDo/L8Go6RaESmkxdflfvtyim+ImmeYoKJwlhC7V0i5pPPdHM5YpD2bn93Y/UQWDeTCffphOk/xyA5Oj7kKz7ekU0R6enPw1PM+vuHAWdemY94SC9RqDUpioqV/Idi1VxTsAap3juOdgc5rT/R4R+/R/y5InT"], "ops:Label_File_Info/ops:creation_date_time": ["2020-12-11T00:46:36Z"], "ops:Label_File_Info/ops:file_name": ["collection_data_rad_calibrated.xml"], "ops:Label_File_Info/ops:file_ref": ["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"], "ops:Label_File_Info/ops:file_size": ["9225"], "ops:Label_File_Info/ops:json_blob": ["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="], "ops:Label_File_Info/ops:md5_checksum": ["ab37d5904cdee8f554652986a81911a5"], "ops:Tracking_Meta/ops:archive_status": "archived", "pds:Citation_Information/pds:description": ["InSight RAD Calibrated Data Collection"], "pds:Citation_Information/pds:publication_year": ["2018-01-01T00:00:00Z"], "pds:Collection/pds:collection_type": ["Data"], "pds:Field_Delimited/pds:data_type": ["ASCII_String", "ASCII_LIDVID_LID"], "pds:Field_Delimited/pds:field_number": ["1", "2"], "pds:Field_Delimited/pds:maximum_field_length": ["1", "255"], "pds:Field_Delimited/pds:name": ["Member Status", "LIDVID_LID"], "pds:File/pds:creation_date_time": ["2018-02-14T00:00:00Z"], "pds:File/pds:file_name": ["collection_data_rad_calibrated.csv"], "pds:Identification_Area/pds:information_model_version": ["1.10.1.0"], "pds:Identification_Area/pds:logical_identifier": ["urn:nasa:pds:insight_rad:data_calibrated"], "pds:Identification_Area/pds:product_class": ["Product_Collection"], "pds:Identification_Area/pds:title": ["InSight RAD Calibrated Data Collection"], "pds:Identification_Area/pds:version_id": ["7.0"], "pds:Internal_Reference/pds:comment": ["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.", "See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.", "The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."], "pds:Internal_Reference/pds:lid_reference": ["urn:nasa:pds:context:investigation:mission.insight", "urn:nasa:pds:context:instrument_host:spacecraft.insight", "urn:nasa:pds:context:instrument:radiometer.insight", "urn:nasa:pds:context:target:planet.mars", "urn:nasa:pds:insight_documents:document_mission", "urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis", "urn:nasa:pds:insight_documents:document_hp3rad:release_notes"], "pds:Internal_Reference/pds:reference_type": ["collection_to_investigation", "is_instrument_host", "is_instrument", "collection_to_target", "collection_to_document", "collection_to_document", "collection_to_document"], "pds:Inventory/pds:field_delimiter": ["Comma"], "pds:Inventory/pds:offset": ["0"], "pds:Inventory/pds:parsing_standard_id": ["PDS DSV 1"], "pds:Inventory/pds:record_delimiter": ["Carriage-Return Line-Feed"], "pds:Inventory/pds:records": ["7"], "pds:Inventory/pds:reference_type": ["inventory_has_member_product"], "pds:Investigation_Area/pds:name": ["InSight"], "pds:Investigation_Area/pds:type": ["Mission"], "pds:Modification_Detail/pds:description": ["Peer-review version", "This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.", "This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."], "pds:Modification_Detail/pds:modification_date": ["2018-02-14T00:00:00Z", "2019-06-26T00:00:00Z", "2019-09-23T00:00:00Z", "2019-12-11T00:00:00Z", "2020-03-09T00:00:00Z", "2020-06-02T00:00:00Z", "2020-09-09T00:00:00Z", "2020-12-10T00:00:00Z"], "pds:Modification_Detail/pds:version_id": ["0.1", "1.0", "2.0", "3.0", "4.0", "5.0", "6.0", "7.0"], "pds:Observing_System/pds:name": ["InSight"], "pds:Observing_System_Component/pds:name": ["InSight", "RAD"], "pds:Observing_System_Component/pds:type": ["Spacecraft", "Instrument"], "pds:Primary_Result_Summary/pds:processing_level": ["Calibrated"], "pds:Primary_Result_Summary/pds:purpose": ["Science"], "pds:Record_Delimited/pds:fields": ["2"], "pds:Record_Delimited/pds:groups": ["0"], "pds:Science_Facets/pds:discipline_name": ["Geosciences"], "pds:Science_Facets/pds:domain": ["Surface"], "pds:Target_Identification/pds:name": ["Mars"], "pds:Target_Identification/pds:type": ["Planet"], "pds:Time_Coordinates/pds:start_date_time": ["2018-01-01T00:00:00Z"], "pds:Time_Coordinates/pds:stop_date_time": ["2028-01-01T00:00:00Z"]}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::6.4","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"6.4","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::6.4","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::6.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::6.3","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"6.3","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::6.3","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::6.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::6.2","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"6.2","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::6.2","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::6.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::6.1","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"6.1","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::6.1","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::6.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::6.0","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"6.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::6.0","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::6.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::5.5","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"5.5","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::5.5","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::6.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::5.4","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"5.4","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::5.4","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::5.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::5.3","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"5.3","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::5.3","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::5.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::5.2","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"5.2","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::5.2","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::5.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::5.1","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"5.1","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::5.1","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::5.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::5.0","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"5.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::5.0","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::5.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::4.5","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"4.5","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::4.5","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::5.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::4.4","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"4.4","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::4.4","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::4.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::4.3","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"4.3","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::4.3","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::4.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::4.2","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"4.2","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::4.2","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::4.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::4.1","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"4.1","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::4.1","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::4.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::4.0","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"4.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::4.0","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::4.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::3.5","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"3.5","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::3.5","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::4.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::3.4","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"3.4","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::3.4","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::3.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::3.3","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"3.3","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::3.3","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::3.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::3.2","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"3.2","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::3.2","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::3.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::3.1","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"3.1","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::3.1","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::3.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::3.0","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"3.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::3.0","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::3.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::2.5","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"2.5","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::2.5","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::3.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::2.4","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"2.4","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::2.4","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::2.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::2.3","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"2.3","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::2.3","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::2.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::2.2","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"2.2","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::2.2","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::2.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::2.1","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"2.1","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::2.1","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::2.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::2.0","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"2.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::2.0","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::2.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::1.5","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"1.5","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::1.5","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::2.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::1.4","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"1.4","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::1.4","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::1.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::1.3","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"1.3","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::1.3","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::1.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::1.2","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"1.2","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::1.2","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::1.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::1.1","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"1.1","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::1.1","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::1.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated::1.0","_score":1.1443806,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated::1.0","title":"InSight RAD Calibrated Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated::7.0","urn:nasa:pds:insight_rad:data_calibrated"],"description":["InSight RAD Calibrated Data Collection","Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:44:44Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.csv"],"ops:Data_File_Info/ops:file_size":["581"],"ops:Data_File_Info/ops:md5_checksum":["374ac573ec2553fb2f7d20e9afadd87c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:32.297808Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:46:36Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/collection_data_rad_calibrated.xml"],"ops:Label_File_Info/ops:file_size":["9225"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v2zgM/iuCPyfOW9vd/K1o0FuA9q6oh+Fw2yAoNpMIsCVDktMWRf77SNmJncxLrtchRRE7lvjykOJDOq/Bg9FpmTh+o7MMEie1CqLXYJaCcnIhE0FP+LUBQY+LenOSCWuDqEu4F9zrtJH8JK3T5oWE955PwQmZBdHX1yBvP0+FA1Q8Ho7+6A/H/dEFKkzBJkYWlW/BA4DpG1hLeGJrMLYyWt9xmQbRMBxter/U+7E/vOqPr37S+3klLUt2QPBWoYvKspmK5XLl2CNkICywUY8Vwjg27rFEZHJuUHXK0IAIv5lvinX8xQA78b+0A8tSnZQ5xphJxdyKVhdgQCXA7jBibKENS32IbHiA7gS2j/3x5CQ2/FYWqfebLB0iHJ8FyPgokBEmf/ReIJOzAJn8Gsh42B9OMCnvBXJxFiAXx4FcYUW+F8jlWYBcHgfy8Tdk5OosQK6OAqEaGb4XyIezAPmw+b7pBVLhlrwCgqgg41sGj4JROELiDglPppcIN0PBqguBwfXSqEgJK6IitRHyMoHgRqQRMS9vmPjQcC+4ka4yOWvM+25WzrNtWF9AoBFqO4fh3MXrespuGr6folXW6nuIzkmXwZsknvNMUR9dOVdEgwEiCwliuNRr+nJBH4M10eCtzMC3YQSxxqjUPZUe03VBy0rkZL5JPfehwRi1whMmdo36ElS1O0/cyfyg66Jze4b0YmHB0V2pJF6D+QueQ9SDXRJ3YdNFCQOJNqn1QccWaaVacuuESoVJfTKCh2nMpvEXRpCq3RxPgcyl8zm+EcZIsYT+IzjMN54qBf1b8EnFY5Ad7NZ5Lryi+hRy91IQDrn1nK+E5TnkczC8nl1w/2NleFqrSqtAkvbWo6+vtUVVkjj23V6Qi2eZlzmvFjJQS7c6EhLs1EGdk3vvA4vxIJaWKpYSU3t7Hd/MZjx2BsMVUL3v2x2/2e748rKxfDebfplNOV46zbaWN997wdLossAEDut4W2rTmw3FbBtjqnQ/IqI1o7BKd0s+aJlMuWmedJftlkdstL3jubT1KJdgWj2OgAiIaOa+WmPTLf202a1iom3N7bbMS5VmwLq4jWiqxURMzHXpvJbaiR6zhUggMWLhegzPL263zlQuh10nrlVzTu/g+Wz+34CsigmxG158BVtpO2Pz6WEyIKKJ9cI9CUORwLws0H0WF5DsGschd3cFZqsr7Yjzr4NWF5Y9oriLCRvdZ46oqVoaV9TS9mL6eXWq4R2JUBdupB/mzfhDBMZUwNFto7DaGYhkxao2xGq3mF40Vuid4i3BoR77bGVkkxXk4k4nda871WA6y6RCgIL2iOQAGf2C4wcfXWP/frZE1fvvkm1nK/cp/7v2F6HDjYdPT0/h0yTUZjkYD4ejwT/3d7EH06cSFJRw0o9n/NntXkupU1knl/svq10EdeLwJJXiSLYVRjUrhPXROp2QPfGg4eKapFBBLVYTG235e27BrKljxi/WQU6+/iR2uAlfvPNCK396v74T8Zbg+EpbFzUEeAy2tPxA8BjaeKfTl/Fv8TbCipY6B1T1nx1t+YhV1vg3a+2gSnowMhc4RDyCLTPH4zKnr9XkaAptPaZEQnUokQYTsH7myWANmR9nWkNpvZPfYhCcJS2ptIksMpxxtqPbn6Bttc0PCToXkqo3Lj2hB9SIP+OohmnHAUYqQQSGiqzTxcEgN8ZBboT//6IerBvjOga9ap10CrMEx/d/9HlnCTmvMyoyocCFGDh7um4qmVZ67iuxevOD14VR2Gx+AOhia2w="],"ops:Label_File_Info/ops:md5_checksum":["ab37d5904cdee8f554652986a81911a5"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Calibrated Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_calibrated.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Calibrated Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Calibrated Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer-review version","This collection contains InSight Release 1, part 2, calibrated data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Calibrated"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_calibrated::1.1"}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042.json deleted file mode 100644 index b2588fd0d..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00014_20181211_073042","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042"],"description":["Peer review approved version","First release of this data product","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["597785416-30671"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00014M16:36:49"],"insight:Observation_Information/insight:start_sol_number":["00014"],"insight:Observation_Information/insight:start_solar_longitude":["304.290"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:34Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00014_20181211_073042.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00014_20181211_073042.tab"],"ops:Data_File_Info/ops:file_size":["27781596"],"ops:Data_File_Info/ops:md5_checksum":["2cb30a3a0916bfaae2016c63aaa629b1"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:34.091642Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-06-11T21:15:01Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00014_20181211_073042.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00014_20181211_073042.xml"],"ops:Label_File_Info/ops:file_size":["25380"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["95b6349a46964256fe814c1193c81c2c"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2019-06-04T16:06:52.873Z"],"pds:File/pds:file_name":["hp3_rad_cal_00014_20181211_073042.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00014_20181211_073042"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release of this data product"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2018-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["75906"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-12-11T07:30:42.598Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.945Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217.json deleted file mode 100644 index ccfdd5a33..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00122_20190401_123217","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217"],"description":["Release 2","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0002"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["607350696-25494"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["614547537-60293"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00122M10:32:58"],"insight:Observation_Information/insight:start_sol_number":["00122"],"insight:Observation_Information/insight:start_solar_longitude":["4.206"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00203M12:11:14"],"insight:Observation_Information/insight:stop_sol_number":["00203"],"insight:Observation_Information/insight:stop_solar_longitude":["43.102"],"ops:Data_File_Info/ops:creation_date_time":["2019-08-31T00:46:40Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_size":["15384810"],"ops:Data_File_Info/ops:md5_checksum":["fcab4b0ddc16b9c5787017b7bfe5559a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.579264Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-09-08T17:14:20Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_size":["25097"],"ops:Label_File_Info/ops:json_blob":["eJy1mu1v4jwSwP8VC+mkO6nQxAlv+bJq2e0turKtCvu87PM8ilxiwLpgc3boy636v9/YCUko4cWktx9YGjye+c2MJwOZn417KaL1NAnvHhWVTyRhgpO4EfxsDCPKEzZjU3MtvJKU6MurbP00Jko1gj3yF42RiArhr0wlQr5q+a3rn2lCmNG2LF+OSEJha+y4/abTb2IP9ouomkq20p/DRw80pkRRhOGTJyqVlmJRI3Df3i4ajM+EXKZbwb40DrMlIOi2XKflthyQi8UcFMYgl4JSCZ+vJQ84USRYRSpgXLH5IgkliQKwiYSwnD1KsC4KFitPX9eXQsdxMQ61uY7vuKGLPex231t20UhYEmuuIR/rbdHXew89kIiJJU2oRF9eVlSyJRiDBrkelPn3BH1A/rKMuQ7KIklWweUlMLQ0TGsunvQfvn65fHLBtAc6o5LyKQ1vITYm3hyMgNiF+UeN4I+fjZhFoSyuVDsoEtO1NlwFm3fhkinj8otGLh0mryu9hXFlInIpsPx8PeAXHZ6NexRTp6n8S7tLsUBNF3RJbkWaesd9h/S/P+WfXP+v16oDiy/vP4/9EF5C9wry7kVFG8nyDpUbZP67zNC15uNad4VSC4bfxsN/fp0YK0K35xlTGlm+bLx7iH1341wanFhIPj8/t569lpDzSwxZevnb6HZsHNwEyYTo0F40blhMTT3ZLToT8gifDRZEkmmiD+TPhpjNFDUZuuZMG/n4muhdpgISFiIZOG86nadCRtuCMr0WUz5PFgfkvU4HdphLsV7B2XG0fTTe2guOwcxc4+vlo74Ahznb7DMxm3Gy1Gn2nTN95kmMpgJ0M26OcAKHGtakW8R5pu01yAVz0oRNk/dqPBgOQ60pnMBW4e+jz+H3yWCnKOoViPD3Co/x4/abPoDbhLgg/FbwjUVsA4K7lSS60sxByXv7YXeU6kdQwFGyYApB6JGYoSVU+7Wk5uyfTlYF5uVg7iX2kTJEGd6ISIUmck2RrgcxAoOIRBPL8HleJfUDNffFbeRUT6JVKqNMhw4xjowpC7GGV8D3Ov0+uAJURBb4vQp8P8eP6FxSuhVb0B8LPmfJOgIXjG2gfXw6tGFTaw65Oo8pmkmxRFzIZAH3HwTFgqkVvAWPrCTjc0T/s2ZcvNTjbu/nBkOu/suWa9jTArhdfUorgbPtM16IJ6BqB9RD6hxEul/o/ijVeHP3C3Jt4DrO6XBaWSLQjQAdKGbcAJq7BPr77d34H2hKdWdRj7W7l3XIp7qBm57P2rdmhVI0I6CR6zYzRiR5r/UcxN7+cLL5kqDaQe32LEDhXh0RGaGIPjGzMRJwZ0uV6gBra1b7rTnHAf0jDqgd6V717eg8B7DD1pzjANfJPfC3EvyCROLZnrbfOZ32Rnc6hnGGYgAHUJWqhVvRR5C5VrUKW3VLTvusYoX/b8XKxVbVyo7W9T+oXOGakN4Z9coOFVs0UmcVrLouONBM7a1Ydi7wLNqqs0pWXRe0j5QsO1zfoqk6WrPqohX91b8KtMk1GlOu4OuJe2WF1rZoqa6lrkicKoUSulxRSRL48mO+FKld5WfBdY/AXdvBWfRQJ8Bd14TrHYEbWMF1LPqmE+AGNeH6h+GwXVp2LXqi43C4Zlpi5wicXVr2LFqgE+BqpiV2j8DZpWXfou05Aa5mWmJcBffp3HKJHYs254uUoGAP4wcVTOwd47NKTexa9DYn8dVNTv8Yn1V2YmzRuJzEVzc/20f47Oom9iw6lVP4alfOym7l07mlE/sW7cpJfHXzs7Jh+XRu9cS+RcdyEl/d/KzuWSSdnVlA2xZdy6TEo78Pf1DJrO5Uykh2Odmx6FX2INXMQq+6Pykj2aVh16JD2YNUM/G86q6khGRZGXsWfUk1Ut1a6FX2IltIdonXt2hG9iDVTbzK9mMLySrxPMei/9iDVDfx/Jzj4eozEkaF/j6vRzasWNzqXmPfY8a7LU2oNP5Rj6foMH4tQjQgcQtNiJzTBC0o0XMeK/Fc1nUCILZoNu717jpMm1kVDZqUDaiJWdlolDFLd0crSs+i5XiXkrusNSG7VbFMTxo4MTo/lJ5F35GHUr1XXJOustco0Z0bQd/mCVOh7lFEr9U6z6Ir2o5fCrrb9BfC6+9j9CTihMztyNo2P5Os1UYHWisa6d8jy/lSzlYr1L+yxUpDvl1kAy5KP3x3dPXJBl4iGrMlM4MrcC6lZGBI84GCZzm6ZZw2byiNGlvFd3B1u1smOUVSPKePqxk0vXo0B2l7COMKFaNw5Rk27aKWnkTTMz6aZqZnfTJNR0fYWqBDM0tazAGGZphlMwzYa3rOxO0Hfgdc0Op1/R8NPfFXmiPKBxWH/ImqhM3fX92dcjsyfGZC8JIErLxhkE1EtTbDUweGzrYEtXPyh0HjTDQTGGUzc7Ake5vbnakJyqTDYs6xvEQlYmWSOg6XlPDQDJZs3DgWcdNxIF9GLg5cN3D9xkUumTGF5jnJJmrj7w83V4MvaDQcj4d330rLlZglz0TmK38b3aIrOV2wJzQRZq6mMInIRBuSn9KGSYDykhWZ0qkkMz1aKqb/DqdizZNwBYIsJXSLxZsh1MxvkMLNIh+39IIrUv58sKV0xiI6Lx8x32u5Dn6rMPtE+RZ2Om+72svQ4PkqD5YnRRtuy2kddE1ql3EQLO84Xa/tdPqdJm77ff+wIFiUy7l+2++2vW6z4+C+txOuwykE0Ru5DvQmQbtXEpXpYG4Z2cGlM8r4PBy/Kqj22o/vr4UDsVwJbrz5R83DqhKZTYgKVXbFoRPLVPhO8NBxHed7mgnWD7E2kHkxPdnQko1FKS7MHJYW6qlXM0M4yOcTlbbSJMZuuYWU8iZOF2pt0HZa3Z73A7ZNs2N3sd903IljUgJKeR/3f2jD0qYw3J4mr1mJ0xYvWMWE06S1JPLgzG/WEBZOGqUC2bJ7swuk6Nvb/wAQX+XP"],"ops:Label_File_Info/ops:md5_checksum":["f23c319eb4af7ac504c81e0fb0408399"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2019-08-30T19:46:39.874Z"],"pds:File/pds:file_name":["hp3_rad_cal_00122_20190401_123217.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00122_20190401_123217"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 2"],"pds:Modification_Detail/pds:modification_date":["2019-09-23T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["42035"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-04-01T00:32:17.929Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-06-23T07:39:50.783Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044.json deleted file mode 100644 index e2afaef5c..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00213_20190703_052044","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044"],"description":["Release 3","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0003"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["615446390-36110"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["619698830-38207"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00213M15:11:18"],"insight:Observation_Information/insight:start_sol_number":["00213"],"insight:Observation_Information/insight:start_solar_longitude":["47.736"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00261M12:49:07"],"insight:Observation_Information/insight:stop_sol_number":["00261"],"insight:Observation_Information/insight:stop_solar_longitude":["69.345"],"ops:Data_File_Info/ops:creation_date_time":["2019-12-11T19:49:36Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00213_20190703_052044.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00213_20190703_052044.tab"],"ops:Data_File_Info/ops:file_size":["6772830"],"ops:Data_File_Info/ops:md5_checksum":["ed62f69e3a81a3f44fd5072d32ec7fb3"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.661562Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-13T17:55:33Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00213_20190703_052044.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00213_20190703_052044.xml"],"ops:Label_File_Info/ops:file_size":["25098"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["7bf3a6b1fbc2ec63f5d984a5127db1a6"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2019-12-11T13:49:35.832Z"],"pds:File/pds:file_name":["hp3_rad_cal_00213_20190703_052044.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00213_20190703_052044"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 3"],"pds:Modification_Detail/pds:modification_date":["2019-12-13T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["18505"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-07-03T17:20:44.785Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-08-21T22:34:50.855Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040.json deleted file mode 100644 index d7ab1c9f4..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00305_20191006_053040","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040"],"description":["Release 4","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0004"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["623611776-38863"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["631105491-14156"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00305M14:40:03"],"insight:Observation_Information/insight:start_sol_number":["00305"],"insight:Observation_Information/insight:start_solar_longitude":["89.169"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00390M00:33:49"],"insight:Observation_Information/insight:stop_sol_number":["00390"],"insight:Observation_Information/insight:stop_solar_longitude":["128.783"],"ops:Data_File_Info/ops:creation_date_time":["2020-03-06T22:44:18Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_size":["10659750"],"ops:Data_File_Info/ops:md5_checksum":["504d25afb275e7b503e104df61cebf45"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.706178Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-03-09T20:12:00Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_size":["25099"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["46ededf671d770b093f8302d51bfd365"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2020-03-06T17:44:17.393Z"],"pds:File/pds:file_name":["hp3_rad_cal_00305_20191006_053040.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00305_20191006_053040"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 4"],"pds:Modification_Detail/pds:modification_date":["2020-03-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["29125"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-10-06T05:30:40.490Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-12-31T23:06:06.368Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222.json deleted file mode 100644 index 5e80c02cc..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00390_20200101_120222","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222"],"description":["Release 5","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0005"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["631108867-10879"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["638968702-01376"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00390M01:29:58"],"insight:Observation_Information/insight:start_sol_number":["00390"],"insight:Observation_Information/insight:start_solar_longitude":["128.802"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00478M14:22:30"],"insight:Observation_Information/insight:stop_sol_number":["00478"],"insight:Observation_Information/insight:stop_solar_longitude":["175.696"],"ops:Data_File_Info/ops:creation_date_time":["2020-06-01T11:36:36Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_size":["21151872"],"ops:Data_File_Info/ops:md5_checksum":["5978e1b5156c9ec59fd4129664a85e90"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.755310Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzdXO9v4jwS/nwr7f9gVTrp7gMkcfgtlqrbbm/RtbtVYd97775EaWIguhDz2qbt3l9/YydACCEQwksWVqsW6vF4Zp7xePyUpnv9PvXRK2Hco8GnK6OqXyESONT1gvGnq7kYVVpX172PH7pSrjKlLvHRxw9/mTAy+nQ1EWLGO5o2c3k1sLldHdNX+aYmv2ivhvZ0N6hZ8MUybgy9yp3JlZwM38nUFj9nJOChEqljzvwqdXynStlYc7nra5Eco8EhJkw9Ln3SvIB744lYmtP/Nuj/4+tQmWQZLbO4XU+MunNHWN9fOGGvtoBVbf/jBwT/wOK4ri1xuooJdyJ7MyZteram4J17y8lvb2/VN1OZjnXd0H5/fBgo6yswWdiBQxZTudcJ/XqgjnJhp9VyGgpn50yEd+6G81az93R053r7ow5GXPVCdd2+SwLhjbzQc+uGETsaUsM+HcOQb3mRGGG9OQs6cuUOrLqAzGK223FtYVsg7L0wWxC3M5mZ8ufyR5aum23dwrqEQjcsA15h3NVS1McWj/YmjPZgd3a12PuYlPCET3r9YCANQV+fTPRsux6dEkEY+vI+I8ybgnZ0u7QMRWm7j4Wh9thyXjCibBpGS+1IKzILbASAlaHbZWKKZtHecXyb817qTupq60Kx2Y9Qp5aoffW4oOxnbHxT5o4I2/MTIkpsGhcDEElPRqGiNyo6BGBzNEXFXkgtpV3CHebNpMbeM/GJzQmqd7X4jxOeaNmuJMbXw9HVtud4NxbujdwfQt5Yt5QyOBHAb540CqoIEyoklgDRKGoG/B/qekfHHYyrJjb/09WSkhuK6GxDj1kxjSE2O0a7U9erZq2t9KwJxgOQYWy3H7wSLrxxqptKIrCnyy3U1dS7hIQ8G3qPYYmBXSHfJST6AWw4SFrrmYwIg5M0NVN8z7XYUmCtljgUNLwLqCkxcztRWatGlQZqxpqGlCWWg5YyU5UlQa01tV0tIZVMuExv5HBGSKOsgj7CGvzkgkyT2pPjANx0RgPI0jR/doKzAmgwsx3iMHskUjHaH6f9seKCzWV9tSaUiw5fGrA/YGmgedxKqN6B2B6ohSJ7x/4QlFYnzw6g+kvnTg5Uhy2NPCJGJ4VnU2ytbttsTIS1XvVTK96jzXhGuXvy7YCkA3S8aieUtZ2ZWqs6VRYdWuJCXUVr2674daNjIPUkiTKqEz9Y+6t2KM2ZxRQWtgJWMJ++QCOo63q9q20ZzFATHRjWbKLkJbiDH8/3N7df0GN/MOh//7bSmiKboXnRjKmgPt/cVVbN7krlmlCGslWlhOaOOv+1wibBoXNI9YZpGHqr1WhW4FuzvdKeOSvfatBKLBZrtRutpo6hczGbjczFlpPyrKVmWDMw1FM5YGQskZTNWke5zqm/yhho4WO6k+OZusCzNVW1Ziuuan14p1XgC+yvKbEDOc1mYcM2oH5FGfmoGx0MjV0raW36vF2GZ60GfjwaNehFO6aecOiAxaKIgqxPg7En5i5B88CDO7tLxlc9A7eqLXlryJyxDxBbV2jWq412YxOavRegI/Fms2i3//74gG6YM/Fe0ZBSP6Z2TWwffet3oCpO0bX1WrSS3V034bKzWX8XJ+LmDWdZ460HuBatXwt2ncYZx9fi4u9SR53/vLN4ZU0Xt4SsY2zbEbbQknGI7TrA/iy/JjNT0hwL0oB7O07qP8fFrpaKaPfe84kCfp1CiCuVIkkbR3KayvGdZEhV2C9dbTUhocmBtZckQfwmW6vg2tBodKDm1YxqsyZvxCnCce8TlkJL9wKr3k5sZjtio/5GvffNHbq9eUjv5+hoxImICsnLT0GuelANw59uwubANZr36s1mG0uQwrcJqThb8T0giNE3REdITDyOhDQXyQ7PhnxCqzYhTk3JdKhmsh7hypZLfG/qSbdvbcY8e0wqz0RA1qIHLyCVeyLbjw3ZhK7ncHxbCKNcID44arYlyuplitCY0fmMy+hFr1LbU7WYT4KxmKwF3Ww0lraGw2nz7+XqmbauYP8ReLKs2j7Ee8F+uEhm1NYr2MrZxXluRB5vP99jc/yIJl5zbKlhMbpNR1gF5Ha/Gdz2+9ad3ACKvfn34531Y3gLKbEUybZjM7y4vjRjW3CVAjmnJ1fuaurlNltjuSmlkR0sQrs9bdVMbTeEuVAeyLN5bzhxYThx81A8ZeEey/v/4SjmAvHb/hBCEFEYEQSNRViqZFWEsgVNIJ8zok68k4Mrr+FoyOYEyd/A+Ggguzk0zLeFzcKYm+ahmD8TydUfDngrB+CGhmuIy+2wL+xhUIWMr+qT1Q5GXoBU3Cd0Dl8hBcxGuw3pAKeWe/oUCCFfdfwPA5QD+1ph7Gv4HLCHGxAjOWq2ApjPA6jbY2hIRoxOUUCZmEBriSYEGvUZvIS0mDEvGCPyx9wL6PvpwQcLb/7nTedikgP0emHQ6wcf2r8y6FEkI8xVS0pkEpQC65Mk1iJT7r//howcADcKA9zQLxFgGVdB0T2FcCIfrgASZHVrRX97+D74O3KIvDyikwPeDxz5i3znUMCbxQFvXzDg0KCNbAhuIEkhH9liEeBT72tvPLVR0d3dKgx2s3WRYAu4ZNnMRS559UKnKVxww/jKnS4DP9sMfClJUHTHtwsnQevgi9pZJ4GXHvhTJ8HEdulbbtQNvTDs7cY5wP7X/RG/l+FWOI+QD+AD2DyMLlzUSkI3pcLjPDAfgVXT6+eAc4EODv/yHVwuyIszb4ZRu2DI03s4/Av1cLngLk66GfgsWLeTdHFlpUHhXV+cfzPMiyTgDurjSkiDVR+XC/fiFJxROwsO7piN3OnhHX5GAxJwypBxkwfe4gScUT8LBu6f+8P7mck2LSCcI0GmM8JsMWdE/T6Nr2JcHsCf8wBcnHAz6mfBuB0X4M9lAnybB+DiJJvROAuW7bgA35YIMM5VoosTaEbzLBi0owKMyyzROE+JxsWpMqN1FlzZcQEus0TjPCUaH4Eka58FSXZcgE9foq8PbKPxET6Npp8FJ5YD4S+MQRy34FxeI319YCeNixNh2DgLIuzYGJ++UF8f2Ezj4iwXxmfBch0b41Jrda5+GhdntLB5FozWkTEuoaO+PrSlLk5r4dql0Vp7YVxqrc7XVRdntnDt0pitvTAugfpgZHRYY12c3cL1S2O3hjFM5YcKyuOk47Dmqs/FOS3cuDROawusJdAccVjzlGSzOJOFm5fGZG2BtdwinKtjNovzV7h1afxVOqxlsM5xWPMUYfMIpFX70kirLbCWW4Rz9cXmEf5KUr80nmoLrKcvwvIJBlSZIoMuHxyZB9ri9JRpHExPHeGvnvdEd+25C2vBQquniJ4culvbr6LwwVloQmz54d0Zfct4DFwsFgsAi3NPJj4L7ulf++/NJxlEuSsXz9CQLot4nEuFOnaDzoN0cQbKNC+NgUpU4U28T/+pSHUQQJa5B2/p4jSUaZ4FDXXIlubJ+JaJ8IE7uTgFZdYujYKKRfWFuj/XQ3tihB/CT+B+/jFAr9QX9jgXusWZKLN+FkzUbzk+mzHni1CiOSeu/FhzvDzGK3dRuOWzzrY+tko+qDTtqWDh08PSH4XW1VKfs977P746Kfc="],"ops:Label_File_Info/ops:creation_date_time":["2020-06-02T17:56:24Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_size":["25100"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["c496ba7967ace5ba18783470f9b83ed0"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2020-04-24T16:01:41.743Z"],"pds:File/pds:file_name":["hp3_rad_cal_00390_20200101_120222.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00390_20200101_120222"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 5"],"pds:Modification_Detail/pds:modification_date":["2020-06-02T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["57792"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-01-01T00:02:22.323Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-03-31T23:19:50.349Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608.json deleted file mode 100644 index d0f30ce84..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00478_20200401_121608","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608"],"description":["Release 6","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0006"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["638972080-04063"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["646833467-42074"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00478M15:17:18"],"insight:Observation_Information/insight:start_sol_number":["00478"],"insight:Observation_Information/insight:start_solar_longitude":["175.718"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00567M04:35:01"],"insight:Observation_Information/insight:stop_sol_number":["00567"],"insight:Observation_Information/insight:stop_solar_longitude":["229.943"],"ops:Data_File_Info/ops:creation_date_time":["2020-09-04T05:05:22Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_size":["13007640"],"ops:Data_File_Info/ops:md5_checksum":["9e30661186ee9a27fdabebaf27c3266e"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.826863Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-09-09T17:20:06Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_size":["25100"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["9fd0faa7a5e1b80d95e41931999cd6fa"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2020-09-04T00:05:21.255Z"],"pds:File/pds:file_name":["hp3_rad_cal_00478_20200401_121608.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00478_20200401_121608"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 6"],"pds:Modification_Detail/pds:modification_date":["2020-09-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["35540"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-04-01T00:16:08.395Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-06-30T23:59:29.047Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545.json deleted file mode 100644 index 9cbd835ee..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00567_20200701_125545","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545"],"description":["Release 7","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0007"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["646836843-38797"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["655744367-38404"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00567M05:29:47"],"insight:Observation_Information/insight:start_sol_number":["00567"],"insight:Observation_Information/insight:start_solar_longitude":["229.967"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00667M13:36:33"],"insight:Observation_Information/insight:stop_sol_number":["00667"],"insight:Observation_Information/insight:stop_solar_longitude":["294.618"],"ops:Data_File_Info/ops:creation_date_time":["2020-12-03T20:25:34Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_size":["421998"],"ops:Data_File_Info/ops:md5_checksum":["0356fbef4ac7b7ce353644dd93af34e9"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.875769Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:48:28Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_size":["25099"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["984c1b65212a47111bf833a28c5645c7"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2020-12-03T14:25:33.770Z"],"pds:File/pds:file_name":["hp3_rad_cal_00567_20200701_125545.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00567_20200701_125545"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 7"],"pds:Modification_Detail/pds:modification_date":["2020-12-03T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["1153"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-07-01T00:55:45.002Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-10-12T03:14:38.501Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived.json deleted file mode 100644 index b66e4e17a..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived.json +++ /dev/null @@ -1 +0,0 @@ -{"took":6,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":37,"relation":"eq"},"max_score":1.6226832,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::7.0","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"7.0","lidvid":"urn:nasa:pds:insight_rad:data_derived::7.0","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"]}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::6.5","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"6.5","lidvid":"urn:nasa:pds:insight_rad:data_derived::6.5","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::7.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::6.4","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"6.4","lidvid":"urn:nasa:pds:insight_rad:data_derived::6.4","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::6.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::6.3","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"6.3","lidvid":"urn:nasa:pds:insight_rad:data_derived::6.3","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlWtlu2zgUfS/QfyD8HFuWs7QxGBVBjEwNJDNBlCkG80IwEm0TkEiBpJz474ekJFsLbcdt0xQTo3As8W4853K5ZOGX5zQBSyIk5eyi5w+GPUBYxGPK5he9vx+u+597X4KPH6CR66c8JglYCDK76C2UyuTY87JYDhiWeDDnS/NwYr68pe/dTcITpL+Qf+kPBzJa9ID+IilWq4wwWVgwBnKRDHiURAMu5l4s48Qr5QRnhfM7weM8UuiKJwmJlA714wegPzqmuqEtkfRqwuNnSdcKT09Pg6dj63Y0HPreP7c3ofXcp0wqzCJSqUo6LmK64RFWFqo9TkGh2fkcCNuzjHtBYQpOY8IUndEiAnQpCA42XmDC57opQbQUIyLIBRsbJ2Nte6z7ROcLhQSOxzFWGMVE0CWJoefQrNktk0O3Bp8GQ+jVnmtSiqqEBFMWGh/g/nICJoV5MNG+wIY56BWiNV3KZlykRa9siqHSR+APNAa+8bpdpmYoK/MkSrCUQTdroNeUqKleUVUYn24cBU0OYZY/JhX6K4JFMBr6n7XN9uuWWkxkJGhmLb4IoLpCLURvT4zwVg/bdXp8pVJxsWoH05CZEIVpEnRTFaZ1MZ0txPa1Pxz1/RPodVsdJmp5Mhycb8kbJ0gTkmhgxAooIlU1OW2DpYBmf7d+qOfn/eFZf3R2eM/9rSPG2XP3pPGwoBJE6wTRP5mOnkmwziaSECwJ8I9AhoUCoyNQDm5gRvrAbTYkZK35J9dYg5hHearnAEAZUAvTOiNCLwcE3OhsAjrptF0DnHSYfGuCzvuj48MJGr0GQfopz4zz2GLWpmn0Lgjx9VzhH07I8RsQcvz/J2Q07A+P9SA5nJCTNyDk5H0QcqYX1MMJOX0DQk7fByHn3zVCzt6AkLN3QYhZQ4aHE7K9Tnk9Qj79/oS02psVAvS215fwSu84ybPq1JwPNCW6vuIipkwjI9sB6SpaKMsYUlq0LCJ8/e9f6LUbO7o8a6iO6qqNtnoXd4QE7wRNsViheyLzRKEwT81jt8wTGZckCCNqWDEFXvGiLSd4RKSkbI4SsiRJMKkK6k5LS7O0jK5xRFQbNCsR81Tv8IMwFzNsQiifXZJURjRLKCOIYY3FH4TLwrzUaq3Gdr5sDQR6e7GCU7bU9RmdO48jrIT1WQ4U6LkiMGdBwS2VRYVnn1oSU515guEErYeJC4WExkisBRrnHlGRu2NaD3ecFj4H5akI9JoWHC7WjciGuZkZkOKoYRx6Ldk27Dv7ZJp3AAv/epRELE1uhSupSHo46G0LerikGWd69Lv6vdfehsgw03kUCTxTTi5fzufLOZVK2MkULbhUY7kO4OXEusilErVM7+H0BbwWIi/G/ntYur+c7GFouu7VL2doLHBMeUq08Z9Izi/lpSvWWAyxmBOFmsuoc3TeYiF3zId3CWbETdDPmw6VjXacWV+D1Eb0Y3NgYfFHJ79dKELPsRGBazvI7J+aK9Q+3ncAVZ2XV9s1Oa5+obRasHYBthusytY+uCKeGrHAbCPNZrFcK8Gk2kTWd6jFfrLama5FHnMWJ8RxI2G2mrWDdYAfea6sjbKHR2Azox4BzGKwGXlyAL0quubqtYvf16JkkR2biw39x1xwIEn3pPPrsPP17tgzR/shn6knLAwXurtmCwfCjETrfG7XAF1qKkuxg+fttJXXG3Kr2c69w8bs70inKAonxEzh9CsJfVjsq9p2ENSFfYElsH2wY4gIUUCvoxBMLyaA4GgBinskUPYZ8NnGhznEP5Ae6DnnRbi5aKrbqaNlYDG5YRw2325m4ZYNeE0TYidlZDavrHXzZJvbUM+Mil0Da27sxaQZwOX9xSCSS+htRNt0aY/rQ4F6iVncUzma69i1ooKu0G0Dn80kUV1ac0bVRe9xpUgvGEKvEOuUiXppNRsGc6McYxGbA4m7SQgm4Tfg61rR0dzJ7EiXszL4ZLK3+OmU0KAlNKU6IYIrLATFc9K/J0qPOXCjS8D+NTHFaUe2wwtJGqZ01mHDQfN1S+u+sDop251nLtaEDEalMWfhOxc8z6RBs/zlkLm2oexyZcWKrRZJH4kAocIqd++5Wh1nuVEI/KrH5fMWHZuvdmxchlfTKQqV0GTqwnv9fotiip9pmqeocJIQNlcLt6j51BPN3Kk4lJ0b3/1IHQTmzXTybTpB+s8BSI6+D8m6r1dEc3R6+tPwNFPuzlHQqWSqCQfpBQKlNlVRuYbvWKmKEwLWOLxzT8DmGKf9nyD06/8A+IOCnA=="],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::6.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::6.2","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"6.2","lidvid":"urn:nasa:pds:insight_rad:data_derived::6.2","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::6.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::6.1","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"6.1","lidvid":"urn:nasa:pds:insight_rad:data_derived::6.1","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::6.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::6.0","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"6.0","lidvid":"urn:nasa:pds:insight_rad:data_derived::6.0","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::6.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::5.5","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"5.5","lidvid":"urn:nasa:pds:insight_rad:data_derived::5.5","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::6.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::5.4","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"5.4","lidvid":"urn:nasa:pds:insight_rad:data_derived::5.4","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::5.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::5.3","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"5.3","lidvid":"urn:nasa:pds:insight_rad:data_derived::5.3","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::5.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::5.2","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"5.2","lidvid":"urn:nasa:pds:insight_rad:data_derived::5.2","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::5.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::5.1","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"5.1","lidvid":"urn:nasa:pds:insight_rad:data_derived::5.1","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlWtlu2zgUfS/QfyD8HFuWs7QxGBVBjEwNJDNBlCkG80IwEm0TkEiBpJz474ekJFsLbcdt0xQTo3As8W4853K5ZOGX5zQBSyIk5eyi5w+GPUBYxGPK5he9vx+u+597X4KPH6CR66c8JglYCDK76C2UyuTY87JYDhiWeDDnS/NwYr68pe/dTcITpL+Qf+kPBzJa9ID+IilWq4wwWVgwBnKRDHiURAMu5l4s48Qr5QRnhfM7weM8UuiKJwmJlA714wegPzqmuqEtkfRqwuNnSdcKT09Pg6dj63Y0HPreP7c3ofXcp0wqzCJSqUo6LmK64RFWFqo9TkGh2fkcCNuzjHtBYQpOY8IUndEiAnQpCA42XmDC57opQbQUIyLIBRsbJ2Nte6z7ROcLhQSOxzFWGMVE0CWJoefQrNktk0O3Bp8GQ+jVnmtSiqqEBFMWGh/g/nICJoV5MNG+wIY56BWiNV3KZlykRa9siqHSR+APNAa+8bpdpmYoK/MkSrCUQTdroNeUqKleUVUYn24cBU0OYZY/JhX6K4JFMBr6n7XN9uuWWkxkJGhmLb4IoLpCLURvT4zwVg/bdXp8pVJxsWoH05CZEIVpEnRTFaZ1MZ0txPa1Pxz1/RPodVsdJmp5Mhycb8kbJ0gTkmhgxAooIlU1OW2DpYBmf7d+qOfn/eFZf3R2eM/9rSPG2XP3pPGwoBJE6wTRP5mOnkmwziaSECwJ8I9AhoUCoyNQDm5gRvrAbTYkZK35J9dYg5hHearnAEAZUAvTOiNCLwcE3OhsAjrptF0DnHSYfGuCzvuj48MJGr0GQfopz4zz2GLWpmn0Lgjx9VzhH07I8RsQcvz/J2Q07A+P9SA5nJCTNyDk5H0QcqYX1MMJOX0DQk7fByHn3zVCzt6AkLN3QYhZQ4aHE7K9Tnk9Qj79/oS02psVAvS215fwSu84ybPq1JwPNCW6vuIipkwjI9sB6SpaKMsYUlq0LCJ8/e9f6LUbO7o8a6iO6qqNtnoXd4QE7wRNsViheyLzRKEwT81jt8wTGZckCCNqWDEFXvGiLSd4RKSkbI4SsiRJMKkK6k5LS7O0jK5xRFQbNCsR81Tv8IMwFzNsQiifXZJURjRLKCOIYY3FH4TLwrzUaq3Gdr5sDQR6e7GCU7bU9RmdO48jrIT1WQ4U6LkiMGdBwS2VRYVnn1oSU515guEErYeJC4WExkisBRrnHlGRu2NaD3ecFj4H5akI9JoWHC7WjciGuZkZkOKoYRx6Ldk27Dv7ZJp3AAv/epRELE1uhSupSHo46G0LerikGWd69Lv6vdfehsgw03kUCTxTTi5fzufLOZVK2MkULbhUY7kO4OXEusilErVM7+H0BbwWIi/G/ntYur+c7GFouu7VL2doLHBMeUq08Z9Izi/lpSvWWAyxmBOFmsuoc3TeYiF3zId3CWbETdDPmw6VjXacWV+D1Eb0Y3NgYfFHJ79dKELPsRGBazvI7J+aK9Q+3ncAVZ2XV9s1Oa5+obRasHYBthusytY+uCKeGrHAbCPNZrFcK8Gk2kTWd6jFfrLama5FHnMWJ8RxI2G2mrWDdYAfea6sjbKHR2Azox4BzGKwGXlyAL0quubqtYvf16JkkR2biw39x1xwIEn3pPPrsPP17tgzR/shn6knLAwXurtmCwfCjETrfG7XAF1qKkuxg+fttJXXG3Kr2c69w8bs70inKAonxEzh9CsJfVjsq9p2ENSFfYElsH2wY4gIUUCvoxBMLyaA4GgBinskUPYZ8NnGhznEP5Ae6DnnRbi5aKrbqaNlYDG5YRw2325m4ZYNeE0TYidlZDavrHXzZJvbUM+Mil0Da27sxaQZwOX9xSCSS+htRNt0aY/rQ4F6iVncUzma69i1ooKu0G0Dn80kUV1ac0bVRe9xpUgvGEKvEOuUiXppNRsGc6McYxGbA4m7SQgm4Tfg61rR0dzJ7EiXszL4ZLK3+OmU0KAlNKU6IYIrLATFc9K/J0qPOXCjS8D+NTHFaUe2wwtJGqZ01mHDQfN1S+u+sDop251nLtaEDEalMWfhOxc8z6RBs/zlkLm2oexyZcWKrRZJH4kAocIqd++5Wh1nuVEI/KrH5fMWHZuvdmxchlfTKQqV0GTqwnv9fotiip9pmqeocJIQNlcLt6j51BPN3Kk4lJ0b3/1IHQTmzXTybTpB+s8BSI6+D8m6r1dEc3R6+tPwNFPuzlHQqWSqCQfpBQKlNlVRuYbvWKmKEwLWOLxzT8DmGKf9nyD06/8A+IOCnA=="],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::5.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::5.0","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"5.0","lidvid":"urn:nasa:pds:insight_rad:data_derived::5.0","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::5.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::4.5","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"4.5","lidvid":"urn:nasa:pds:insight_rad:data_derived::4.5","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::5.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::4.4","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"4.4","lidvid":"urn:nasa:pds:insight_rad:data_derived::4.4","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::4.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::4.3","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"4.3","lidvid":"urn:nasa:pds:insight_rad:data_derived::4.3","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::4.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::4.2","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"4.2","lidvid":"urn:nasa:pds:insight_rad:data_derived::4.2","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::4.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::4.1","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"4.1","lidvid":"urn:nasa:pds:insight_rad:data_derived::4.1","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::4.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::4.0","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"4.0","lidvid":"urn:nasa:pds:insight_rad:data_derived::4.0","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::4.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::3.5","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"3.5","lidvid":"urn:nasa:pds:insight_rad:data_derived::3.5","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlWtlu2zgUfS/QfyD8HFuWs7QxGBVBjEwNJDNBlCkG80IwEm0TkEiBpJz474ekJFsLbcdt0xQTo3As8W4853K5ZOGX5zQBSyIk5eyi5w+GPUBYxGPK5he9vx+u+597X4KPH6CR66c8JglYCDK76C2UyuTY87JYDhiWeDDnS/NwYr68pe/dTcITpL+Qf+kPBzJa9ID+IilWq4wwWVgwBnKRDHiURAMu5l4s48Qr5QRnhfM7weM8UuiKJwmJlA714wegPzqmuqEtkfRqwuNnSdcKT09Pg6dj63Y0HPreP7c3ofXcp0wqzCJSqUo6LmK64RFWFqo9TkGh2fkcCNuzjHtBYQpOY8IUndEiAnQpCA42XmDC57opQbQUIyLIBRsbJ2Nte6z7ROcLhQSOxzFWGMVE0CWJoefQrNktk0O3Bp8GQ+jVnmtSiqqEBFMWGh/g/nICJoV5MNG+wIY56BWiNV3KZlykRa9siqHSR+APNAa+8bpdpmYoK/MkSrCUQTdroNeUqKleUVUYn24cBU0OYZY/JhX6K4JFMBr6n7XN9uuWWkxkJGhmLb4IoLpCLURvT4zwVg/bdXp8pVJxsWoH05CZEIVpEnRTFaZ1MZ0txPa1Pxz1/RPodVsdJmp5Mhycb8kbJ0gTkmhgxAooIlU1OW2DpYBmf7d+qOfn/eFZf3R2eM/9rSPG2XP3pPGwoBJE6wTRP5mOnkmwziaSECwJ8I9AhoUCoyNQDm5gRvrAbTYkZK35J9dYg5hHearnAEAZUAvTOiNCLwcE3OhsAjrptF0DnHSYfGuCzvuj48MJGr0GQfopz4zz2GLWpmn0Lgjx9VzhH07I8RsQcvz/J2Q07A+P9SA5nJCTNyDk5H0QcqYX1MMJOX0DQk7fByHn3zVCzt6AkLN3QYhZQ4aHE7K9Tnk9Qj79/oS02psVAvS215fwSu84ybPq1JwPNCW6vuIipkwjI9sB6SpaKMsYUlq0LCJ8/e9f6LUbO7o8a6iO6qqNtnoXd4QE7wRNsViheyLzRKEwT81jt8wTGZckCCNqWDEFXvGiLSd4RKSkbI4SsiRJMKkK6k5LS7O0jK5xRFQbNCsR81Tv8IMwFzNsQiifXZJURjRLKCOIYY3FH4TLwrzUaq3Gdr5sDQR6e7GCU7bU9RmdO48jrIT1WQ4U6LkiMGdBwS2VRYVnn1oSU515guEErYeJC4WExkisBRrnHlGRu2NaD3ecFj4H5akI9JoWHC7WjciGuZkZkOKoYRx6Ldk27Dv7ZJp3AAv/epRELE1uhSupSHo46G0LerikGWd69Lv6vdfehsgw03kUCTxTTi5fzufLOZVK2MkULbhUY7kO4OXEusilErVM7+H0BbwWIi/G/ntYur+c7GFouu7VL2doLHBMeUq08Z9Izi/lpSvWWAyxmBOFmsuoc3TeYiF3zId3CWbETdDPmw6VjXacWV+D1Eb0Y3NgYfFHJ79dKELPsRGBazvI7J+aK9Q+3ncAVZ2XV9s1Oa5+obRasHYBthusytY+uCKeGrHAbCPNZrFcK8Gk2kTWd6jFfrLama5FHnMWJ8RxI2G2mrWDdYAfea6sjbKHR2Azox4BzGKwGXlyAL0quubqtYvf16JkkR2biw39x1xwIEn3pPPrsPP17tgzR/shn6knLAwXurtmCwfCjETrfG7XAF1qKkuxg+fttJXXG3Kr2c69w8bs70inKAonxEzh9CsJfVjsq9p2ENSFfYElsH2wY4gIUUCvoxBMLyaA4GgBinskUPYZ8NnGhznEP5Ae6DnnRbi5aKrbqaNlYDG5YRw2325m4ZYNeE0TYidlZDavrHXzZJvbUM+Mil0Da27sxaQZwOX9xSCSS+htRNt0aY/rQ4F6iVncUzma69i1ooKu0G0Dn80kUV1ac0bVRe9xpUgvGEKvEOuUiXppNRsGc6McYxGbA4m7SQgm4Tfg61rR0dzJ7EiXszL4ZLK3+OmU0KAlNKU6IYIrLATFc9K/J0qPOXCjS8D+NTHFaUe2wwtJGqZ01mHDQfN1S+u+sDop251nLtaEDEalMWfhOxc8z6RBs/zlkLm2oexyZcWKrRZJH4kAocIqd++5Wh1nuVEI/KrH5fMWHZuvdmxchlfTKQqV0GTqwnv9fotiip9pmqeocJIQNlcLt6j51BPN3Kk4lJ0b3/1IHQTmzXTybTpB+s8BSI6+D8m6r1dEc3R6+tPwNFPuzlHQqWSqCQfpBQKlNlVRuYbvWKmKEwLWOLxzT8DmGKf9nyD06/8A+IOCnA=="],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::4.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::3.4","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"3.4","lidvid":"urn:nasa:pds:insight_rad:data_derived::3.4","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::3.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::3.3","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"3.3","lidvid":"urn:nasa:pds:insight_rad:data_derived::3.3","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlWtlu2zgUfS/QfyD8HFuWs7QxGBVBjEwNJDNBlCkG80IwEm0TkEiBpJz474ekJFsLbcdt0xQTo3As8W4853K5ZOGX5zQBSyIk5eyi5w+GPUBYxGPK5he9vx+u+597X4KPH6CR66c8JglYCDK76C2UyuTY87JYDhiWeDDnS/NwYr68pe/dTcITpL+Qf+kPBzJa9ID+IilWq4wwWVgwBnKRDHiURAMu5l4s48Qr5QRnhfM7weM8UuiKJwmJlA714wegPzqmuqEtkfRqwuNnSdcKT09Pg6dj63Y0HPreP7c3ofXcp0wqzCJSqUo6LmK64RFWFqo9TkGh2fkcCNuzjHtBYQpOY8IUndEiAnQpCA42XmDC57opQbQUIyLIBRsbJ2Nte6z7ROcLhQSOxzFWGMVE0CWJoefQrNktk0O3Bp8GQ+jVnmtSiqqEBFMWGh/g/nICJoV5MNG+wIY56BWiNV3KZlykRa9siqHSR+APNAa+8bpdpmYoK/MkSrCUQTdroNeUqKleUVUYn24cBU0OYZY/JhX6K4JFMBr6n7XN9uuWWkxkJGhmLb4IoLpCLURvT4zwVg/bdXp8pVJxsWoH05CZEIVpEnRTFaZ1MZ0txPa1Pxz1/RPodVsdJmp5Mhycb8kbJ0gTkmhgxAooIlU1OW2DpYBmf7d+qOfn/eFZf3R2eM/9rSPG2XP3pPGwoBJE6wTRP5mOnkmwziaSECwJ8I9AhoUCoyNQDm5gRvrAbTYkZK35J9dYg5hHearnAEAZUAvTOiNCLwcE3OhsAjrptF0DnHSYfGuCzvuj48MJGr0GQfopz4zz2GLWpmn0Lgjx9VzhH07I8RsQcvz/J2Q07A+P9SA5nJCTNyDk5H0QcqYX1MMJOX0DQk7fByHn3zVCzt6AkLN3QYhZQ4aHE7K9Tnk9Qj79/oS02psVAvS215fwSu84ybPq1JwPNCW6vuIipkwjI9sB6SpaKMsYUlq0LCJ8/e9f6LUbO7o8a6iO6qqNtnoXd4QE7wRNsViheyLzRKEwT81jt8wTGZckCCNqWDEFXvGiLSd4RKSkbI4SsiRJMKkK6k5LS7O0jK5xRFQbNCsR81Tv8IMwFzNsQiifXZJURjRLKCOIYY3FH4TLwrzUaq3Gdr5sDQR6e7GCU7bU9RmdO48jrIT1WQ4U6LkiMGdBwS2VRYVnn1oSU515guEErYeJC4WExkisBRrnHlGRu2NaD3ecFj4H5akI9JoWHC7WjciGuZkZkOKoYRx6Ldk27Dv7ZJp3AAv/epRELE1uhSupSHo46G0LerikGWd69Lv6vdfehsgw03kUCTxTTi5fzufLOZVK2MkULbhUY7kO4OXEusilErVM7+H0BbwWIi/G/ntYur+c7GFouu7VL2doLHBMeUq08Z9Izi/lpSvWWAyxmBOFmsuoc3TeYiF3zId3CWbETdDPmw6VjXacWV+D1Eb0Y3NgYfFHJ79dKELPsRGBazvI7J+aK9Q+3ncAVZ2XV9s1Oa5+obRasHYBthusytY+uCKeGrHAbCPNZrFcK8Gk2kTWd6jFfrLama5FHnMWJ8RxI2G2mrWDdYAfea6sjbKHR2Azox4BzGKwGXlyAL0quubqtYvf16JkkR2biw39x1xwIEn3pPPrsPP17tgzR/shn6knLAwXurtmCwfCjETrfG7XAF1qKkuxg+fttJXXG3Kr2c69w8bs70inKAonxEzh9CsJfVjsq9p2ENSFfYElsH2wY4gIUUCvoxBMLyaA4GgBinskUPYZ8NnGhznEP5Ae6DnnRbi5aKrbqaNlYDG5YRw2325m4ZYNeE0TYidlZDavrHXzZJvbUM+Mil0Da27sxaQZwOX9xSCSS+htRNt0aY/rQ4F6iVncUzma69i1ooKu0G0Dn80kUV1ac0bVRe9xpUgvGEKvEOuUiXppNRsGc6McYxGbA4m7SQgm4Tfg61rR0dzJ7EiXszL4ZLK3+OmU0KAlNKU6IYIrLATFc9K/J0qPOXCjS8D+NTHFaUe2wwtJGqZ01mHDQfN1S+u+sDop251nLtaEDEalMWfhOxc8z6RBs/zlkLm2oexyZcWKrRZJH4kAocIqd++5Wh1nuVEI/KrH5fMWHZuvdmxchlfTKQqV0GTqwnv9fotiip9pmqeocJIQNlcLt6j51BPN3Kk4lJ0b3/1IHQTmzXTybTpB+s8BSI6+D8m6r1dEc3R6+tPwNFPuzlHQqWSqCQfpBQKlNlVRuYbvWKmKEwLWOLxzT8DmGKf9nyD06/8A+IOCnA=="],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::3.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::3.2","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"3.2","lidvid":"urn:nasa:pds:insight_rad:data_derived::3.2","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::3.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::3.1","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"3.1","lidvid":"urn:nasa:pds:insight_rad:data_derived::3.1","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::3.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::3.0","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"3.0","lidvid":"urn:nasa:pds:insight_rad:data_derived::3.0","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::3.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::2.5","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"2.5","lidvid":"urn:nasa:pds:insight_rad:data_derived::2.5","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::3.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::2.4","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"2.4","lidvid":"urn:nasa:pds:insight_rad:data_derived::2.4","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::2.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::2.3","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"2.3","lidvid":"urn:nasa:pds:insight_rad:data_derived::2.3","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::2.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::2.2","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"2.2","lidvid":"urn:nasa:pds:insight_rad:data_derived::2.2","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlWtlu2zgUfS/QfyD8HFuWs7QxGBVBjEwNJDNBlCkG80IwEm0TkEiBpJz474ekJFsLbcdt0xQTo3As8W4853K5ZOGX5zQBSyIk5eyi5w+GPUBYxGPK5he9vx+u+597X4KPH6CR66c8JglYCDK76C2UyuTY87JYDhiWeDDnS/NwYr68pe/dTcITpL+Qf+kPBzJa9ID+IilWq4wwWVgwBnKRDHiURAMu5l4s48Qr5QRnhfM7weM8UuiKJwmJlA714wegPzqmuqEtkfRqwuNnSdcKT09Pg6dj63Y0HPreP7c3ofXcp0wqzCJSqUo6LmK64RFWFqo9TkGh2fkcCNuzjHtBYQpOY8IUndEiAnQpCA42XmDC57opQbQUIyLIBRsbJ2Nte6z7ROcLhQSOxzFWGMVE0CWJoefQrNktk0O3Bp8GQ+jVnmtSiqqEBFMWGh/g/nICJoV5MNG+wIY56BWiNV3KZlykRa9siqHSR+APNAa+8bpdpmYoK/MkSrCUQTdroNeUqKleUVUYn24cBU0OYZY/JhX6K4JFMBr6n7XN9uuWWkxkJGhmLb4IoLpCLURvT4zwVg/bdXp8pVJxsWoH05CZEIVpEnRTFaZ1MZ0txPa1Pxz1/RPodVsdJmp5Mhycb8kbJ0gTkmhgxAooIlU1OW2DpYBmf7d+qOfn/eFZf3R2eM/9rSPG2XP3pPGwoBJE6wTRP5mOnkmwziaSECwJ8I9AhoUCoyNQDm5gRvrAbTYkZK35J9dYg5hHearnAEAZUAvTOiNCLwcE3OhsAjrptF0DnHSYfGuCzvuj48MJGr0GQfopz4zz2GLWpmn0Lgjx9VzhH07I8RsQcvz/J2Q07A+P9SA5nJCTNyDk5H0QcqYX1MMJOX0DQk7fByHn3zVCzt6AkLN3QYhZQ4aHE7K9Tnk9Qj79/oS02psVAvS215fwSu84ybPq1JwPNCW6vuIipkwjI9sB6SpaKMsYUlq0LCJ8/e9f6LUbO7o8a6iO6qqNtnoXd4QE7wRNsViheyLzRKEwT81jt8wTGZckCCNqWDEFXvGiLSd4RKSkbI4SsiRJMKkK6k5LS7O0jK5xRFQbNCsR81Tv8IMwFzNsQiifXZJURjRLKCOIYY3FH4TLwrzUaq3Gdr5sDQR6e7GCU7bU9RmdO48jrIT1WQ4U6LkiMGdBwS2VRYVnn1oSU515guEErYeJC4WExkisBRrnHlGRu2NaD3ecFj4H5akI9JoWHC7WjciGuZkZkOKoYRx6Ldk27Dv7ZJp3AAv/epRELE1uhSupSHo46G0LerikGWd69Lv6vdfehsgw03kUCTxTTi5fzufLOZVK2MkULbhUY7kO4OXEusilErVM7+H0BbwWIi/G/ntYur+c7GFouu7VL2doLHBMeUq08Z9Izi/lpSvWWAyxmBOFmsuoc3TeYiF3zId3CWbETdDPmw6VjXacWV+D1Eb0Y3NgYfFHJ79dKELPsRGBazvI7J+aK9Q+3ncAVZ2XV9s1Oa5+obRasHYBthusytY+uCKeGrHAbCPNZrFcK8Gk2kTWd6jFfrLama5FHnMWJ8RxI2G2mrWDdYAfea6sjbKHR2Azox4BzGKwGXlyAL0quubqtYvf16JkkR2biw39x1xwIEn3pPPrsPP17tgzR/shn6knLAwXurtmCwfCjETrfG7XAF1qKkuxg+fttJXXG3Kr2c69w8bs70inKAonxEzh9CsJfVjsq9p2ENSFfYElsH2wY4gIUUCvoxBMLyaA4GgBinskUPYZ8NnGhznEP5Ae6DnnRbi5aKrbqaNlYDG5YRw2325m4ZYNeE0TYidlZDavrHXzZJvbUM+Mil0Da27sxaQZwOX9xSCSS+htRNt0aY/rQ4F6iVncUzma69i1ooKu0G0Dn80kUV1ac0bVRe9xpUgvGEKvEOuUiXppNRsGc6McYxGbA4m7SQgm4Tfg61rR0dzJ7EiXszL4ZLK3+OmU0KAlNKU6IYIrLATFc9K/J0qPOXCjS8D+NTHFaUe2wwtJGqZ01mHDQfN1S+u+sDop251nLtaEDEalMWfhOxc8z6RBs/zlkLm2oexyZcWKrRZJH4kAocIqd++5Wh1nuVEI/KrH5fMWHZuvdmxchlfTKQqV0GTqwnv9fotiip9pmqeocJIQNlcLt6j51BPN3Kk4lJ0b3/1IHQTmzXTybTpB+s8BSI6+D8m6r1dEc3R6+tPwNFPuzlHQqWSqCQfpBQKlNlVRuYbvWKmKEwLWOLxzT8DmGKf9nyD06/8A+IOCnA=="],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::2.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::2.1","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"2.1","lidvid":"urn:nasa:pds:insight_rad:data_derived::2.1","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::2.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::2.0","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"2.0","lidvid":"urn:nasa:pds:insight_rad:data_derived::2.0","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::2.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::1.5","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"1.5","lidvid":"urn:nasa:pds:insight_rad:data_derived::1.5","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::2.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::1.4","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"1.4","lidvid":"urn:nasa:pds:insight_rad:data_derived::1.4","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlWtlu2zgUfS/QfyD8HFuWs7QxGBVBjEwNJDNBlCkG80IwEm0TkEiBpJz474ekJFsLbcdt0xQTo3As8W4853K5ZOGX5zQBSyIk5eyi5w+GPUBYxGPK5he9vx+u+597X4KPH6CR66c8JglYCDK76C2UyuTY87JYDhiWeDDnS/NwYr68pe/dTcITpL+Qf+kPBzJa9ID+IilWq4wwWVgwBnKRDHiURAMu5l4s48Qr5QRnhfM7weM8UuiKJwmJlA714wegPzqmuqEtkfRqwuNnSdcKT09Pg6dj63Y0HPreP7c3ofXcp0wqzCJSqUo6LmK64RFWFqo9TkGh2fkcCNuzjHtBYQpOY8IUndEiAnQpCA42XmDC57opQbQUIyLIBRsbJ2Nte6z7ROcLhQSOxzFWGMVE0CWJoefQrNktk0O3Bp8GQ+jVnmtSiqqEBFMWGh/g/nICJoV5MNG+wIY56BWiNV3KZlykRa9siqHSR+APNAa+8bpdpmYoK/MkSrCUQTdroNeUqKleUVUYn24cBU0OYZY/JhX6K4JFMBr6n7XN9uuWWkxkJGhmLb4IoLpCLURvT4zwVg/bdXp8pVJxsWoH05CZEIVpEnRTFaZ1MZ0txPa1Pxz1/RPodVsdJmp5Mhycb8kbJ0gTkmhgxAooIlU1OW2DpYBmf7d+qOfn/eFZf3R2eM/9rSPG2XP3pPGwoBJE6wTRP5mOnkmwziaSECwJ8I9AhoUCoyNQDm5gRvrAbTYkZK35J9dYg5hHearnAEAZUAvTOiNCLwcE3OhsAjrptF0DnHSYfGuCzvuj48MJGr0GQfopz4zz2GLWpmn0Lgjx9VzhH07I8RsQcvz/J2Q07A+P9SA5nJCTNyDk5H0QcqYX1MMJOX0DQk7fByHn3zVCzt6AkLN3QYhZQ4aHE7K9Tnk9Qj79/oS02psVAvS215fwSu84ybPq1JwPNCW6vuIipkwjI9sB6SpaKMsYUlq0LCJ8/e9f6LUbO7o8a6iO6qqNtnoXd4QE7wRNsViheyLzRKEwT81jt8wTGZckCCNqWDEFXvGiLSd4RKSkbI4SsiRJMKkK6k5LS7O0jK5xRFQbNCsR81Tv8IMwFzNsQiifXZJURjRLKCOIYY3FH4TLwrzUaq3Gdr5sDQR6e7GCU7bU9RmdO48jrIT1WQ4U6LkiMGdBwS2VRYVnn1oSU515guEErYeJC4WExkisBRrnHlGRu2NaD3ecFj4H5akI9JoWHC7WjciGuZkZkOKoYRx6Ldk27Dv7ZJp3AAv/epRELE1uhSupSHo46G0LerikGWd69Lv6vdfehsgw03kUCTxTTi5fzufLOZVK2MkULbhUY7kO4OXEusilErVM7+H0BbwWIi/G/ntYur+c7GFouu7VL2doLHBMeUq08Z9Izi/lpSvWWAyxmBOFmsuoc3TeYiF3zId3CWbETdDPmw6VjXacWV+D1Eb0Y3NgYfFHJ79dKELPsRGBazvI7J+aK9Q+3ncAVZ2XV9s1Oa5+obRasHYBthusytY+uCKeGrHAbCPNZrFcK8Gk2kTWd6jFfrLama5FHnMWJ8RxI2G2mrWDdYAfea6sjbKHR2Azox4BzGKwGXlyAL0quubqtYvf16JkkR2biw39x1xwIEn3pPPrsPP17tgzR/shn6knLAwXurtmCwfCjETrfG7XAF1qKkuxg+fttJXXG3Kr2c69w8bs70inKAonxEzh9CsJfVjsq9p2ENSFfYElsH2wY4gIUUCvoxBMLyaA4GgBinskUPYZ8NnGhznEP5Ae6DnnRbi5aKrbqaNlYDG5YRw2325m4ZYNeE0TYidlZDavrHXzZJvbUM+Mil0Da27sxaQZwOX9xSCSS+htRNt0aY/rQ4F6iVncUzma69i1ooKu0G0Dn80kUV1ac0bVRe9xpUgvGEKvEOuUiXppNRsGc6McYxGbA4m7SQgm4Tfg61rR0dzJ7EiXszL4ZLK3+OmU0KAlNKU6IYIrLATFc9K/J0qPOXCjS8D+NTHFaUe2wwtJGqZ01mHDQfN1S+u+sDop251nLtaEDEalMWfhOxc8z6RBs/zlkLm2oexyZcWKrRZJH4kAocIqd++5Wh1nuVEI/KrH5fMWHZuvdmxchlfTKQqV0GTqwnv9fotiip9pmqeocJIQNlcLt6j51BPN3Kk4lJ0b3/1IHQTmzXTybTpB+s8BSI6+D8m6r1dEc3R6+tPwNFPuzlHQqWSqCQfpBQKlNlVRuYbvWKmKEwLWOLxzT8DmGKf9nyD06/8A+IOCnA=="],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::1.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::1.3","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"1.3","lidvid":"urn:nasa:pds:insight_rad:data_derived::1.3","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::1.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::1.2","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"1.2","lidvid":"urn:nasa:pds:insight_rad:data_derived::1.2","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::1.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::1.1","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"1.1","lidvid":"urn:nasa:pds:insight_rad:data_derived::1.1","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::1.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived::1.0","_score":1.6226832,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived::1.0","title":"InSight RAD Derived Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived::7.0","urn:nasa:pds:insight_rad:data_derived"],"description":["InSight RAD Derived Data Collection","Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:49:36Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.csv"],"ops:Data_File_Info/ops:file_size":["560"],"ops:Data_File_Info/ops:md5_checksum":["e3b799cc6a6a780deab6dd1529d81330"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.886687Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:50:32Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/collection_data_rad_derived.xml"],"ops:Label_File_Info/ops:file_size":["9206"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1P4zgQ/itWPrfpG7BHviEqbivBHSJodTp2ZbnJtLWU2JHtFBDqf78ZJ+kbod09VkWoSeN5e2Y8zzh9C+6NTsvE8WudZZA4qVUQvQWTFJSTM5kIesKvDAh6XNTCSSasDaI25U5wp9ON5ldpnTavpLzzfAxOyCyInt6CfPt5Khyg4WF/8Ee3P+wOztBgCjYxsqhiC8aQySWYV+bAOoZ3tnJb33GZBlE/vFx1PrR82e1fdIcX7yw/LqRlyRoK3ioMUlk2UbGcLxx7gAyEBTbosEIYx4YdloLBaFKG1kX43XxXrOUvBljr/qUxbpbqpMwxxUwq5ha0OgMDKgF2iwljM23QMmXIhnvQBoeBXXaHo6PA8FtZkFrqPe3DG54EyPAgkAHWfvBZIKOTABl9DGTY7/ZHWJTPAjk7CZCzw0AusCE/C+T8JEDODwO5/A0VuTgJkIuDQKhH+p8F8uUkQL6sfqw6gVQokldAEBVkvKHvKBiEg344CAlPpucIN0PFagiBwfXSqEgJK6IitRGSMoHgRqQRMS+vaXjfaye4lq7yN9n49pOsnGZNTl9BoAcaOfu5XCfraszGNdOP0R/bGniIy0mXwc+Lv+SZoum5cK6Iej0EFBKycK6X9OWMPnpLYr8bmYEfvhj+EpNRT1J6TNcZLSuRk+9NxbnPCKamyUqY2CUaS9DOeg9xJ/O9QYuR7XjRs5kFR3elkngNpq+499AOjkWUwimLGgYSbVLrc40z0Uo159YJlQqT+hoE9+OYjeNvjPBU0hhXJnPpfF2vhTFSzKH7AA5rjDtJQfcGfC2x9NmetM5z4Q3VO4+714JwyCZyvhCW55BPwfD6uILyD5XjcW0qrbJI1rcePb3VHlVJ6jhrO0EuXmRe5rxayEDN3eJASnA6B3VB7nwMLMb9V1rqUqpKHe1VfD2Z8NgZTFdAPb7rd/jLfofn5xvPt5Pxt8mY46XV7dby6kcnmBtdFljAfp1vS6N5taKcNTmm7vanQvRmFHbmesknLZMpN5sn7a3acIeNmjueS1uf3RIsq8cREOkQtdxVa2zcUM42o1Xs03TbWmRaqjQD1sZnRE1b7MPEVJfOW6mD6DBbiAQSI2auw3D/orh1pgo5bNtxWw3n9Bqer+b/TciiGBGj4cW3r5W2NTdf70c9ophYz9yzMJQJrMsMw2dxAcl6WOzzdVtiGltpS54/TlrdWPaA4XccuDF84nSaaoZxRTNsJ6GPi2MT7kB62kAj9zDvxu8gMKYCjmEbha3OQCQLVo0eVofF9GzjhV4ifiU5NFRfrIxssoBc3Oqknm/HRktrj1QIUNEe0OwhnZ9x/OCDKxzYL5Z4evfdcTvYKnyq/3rwRRjwJsLn5+fweRRqM+8N+/1B75+729iD6VL/CSo42ccN/uLWr6E0pqyT892X0zZ2OrJ5kspwJLcNRjUlhPXWOl6QHfVgQ8Q1Q6GBWq1mNRL5e2rBLGlcxq/WQU6xvlPbF8IX7bzQyu/ep08ibtiNL7R10Yb9DsGWlu8pHkIbr236Nv4t0UbY0VLngKZ+OtCtGLHLNvFNtiSok+6NzAWeIB7AlpnjcZnT1+q0aAptPaZEQrUpkQMTsP7Ak8ESMv/TRHMKrcX4DWbAWTKRSpvIIsPTTXNi+xO0rcT88UDnQlLrxqWn8oBG8CMe0rDmeHSRShB7oSHrdLF3hBviEW6A//+iHWwa41qOeNU62RRmDo7v/sLzyf5x3mZUZEKBCzFr9njTVDpbtbmr1Grhe28Ls7Ba/QfnnmQ1"],"ops:Label_File_Info/ops:md5_checksum":["8abb856e5b847f939e422fda2f97a1cf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Derived Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-02-14T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_derived.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Derived Data Collection"],"pds:Identification_Area/pds:version_id":["7.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Derived Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 2, derived data. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-06-26T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_derived::1.1"}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042.json deleted file mode 100644 index 883caa640..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00014_20181211_073042","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042"],"description":["Peer review approved version","First release of this data product","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["597785416-30671"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00014M16:36:49"],"insight:Observation_Information/insight:start_sol_number":["00014"],"insight:Observation_Information/insight:start_solar_longitude":["304.290"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00014_20181211_073042.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00014_20181211_073042.tab"],"ops:Data_File_Info/ops:file_size":["14118516"],"ops:Data_File_Info/ops:md5_checksum":["68888c73b97ea016d5d9e739267d2b51"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.090863Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-06-11T21:16:08Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00014_20181211_073042.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00014_20181211_073042.xml"],"ops:Label_File_Info/ops:file_size":["15758"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["597db33270d23ffd95bda92c708cdc35"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2019-06-04T16:08:18.161Z"],"pds:File/pds:file_name":["hp3_rad_der_00014_20181211_073042.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00014_20181211_073042"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release of this data product"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2018-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0","1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["75906"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-12-11T07:30:42.598Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.945Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217.json deleted file mode 100644 index 95d1146e2..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00122_20190401_123217","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217"],"description":["Release 2","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0002"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["607350696-25494"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["614547537-60293"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00122M10:32:58"],"insight:Observation_Information/insight:start_sol_number":["00122"],"insight:Observation_Information/insight:start_solar_longitude":["4.206"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00203M12:11:14"],"insight:Observation_Information/insight:stop_sol_number":["00203"],"insight:Observation_Information/insight:stop_solar_longitude":["43.102"],"ops:Data_File_Info/ops:creation_date_time":["2019-08-31T00:47:20Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_size":["7818510"],"ops:Data_File_Info/ops:md5_checksum":["8ac04d6df6172bb3e930351d90e3b50c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.140806Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-09-08T17:15:18Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_size":["15475"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["581aa69ef21e2e0c54f5fd065450b2c0"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2019-08-30T19:47:19.122Z"],"pds:File/pds:file_name":["hp3_rad_der_00122_20190401_123217.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00122_20190401_123217"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 2"],"pds:Modification_Detail/pds:modification_date":["2019-09-23T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["42035"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-04-01T00:32:17.929Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-06-23T07:39:50.783Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044.json deleted file mode 100644 index bbff94815..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00213_20190703_052044","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044"],"description":["Release 3","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0003"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["615446390-36110"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["619698830-38207"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00213M15:11:18"],"insight:Observation_Information/insight:start_sol_number":["00213"],"insight:Observation_Information/insight:start_solar_longitude":["47.736"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00261M12:49:07"],"insight:Observation_Information/insight:stop_sol_number":["00261"],"insight:Observation_Information/insight:stop_solar_longitude":["69.345"],"ops:Data_File_Info/ops:creation_date_time":["2019-12-11T19:49:54Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00213_20190703_052044.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00213_20190703_052044.tab"],"ops:Data_File_Info/ops:file_size":["3441930"],"ops:Data_File_Info/ops:md5_checksum":["bec927a762408b2c84b1d33d5522386c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.171786Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-13T17:55:31Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00213_20190703_052044.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00213_20190703_052044.xml"],"ops:Label_File_Info/ops:file_size":["15476"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["e8d339e131eec17e2ffb9cb8a057cb95"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2019-12-11T13:49:52.509Z"],"pds:File/pds:file_name":["hp3_rad_der_00213_20190703_052044.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00213_20190703_052044"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 3"],"pds:Modification_Detail/pds:modification_date":["2019-12-13T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["18505"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-07-03T17:20:44.785Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-08-21T22:34:50.855Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040.json deleted file mode 100644 index fd7233ae9..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00305_20191006_053040","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040"],"description":["Release 4","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0004"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["623611776-38863"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["631105491-14156"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00305M14:40:03"],"insight:Observation_Information/insight:start_sol_number":["00305"],"insight:Observation_Information/insight:start_solar_longitude":["89.169"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00390M00:33:49"],"insight:Observation_Information/insight:stop_sol_number":["00390"],"insight:Observation_Information/insight:stop_solar_longitude":["128.783"],"ops:Data_File_Info/ops:creation_date_time":["2020-03-06T22:45:10Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_size":["5417250"],"ops:Data_File_Info/ops:md5_checksum":["c559e69c0262555bcc53f177653d7c87"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.191182Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-03-09T20:10:12Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_size":["15477"],"ops:Label_File_Info/ops:json_blob":["eJy1WXtv4jgQ/ypWpJPupJI6CVDIf1W7vUVXtlVhT3v7UORNDFiX2Dnb0PZW/e43dkIIlEcDe6sVJc68fjPj8TD+4dxLkcxjHd19V1QuiGaCk9QJfziDhHLNJiy2a9GlpMQs5yV9nBKlnHAH/5kzFMmK+T1TWshnw7+2fk01YVZbVl9OiKYg2sc+buGghfsgL6Eqliw37+HVA00pURS14c2CSmW4WOKE3svLmcP4RMisEAVyaRqVJMDouR52PRcDXyqmoDAFvgIolfB+LnnIiSJhnqiQccWmMx1JkoRgE4kSKtmCJuEsD8yieY4wDnAn8rHX9zDuRrgT4DbeNOvM0UynBtSAj4xM9P4+QA8kYSKjmkr07ikH2RlYgq4LJaj07BuUAeanLOUmHDOt8/D8HKx3DQx3KhbmoW0+zhce2PVAJ1RSHtPoFqJiI83BAohaVL1ywi8/nJQlkVytbHdNIuK5sVqFy29RxpR19plTcUf6OTcirBO1qLjA8uP1gF9MYJbuUUy9TeU34y7FQhXPaEZuRZF0h32HzL+v8is3fw2t2kN8fn89akfwEXmXkHFPKlly1iVsFVD677yEbjQf1vqaqbBg8GE0+P392FoReb3AmuKU+bL07j7srwVX3ODEFefj46P7GLhCTs99jL3zT8PbkXVwCzg1MaE9c25YSm0leV1uxuQ7vLuaEUlibbbiD0dMJoraDJ1zZoz8/qyNlFhAwkIkQ/xi0jkWMllnlMVaSvlUz/bwe70uSJhKMc9h72BjH03XZME2mNg1Ps++mwXYyaWwa2KFcZKZNPvImdnwJEWxAN2Mw9sEadjRQFOISKtM220QmFMkbJG8l6OrwSAymqIxiIr+Gl5HH8dXr8qhoUCEbyo8hN/vvJgNuI7QXyH8sMI3EmkTIP7FViSm0kxByab9IB0V+hGUbqRnTCEIPRITlEGdn0tq9/7bkW0DFlTAvHO/jZRFVMIbEqnQWM4pMvUgRWAQkWjcMHxBsBX1A7Un4jrkQo82KpVVZkKHGEfWlJmYwyfAD7r9PrgCVCQN4Pe2wG9X8BM6lZSuxRb0p4JPmZ4n4IJRE9Bt/+2gLTY155Cr05SiiRQZ4kLqGZw/CIoFUzl8BY/kkvEpov/MGRdPp+Hu7MYNhlz+y7I5yGwAuLN9l+6JskVcKEKSpqBgQZEWBfTT0HX3orufmSapcPbN3Z/Ia4Kzi9+O0ygDQDcCdKCUcWpy1x4Y6Nfbu9FvKKamyTgN68VOrAMemy4uPh5rvzFWqEoTAhq56TVTRPSm1mMg9naHk00zgk4O6kWvAVA4thMiE5TQBbOCkYBDrlBqAmysyXdbc4wD+gcccHKke9tPpuMcwPZbc4wDPFx54Jca+BlJxGNztP3u29HemKbHYpygFIADUFWohVPpZyDzGtUqv1HjhDtHFSv/fytWnt+oWjVD67V/UrnyTwQZHFGvmkH1G/RURxWsU12wp6/aWbGauSBo0GEdVbJOdUHnQMlqBrfdoL86WLNOhbbqr/5YQRuPik6nEaxOo3aq2KyaZjmVRMMPIPvDaEPrUYgu9iBqFqhOo6ZpN6JTY9Tbhuj6qCB1G7RH4xoUKqWQPy1E/X2AmsXookG7sxtQswh9K4mVgfJyVo5j4Mnve35n+RwlNGUZs2MW54pIyciUth4oqOfoFk7l1g2lyQr/w+U1un738MrqOzi/JWx4qAB2bqDNIAkZewjjCpUj2/qs1bjDNUNTM44yUCZmLFWqOThtdUGBASzpalgd2blLbWLdHXsXYbsT4r7r+RefHTOWro28qmn6gC+o0my6ufp6IHtgTmr9/6RDVhcYlsM7dznn2zMfXWM0zqmalVHJWjIMy/EukJRfK7tLNWEd6WA1jK+TKC1ym8BplFHCIzsDWbpxJNIW+L6PhxiHQRC2zQXAkrPEFNlzfBm10ceHm8urd2g4GI0Gdx9q5EpM9CORFeWn4S26lPGMLdBY2BHQyiQitTGk2oiOTYA6SQ41LJZkYu4/RPx3FIs511EOjKxA6K2Ilzclpd8gf1tlMq4pBT8U4KsBTG13QUux3g313Ite8LLF6LcJ6EE+2t+6m/rXMPfxNgfWLzQcz8Wuv88zhWHWP0De9YOuB8Wo2wp6vW6wnxEsqvgCD1r7dt9rQVvQ6b6K1oEMwp2h1w7bOMR1lbK4PKpDxu3aFmV8Go2eFRxVxpGba9GVyHLBrTu/nLhXlZblXYZQdVfs27BMRRuM+3brqJJp71p+irWhrGrpmw2t2biqxCszBzVCcz9jp91X1SRdGSttYqxXW6/f8vxW4I39IMRd+O8G3d5nEFtkx2tibEoz7oQBhqxw23382Rg2JnJKdbR+43liIdZWZphDV0q1mxG593aqoK45aVgwlGT3Vgqk6MvLf+c7D5s="],"ops:Label_File_Info/ops:md5_checksum":["6a4d832b37de6a675b081cd8cf376f4e"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2020-03-06T17:45:09.127Z"],"pds:File/pds:file_name":["hp3_rad_der_00305_20191006_053040.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00305_20191006_053040"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 4"],"pds:Modification_Detail/pds:modification_date":["2020-03-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["29125"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-10-06T05:30:40.490Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-12-31T23:06:06.368Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222.json deleted file mode 100644 index f44d7376c..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00390_20200101_120222","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222"],"description":["Release 5","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0005"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["631108867-10879"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["638968702-01376"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00390M01:29:58"],"insight:Observation_Information/insight:start_sol_number":["00390"],"insight:Observation_Information/insight:start_solar_longitude":["128.802"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00478M14:22:30"],"insight:Observation_Information/insight:stop_sol_number":["00478"],"insight:Observation_Information/insight:stop_solar_longitude":["175.696"],"ops:Data_File_Info/ops:creation_date_time":["2020-06-01T11:36:37Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_size":["10749312"],"ops:Data_File_Info/ops:md5_checksum":["4f8862255093503644261c2606822a66"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.216291Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-06-02T17:57:44Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_size":["15478"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["0c18243854a24d4e72c859207dac68f6"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2020-04-24T16:03:39.943Z"],"pds:File/pds:file_name":["hp3_rad_der_00390_20200101_120222.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00390_20200101_120222"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 5"],"pds:Modification_Detail/pds:modification_date":["2020-06-02T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["57792"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-01-01T00:02:22.323Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-03-31T23:19:50.349Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608.json deleted file mode 100644 index a4935ea1c..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00478_20200401_121608","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608"],"description":["Release 6","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0006"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["638972080-04063"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["646833467-42074"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00478M15:17:18"],"insight:Observation_Information/insight:start_sol_number":["00478"],"insight:Observation_Information/insight:start_solar_longitude":["175.718"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00567M04:35:01"],"insight:Observation_Information/insight:stop_sol_number":["00567"],"insight:Observation_Information/insight:stop_solar_longitude":["229.943"],"ops:Data_File_Info/ops:creation_date_time":["2020-09-04T05:06:50Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_size":["6610440"],"ops:Data_File_Info/ops:md5_checksum":["4e8bb9961c309ca0317f2e17ab4c3d49"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.254559Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-09-09T17:23:24Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_size":["15478"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["4fc318a6df1ecc4f525c1352361cdb9a"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2020-09-04T00:06:49.363Z"],"pds:File/pds:file_name":["hp3_rad_der_00478_20200401_121608.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00478_20200401_121608"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 6"],"pds:Modification_Detail/pds:modification_date":["2020-09-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["35540"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-04-01T00:16:08.395Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-06-30T23:59:29.047Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545.json deleted file mode 100644 index 4bd293897..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00567_20200701_125545","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545"],"description":["Release 7","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0007"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["646836843-38797"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["655744367-38404"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00567M05:29:47"],"insight:Observation_Information/insight:start_sol_number":["00567"],"insight:Observation_Information/insight:start_solar_longitude":["229.967"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00667M13:36:33"],"insight:Observation_Information/insight:stop_sol_number":["00667"],"insight:Observation_Information/insight:stop_solar_longitude":["294.618"],"ops:Data_File_Info/ops:creation_date_time":["2020-12-03T20:25:42Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_size":["214458"],"ops:Data_File_Info/ops:md5_checksum":["2d0d782bba22cc0db1bb8c2e8d3e04f7"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.281352Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzdW1tv4koSft6R5j+0kFbafQDbmKvl4SgKkx20ySQKzOrsvliO3UBrbbdPu0ky++u3um3ANsZgnEOGzAOD6erqqvrq1gUxf3v1PfSMWURo8KWhtdQGwoFDXRIsvjRWfN4cNH4bff5kCrqmT13soc+f/rJkeP6lseQ8jAxFCd2oFdiR3VrQZ/HQES/Ks6Y8jKcdC14s7UpTW5GzbIjN8D/2bf4zxEEUMxE8VsxrUcdzWpQtFDdyPSWhYzQ4RQSfREInhQQRWSz5RpzJ9+nkH99mUiRLG+j15Xpg1F053Lp/ijB7tjmcanufPyH4BxKnee2xUyNFbCTylmza1SzD4DUim80vLy+tF12K3lZVTfn97nYqpW/CZm4HDl5vjYgR63VLHanCQanFNhTvrugIr5Eb79vuPlLRg+cdjzoI0RjF7MyJiwNO5iTW3Lpi2E6W5LJHF7DkWSQhw2y0YoEhTjbg1DVkFrNdw7W5bbmYkWfsGstQFx+KZ0tVu72+1VYBh76qWVq72+10TaWAd+rkJDBhdQShaSqp5xQVJ9zDo0kwFVKgbw86erRdQn3MMUNfX0OQxgfuaByLhRKHPUa8mHXqLBLMKfNjO8lYtBKZQECAVkq5nybFKEyixvHsKBoVxpCpZIlSu+8gQ23w+kYiTtnP1PouzRhzm3g5Eknmp8kAPjwSVmhq7aaqm8ruagGLo2DaULs4chgJBcfRI/awHWHUN5X0xzlNlHJVcutZc5jKfu82U+be8foZOI11TSmDWgB6R3mhIH8wLk1icSCNrab2m6o2U1Wj2zU63Zaqtv9jKnnKHUY0zPPRBAAzVTe0jqEPWl1Vk3wyhGkDlAhrToJnHHGyKFRTUgS2v4kfU5FPOQpRFUZ3cXKBqBBPOYpJANEGTms94jlmUEMLPcUjrsU2BJks4lDg8Mohm6TENZKE1kpyDCSMDIeCIzaLlhRTJiROrQxbU8lR5R2uVBuxXGLSxKugg7CmPyOO/Tz3/DoA54c0AC8t0ucgOFuApqHtYIfZc16I0fE4HY9VxNlKJFdrSSNuRBsBjgesCDQSWTnWBxA7ArWY5Gjbn4LStuwcAGqyUe7sQBlsI+QbYnRWeHbJMnnbZgvMrWzWL8x4dzaLStLdg2cHuBigt8t2XEprhPKsli8lOjXFxbzq5rZD9jOTMlBYSRKPMtKFdbJth4qUWW9hcStgBSv/CbpAFRoxU9mzWMImKRhWuJT0Atzpj8ebq+uv6G4ynU7uv2+5FtCWcF43Y9Koj1fjZtLmbvllKEo4bdMkdHbU+a8VdwgOXYGf9zq9gd4bdPSmPugPUzYo3VXtNOgjksO63X6no/f6cFhH7ZQettlU5Sy5wwpBUCIdQCs5Ik9bdo5UPaLe1l2gf0/xzq+X8gLNMqx6WVbZ5YNSgS4QXD62A7HNZnG3NqVeUwp5p3aN9tDo7EhbvO+Q4GWngR53mm7oPUPXcwqdcFhiUaD1aLAgfOVitAoIXNVdvGiM2u1ha1iIQXrHMUDsPWHYafW0wS40Rx9A5/zFZkmo/353i66YsyTPaEapl2KbITuGX/YC1GoX8Np7J9rSHk6acNPZTb7rcrh7vdkkeOsW7kTZO8GhUlxSu9b3fZc6svhHxvqd5a+vCGU1bF/9WnMpqWCHqtefpdcy1MV0Yz0xiMiBMv3nqGgqhYiaN8TDEvjs/CDNVJDkZZyLbdLHD05CWtx+MpXthhwnB87eTAjS11gxRJjBHbYN12G1NewP4BpbQJzWPicp9HNPcOr10ma2w3fyb9J4X43R+OtjcTNH5/MI8ySRPP3kuDFSTSX+dBc2B+7Q0UjTurrAKH7KEaUnFfcBRoy+IDpHfEkixIW0SHR3NrgTSlqE9EBKuEKrdNwRHwtgeMQnQuVrmzFiL3DzEXPwWHRLAty8waL12KHN8XqM1/eZL/ED7AmdhwJh+baAaMHoKoyE5ZJ3hX2pPMzDwYIvMwbXBr2NrPFy0f4bcXqprFvIfwREpFTbA2Ovxx4uEt609+61VXZdy7VE4/21PbXHSybDWcXWHNar+3jEGUCE+tX0ejKxxsL55djm33dj68fsGlxiQ1Iux655292NGPuMKxmIPSNxsqnIt/tkTfmmoEZ2sDbtfreVO5XDEFZCeSrq8tFwtmvD2e6fiqdI2gtx8T8dxUogfj8eQjAiii2CoKmI85TIiJCzoAGMVgzLand2cMX9G83YCiPxpYuHpqKTQ7NqIazXxlzXT8X8EYsh/emADyoArintDopEOBwLe2xULuwre2QZwYgESNp9SVfwCi6g94ZDcAcoWe75XSCGfNvt304rQN+pDX2nfQnQw+WH4QopW+IbrQJI2wtoRuaM+iigjC+hq0RLDD16CG/BK0JGggXCf6xIQF/Pjz1IePU/4q/4sgLo3dqgd0+u2b8y6HG0S9RjmyKGPdDuGSNOY/jfBeEHMVtLPPHm/l9Iq4B1rzbWPfUjYi3sCqDeUDAn8uAyIPK4vLuiv93eT/+OHCyukOjsgE8CR3yR75wKeL8+4MMPDDi0anMbjBuI0ZCHbL428Lnjmix8G9WN7kFtsPuDDwk2h+uWzVzk4mcSK03hqhvbV0S6MHy4a/h3cYK6ET+s7QSDk69sF+0EpNjw53aCpe3Sl8qoa2pt2Ie9S4D9r8cjfiPMLXGeIw/AB7Cj2LpwZXsndAsyfLsKzG8wX1O7l4BzjQ6u/ct3cJUgrz+D07TOB4a8uIdr/0I9XCW464/ftPZFzN/O0sW9lxvUjvr6ozhN/5CzuJP6uHdwg20fVwn3+tM4rXMR47i3bOTOD+9sGg+LqkBbf/imdS9i+vbPKjU8Lt4c+yFmNl8xLL9SS4z7PqhWCtj6EzatexEjtjdC9fyxOj4lWOvP0rTeRQzTKsA6S8GJGaPsHUN1fEqs1p+Naf2LGI69Cai1I1X8um7vj6XE7+KLfocW/16t+Md3plL4Z32j/wOe3hx2"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:51:36Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_size":["15477"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["67d6801c4b08f7c633f627514fe50067"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2020-12-03T14:25:40.978Z"],"pds:File/pds:file_name":["hp3_rad_der_00567_20200701_125545.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00567_20200701_125545"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 7"],"pds:Modification_Detail/pds:modification_date":["2020-12-03T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["1153"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-07-01T00:55:45.002Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-10-12T03:14:38.501Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw.json deleted file mode 100644 index ed640b04f..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw.json +++ /dev/null @@ -1 +0,0 @@ -{"took":8,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":43,"relation":"eq"},"max_score":1.4742632,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::8.0","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"8.0","lidvid":"urn:nasa:pds:insight_rad:data_raw::8.0","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"]}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::7.5","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"7.5","lidvid":"urn:nasa:pds:insight_rad:data_raw::7.5","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::8.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::7.4","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"7.4","lidvid":"urn:nasa:pds:insight_rad:data_raw::7.4","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::7.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::7.3","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"7.3","lidvid":"urn:nasa:pds:insight_rad:data_raw::7.3","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::7.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::7.2","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"7.2","lidvid":"urn:nasa:pds:insight_rad:data_raw::7.2","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::7.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::7.1","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"7.1","lidvid":"urn:nasa:pds:insight_rad:data_raw::7.1","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlWttu2zgQfV+g/0D4ubYkO2kTQ1ERxMjWQLIbRNlisS8EI9E2AYkUSCpO/n5J6mJdaDtOk6ZojcKRxeHM8JwZkkPW//KYJuABc0EYPRt4I3cAMI1YTOjybPDP3eXwZPAl+PCHr+WGKYtxAlYcL84GKykzMXWcLBYjigQaLdmD/nGkv5wHz7mZhUdQfUHv3HNHIloNgPrCKZJPGaai0KAV5DwZsSiJRowvnVjEiVPKcUYL4zecxXkk4QVLEhxJ5eqHP4D6KJ+airZ4MmgITx8FqTus1+vRemLMjl3Xc/69vgqN5SGhQiIa4aqrINPCpysWIWmg2mMUFD17nwNhexTxIChU+fMYU0kWpPAAnnOMgo0VP2FL1ZRAUophHuScTrWRqdI9VWMiy5WEHMXTGEmkHta+Y+nV0FkGhmoNTkau7zR+N6QkkQkO5jTU+sHt+QzcojWYKRtgw5jvFGKNfoQuGE+L0ZjQgqX+wBupsXva4naZhqKsjI8oQUIE/WjxnbZEo+sFkYXy+cZQ0ObOz/L7pEL9CSMejF3vROnsvu50i7GIOMmMxr3gNIUb7jl7/POvVarWIfGVCMn4U9eRlswMS0SSoB+eftoUUxGCzTiH7njoHflOv9WiohEf7uh0S7xYAZrhhCjpJyCxkNWEtA2WApr9w/qukZ8O3aPheHz4yL2tmWIduX2iuFsRAaI6QNQjVd5TAepIwglGAgPvI8gQl/qvSmigM3tkVxliXPf6iymcQcyiPFV5DwgFcqVbF5ir6R+DKxVJQAUciA1owqLyvcn5NHSPDydn/BrklDMM2Du/TlfZRL/Qz9BVnyOoc8rzJi50T44n42O7AcNHOwDWSIA80yOMwZrI1dZAGP+EXJ0Ox5PDuZq8RSKRDYw6vrso2tDTn18reTw1p3uHE3L0DoRMfn1Cxu7QnagkOZyQ43cg5Oj3IEQtLy9Y+z+9AyHHvwchpy/KkM/vQMin34IQvYa4hxOyvY58O0I+//yEdNrblZzvbK/9/QtVGeBH2TsPuCMpVjUw4zGhChnRdUhItVs0jEGpRMtiz1P//vOdbmOvL8taXcfNrq225hB3uOTfcJIi/gRvscgTCcM81T/7pTjPmMBBGBHNii7CixddOc4iLAShS5jgB5wEt/qwo/e206vUCi9RhGUXMCMRs1RVYUGY8wXS5svfNkkiIpIlhGJIkcLhT8xEoV6obp3GbqxsdcR39uLkz+mDqqHJ0npMZCSMzTJJfMfmgT6jC66JKKpw86sjMVdRxylKYJ0iNhQSomqfWqBVL0VF3Kq6qeHuNC1sjspqynfaGiwm6kZo3NzMClAy2FLuOx3ZLuw7x6SbdwDr/30vMH/QsRU+CYnTw0HvalCpkmaMqsy3jXuvvg2RYabiKOJoIa1cPp/P53MqJDcTKVwxIaeiduD5xNrIJQJ2VO/h9Bm8FiLPxv4lLN2ez/YwNK9H9cMZmnIUE5ZipfwVyfmhvPTFWgsh4kssYXsJtWbnNeJix3x4kyCK7QS93nQojbfTzNgapcaj75sDC43fO/ntQtF3LJsQv9YD9d6pvULt430HUNU5W7VVE9PqCabVgrULsN1gVbr2wRWxVIsFegupN4rlWglm1QayuTst9pLVrrQWuc9pnGDLTZHeZjYuPgC6Z7k0OsoRfgSbGfUjQDQGm8wTI9+pvGuvXrv4fStKVtlEH4hW56CC7Annt2Hn683E0VcvIVvINeKaCzVcvYUDYYajOp67+/8+NZWm2MLzdtrK6yexVW3rXmij8mekkhcFE6S6YPqRZN6t9lVrO8jpQ75CApgxmPzBnBfQKy84VQsJwChageKOD5RjBmyxsaEvWg6kx3esc6K/uQhs6mmipWHRsaENtt9uZuCODv+SJNhMyFBvXGnnZtA0d6Fe6C5m/WuYKS8zzCXGKBIPvrMR61KlrNUHAc2y8pM5b7Y0N3HreOTb3DYNbLEQWPYpzSmRZ4P7J4kHges7hVivNFRLqt4o6Bv+GPFYH0LczEIwC78B5aOtuRfVkSphRfBZR27xaJWAMU5ISlQwBBeIc4KWeHiLpco3cKVKv+ElxnGloiHb4wQnLVUq4pDmoP260+u20Dor263nLEaFCMalMmvBu+Qsz4RGs3yyyFwaV3aZMmLFFgun95iDUCKZ2/danYHTXHcIvGrE5e8tfUysmrw4Dy/mcxhKrshUBXf9fkvHFD2SNE9hYSTBdClXdlH9aQaavkexdLZuePcjdRCYV/PZt/kMqj8HIDl+GZJNW2+I5vj4+NXw1NPtzizoVTDVhAPV4gBTE6qwXLt3rFLFyQBtHdjZJ199fNP9zynq9f+uyez8"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::7.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::7.0","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"7.0","lidvid":"urn:nasa:pds:insight_rad:data_raw::7.0","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::7.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::6.5","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"6.5","lidvid":"urn:nasa:pds:insight_rad:data_raw::6.5","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::7.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::6.4","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"6.4","lidvid":"urn:nasa:pds:insight_rad:data_raw::6.4","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::6.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::6.3","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"6.3","lidvid":"urn:nasa:pds:insight_rad:data_raw::6.3","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::6.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::6.2","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"6.2","lidvid":"urn:nasa:pds:insight_rad:data_raw::6.2","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::6.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::6.1","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"6.1","lidvid":"urn:nasa:pds:insight_rad:data_raw::6.1","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::6.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::6.0","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"6.0","lidvid":"urn:nasa:pds:insight_rad:data_raw::6.0","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::6.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::5.5","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"5.5","lidvid":"urn:nasa:pds:insight_rad:data_raw::5.5","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::6.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::5.4","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"5.4","lidvid":"urn:nasa:pds:insight_rad:data_raw::5.4","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::5.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::5.3","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"5.3","lidvid":"urn:nasa:pds:insight_rad:data_raw::5.3","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::5.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::5.2","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"5.2","lidvid":"urn:nasa:pds:insight_rad:data_raw::5.2","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::5.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::5.1","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"5.1","lidvid":"urn:nasa:pds:insight_rad:data_raw::5.1","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::5.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::5.0","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"5.0","lidvid":"urn:nasa:pds:insight_rad:data_raw::5.0","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::5.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::4.5","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"4.5","lidvid":"urn:nasa:pds:insight_rad:data_raw::4.5","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::5.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::4.4","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"4.4","lidvid":"urn:nasa:pds:insight_rad:data_raw::4.4","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::4.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::4.3","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"4.3","lidvid":"urn:nasa:pds:insight_rad:data_raw::4.3","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::4.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::4.2","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"4.2","lidvid":"urn:nasa:pds:insight_rad:data_raw::4.2","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::4.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::4.1","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"4.1","lidvid":"urn:nasa:pds:insight_rad:data_raw::4.1","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::4.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::4.0","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"4.0","lidvid":"urn:nasa:pds:insight_rad:data_raw::4.0","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlWttu2zgQfV+g/0D4ubYkO2kTQ1ERxMjWQLIbRNlisS8EI9E2AYkUSCpO/n5J6mJdaDtOk6ZojcKRxeHM8JwZkkPW//KYJuABc0EYPRt4I3cAMI1YTOjybPDP3eXwZPAl+PCHr+WGKYtxAlYcL84GKykzMXWcLBYjigQaLdmD/nGkv5wHz7mZhUdQfUHv3HNHIloNgPrCKZJPGaai0KAV5DwZsSiJRowvnVjEiVPKcUYL4zecxXkk4QVLEhxJ5eqHP4D6KJ+airZ4MmgITx8FqTus1+vRemLMjl3Xc/69vgqN5SGhQiIa4aqrINPCpysWIWmg2mMUFD17nwNhexTxIChU+fMYU0kWpPAAnnOMgo0VP2FL1ZRAUophHuScTrWRqdI9VWMiy5WEHMXTGEmkHta+Y+nV0FkGhmoNTkau7zR+N6QkkQkO5jTU+sHt+QzcojWYKRtgw5jvFGKNfoQuGE+L0ZjQgqX+wBupsXva4naZhqKsjI8oQUIE/WjxnbZEo+sFkYXy+cZQ0ObOz/L7pEL9CSMejF3vROnsvu50i7GIOMmMxr3gNIUb7jl7/POvVarWIfGVCMn4U9eRlswMS0SSoB+eftoUUxGCzTiH7njoHflOv9WiohEf7uh0S7xYAZrhhCjpJyCxkNWEtA2WApr9w/qukZ8O3aPheHz4yL2tmWIduX2iuFsRAaI6QNQjVd5TAepIwglGAgPvI8gQl/qvSmigM3tkVxliXPf6iymcQcyiPFV5DwgFcqVbF5ir6R+DKxVJQAUciA1owqLyvcn5NHSPDydn/BrklDMM2Du/TlfZRL/Qz9BVnyOoc8rzJi50T44n42O7AcNHOwDWSIA80yOMwZrI1dZAGP+EXJ0Ox5PDuZq8RSKRDYw6vrso2tDTn18reTw1p3uHE3L0DoRMfn1Cxu7QnagkOZyQ43cg5Oj3IEQtLy9Y+z+9AyHHvwchpy/KkM/vQMin34IQvYa4hxOyvY58O0I+//yEdNrblZzvbK/9/QtVGeBH2TsPuCMpVjUw4zGhChnRdUhItVs0jEGpRMtiz1P//vOdbmOvL8taXcfNrq225hB3uOTfcJIi/gRvscgTCcM81T/7pTjPmMBBGBHNii7CixddOc4iLAShS5jgB5wEt/qwo/e206vUCi9RhGUXMCMRs1RVYUGY8wXS5svfNkkiIpIlhGJIkcLhT8xEoV6obp3GbqxsdcR39uLkz+mDqqHJ0npMZCSMzTJJfMfmgT6jC66JKKpw86sjMVdRxylKYJ0iNhQSomqfWqBVL0VF3Kq6qeHuNC1sjspqynfaGiwm6kZo3NzMClAy2FLuOx3ZLuw7x6SbdwDr/30vMH/QsRU+CYnTw0HvalCpkmaMqsy3jXuvvg2RYabiKOJoIa1cPp/P53MqJDcTKVwxIaeiduD5xNrIJQJ2VO/h9Bm8FiLPxv4lLN2ez/YwNK9H9cMZmnIUE5ZipfwVyfmhvPTFWgsh4kssYXsJtWbnNeJix3x4kyCK7QS93nQojbfTzNgapcaj75sDC43fO/ntQtF3LJsQv9YD9d6pvULt430HUNU5W7VVE9PqCabVgrULsN1gVbr2wRWxVIsFegupN4rlWglm1QayuTst9pLVrrQWuc9pnGDLTZHeZjYuPgC6Z7k0OsoRfgSbGfUjQDQGm8wTI9+pvGuvXrv4fStKVtlEH4hW56CC7Annt2Hn683E0VcvIVvINeKaCzVcvYUDYYajOp67+/8+NZWm2MLzdtrK6yexVW3rXmij8mekkhcFE6S6YPqRZN6t9lVrO8jpQ75CApgxmPzBnBfQKy84VQsJwChageKOD5RjBmyxsaEvWg6kx3esc6K/uQhs6mmipWHRsaENtt9uZuCODv+SJNhMyFBvXGnnZtA0d6Fe6C5m/WuYKS8zzCXGKBIPvrMR61KlrNUHAc2y8pM5b7Y0N3HreOTb3DYNbLEQWPYpzSmRZ4P7J4kHges7hVivNFRLqt4o6Bv+GPFYH0LczEIwC78B5aOtuRfVkSphRfBZR27xaJWAMU5ISlQwBBeIc4KWeHiLpco3cKVKv+ElxnGloiHb4wQnLVUq4pDmoP260+u20Dor263nLEaFCMalMmvBu+Qsz4RGs3yyyFwaV3aZMmLFFgun95iDUCKZ2/danYHTXHcIvGrE5e8tfUysmrw4Dy/mcxhKrshUBXf9fkvHFD2SNE9hYSTBdClXdlH9aQaavkexdLZuePcjdRCYV/PZt/kMqj8HIDl+GZJNW2+I5vj4+NXw1NPtzizoVTDVhAPV4gBTE6qwXLt3rFLFyQBtHdjZJ199fNP9zynq9f+uyez8"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::4.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::3.5","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"3.5","lidvid":"urn:nasa:pds:insight_rad:data_raw::3.5","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::4.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::3.4","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"3.4","lidvid":"urn:nasa:pds:insight_rad:data_raw::3.4","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::3.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::3.3","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"3.3","lidvid":"urn:nasa:pds:insight_rad:data_raw::3.3","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::3.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::3.2","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"3.2","lidvid":"urn:nasa:pds:insight_rad:data_raw::3.2","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::3.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::3.1","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"3.1","lidvid":"urn:nasa:pds:insight_rad:data_raw::3.1","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::3.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::3.0","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"3.0","lidvid":"urn:nasa:pds:insight_rad:data_raw::3.0","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::3.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::2.5","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"2.5","lidvid":"urn:nasa:pds:insight_rad:data_raw::2.5","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::3.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::2.4","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"2.4","lidvid":"urn:nasa:pds:insight_rad:data_raw::2.4","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::2.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::2.3","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"2.3","lidvid":"urn:nasa:pds:insight_rad:data_raw::2.3","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::2.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::2.2","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"2.2","lidvid":"urn:nasa:pds:insight_rad:data_raw::2.2","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlWttu2zgQfV+g/0D4ubYkO2kTQ1ERxMjWQLIbRNlisS8EI9E2AYkUSCpO/n5J6mJdaDtOk6ZojcKRxeHM8JwZkkPW//KYJuABc0EYPRt4I3cAMI1YTOjybPDP3eXwZPAl+PCHr+WGKYtxAlYcL84GKykzMXWcLBYjigQaLdmD/nGkv5wHz7mZhUdQfUHv3HNHIloNgPrCKZJPGaai0KAV5DwZsSiJRowvnVjEiVPKcUYL4zecxXkk4QVLEhxJ5eqHP4D6KJ+airZ4MmgITx8FqTus1+vRemLMjl3Xc/69vgqN5SGhQiIa4aqrINPCpysWIWmg2mMUFD17nwNhexTxIChU+fMYU0kWpPAAnnOMgo0VP2FL1ZRAUophHuScTrWRqdI9VWMiy5WEHMXTGEmkHta+Y+nV0FkGhmoNTkau7zR+N6QkkQkO5jTU+sHt+QzcojWYKRtgw5jvFGKNfoQuGE+L0ZjQgqX+wBupsXva4naZhqKsjI8oQUIE/WjxnbZEo+sFkYXy+cZQ0ObOz/L7pEL9CSMejF3vROnsvu50i7GIOMmMxr3gNIUb7jl7/POvVarWIfGVCMn4U9eRlswMS0SSoB+eftoUUxGCzTiH7njoHflOv9WiohEf7uh0S7xYAZrhhCjpJyCxkNWEtA2WApr9w/qukZ8O3aPheHz4yL2tmWIduX2iuFsRAaI6QNQjVd5TAepIwglGAgPvI8gQl/qvSmigM3tkVxliXPf6iymcQcyiPFV5DwgFcqVbF5ir6R+DKxVJQAUciA1owqLyvcn5NHSPDydn/BrklDMM2Du/TlfZRL/Qz9BVnyOoc8rzJi50T44n42O7AcNHOwDWSIA80yOMwZrI1dZAGP+EXJ0Ox5PDuZq8RSKRDYw6vrso2tDTn18reTw1p3uHE3L0DoRMfn1Cxu7QnagkOZyQ43cg5Oj3IEQtLy9Y+z+9AyHHvwchpy/KkM/vQMin34IQvYa4hxOyvY58O0I+//yEdNrblZzvbK/9/QtVGeBH2TsPuCMpVjUw4zGhChnRdUhItVs0jEGpRMtiz1P//vOdbmOvL8taXcfNrq225hB3uOTfcJIi/gRvscgTCcM81T/7pTjPmMBBGBHNii7CixddOc4iLAShS5jgB5wEt/qwo/e206vUCi9RhGUXMCMRs1RVYUGY8wXS5svfNkkiIpIlhGJIkcLhT8xEoV6obp3GbqxsdcR39uLkz+mDqqHJ0npMZCSMzTJJfMfmgT6jC66JKKpw86sjMVdRxylKYJ0iNhQSomqfWqBVL0VF3Kq6qeHuNC1sjspqynfaGiwm6kZo3NzMClAy2FLuOx3ZLuw7x6SbdwDr/30vMH/QsRU+CYnTw0HvalCpkmaMqsy3jXuvvg2RYabiKOJoIa1cPp/P53MqJDcTKVwxIaeiduD5xNrIJQJ2VO/h9Bm8FiLPxv4lLN2ez/YwNK9H9cMZmnIUE5ZipfwVyfmhvPTFWgsh4kssYXsJtWbnNeJix3x4kyCK7QS93nQojbfTzNgapcaj75sDC43fO/ntQtF3LJsQv9YD9d6pvULt430HUNU5W7VVE9PqCabVgrULsN1gVbr2wRWxVIsFegupN4rlWglm1QayuTst9pLVrrQWuc9pnGDLTZHeZjYuPgC6Z7k0OsoRfgSbGfUjQDQGm8wTI9+pvGuvXrv4fStKVtlEH4hW56CC7Annt2Hn683E0VcvIVvINeKaCzVcvYUDYYajOp67+/8+NZWm2MLzdtrK6yexVW3rXmij8mekkhcFE6S6YPqRZN6t9lVrO8jpQ75CApgxmPzBnBfQKy84VQsJwChageKOD5RjBmyxsaEvWg6kx3esc6K/uQhs6mmipWHRsaENtt9uZuCODv+SJNhMyFBvXGnnZtA0d6Fe6C5m/WuYKS8zzCXGKBIPvrMR61KlrNUHAc2y8pM5b7Y0N3HreOTb3DYNbLEQWPYpzSmRZ4P7J4kHges7hVivNFRLqt4o6Bv+GPFYH0LczEIwC78B5aOtuRfVkSphRfBZR27xaJWAMU5ISlQwBBeIc4KWeHiLpco3cKVKv+ElxnGloiHb4wQnLVUq4pDmoP260+u20Dor263nLEaFCMalMmvBu+Qsz4RGs3yyyFwaV3aZMmLFFgun95iDUCKZ2/danYHTXHcIvGrE5e8tfUysmrw4Dy/mcxhKrshUBXf9fkvHFD2SNE9hYSTBdClXdlH9aQaavkexdLZuePcjdRCYV/PZt/kMqj8HIDl+GZJNW2+I5vj4+NXw1NPtzizoVTDVhAPV4gBTE6qwXLt3rFLFyQBtHdjZJ199fNP9zynq9f+uyez8"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::2.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::2.1","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"2.1","lidvid":"urn:nasa:pds:insight_rad:data_raw::2.1","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::2.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::2.0","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"2.0","lidvid":"urn:nasa:pds:insight_rad:data_raw::2.0","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::2.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::1.5","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"1.5","lidvid":"urn:nasa:pds:insight_rad:data_raw::1.5","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::2.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::1.4","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"1.4","lidvid":"urn:nasa:pds:insight_rad:data_raw::1.4","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::1.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::1.3","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"1.3","lidvid":"urn:nasa:pds:insight_rad:data_raw::1.3","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::1.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::1.2","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"1.2","lidvid":"urn:nasa:pds:insight_rad:data_raw::1.2","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::1.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::1.1","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"1.1","lidvid":"urn:nasa:pds:insight_rad:data_raw::1.1","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::1.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw::1.0","_score":1.4742632,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw::1.0","title":"InSight RAD Raw Data Collection","product_class":"Product_Collection","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw::8.0","urn:nasa:pds:insight_rad:data_raw"],"description":["InSight RAD Raw Data Collection","Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"ops:Data_File_Info/ops:creation_date_time":["2020-12-11T00:52:28Z"],"ops:Data_File_Info/ops:file_name":["collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.csv"],"ops:Data_File_Info/ops:file_size":["532"],"ops:Data_File_Info/ops:md5_checksum":["9fe65bbce7cc34015f1706f5bb4fdaa2"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.290191Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:53:40Z"],"ops:Label_File_Info/ops:file_name":["collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/collection_data_rad_raw.xml"],"ops:Label_File_Info/ops:file_size":["9606"],"ops:Label_File_Info/ops:json_blob":["eJy9WG1v4jgQ/itWPkNIArTbfKuKeovU3lVNtTrd7spyEwOWEjuyHWhV8d93xgkE2BR2rytQRYw9b8+M5yV98x60yqrU0huV5zy1QkkvfvOmGZdWzETKcIdea85wu2yI05wZ48VdzD3vXmUt52dhrNKvyLy3P+GWidyLv755xe5+xiwHwVEQfuoHUT8cgcCMm1SLsrbNm/BcLLl+JZYbS2BlarXNiorMiwP/at17V/JVPxj1o+gnyU8LYUi6hQJLCUZKQ6YyEfOFJY8858xwEvZIybTFp2YrApKZ/01/k6Tjk3C+5ftbgc0kU2lVgHuJkMQu8HTGNZcpJ3fgLDJTmmTOO8Y/gBUeB3XRD8Y/gWpCRCotY8kMi8vMxAAKAVHNshith8UqXpRD3MA1DeAzohiFMBwGNPg0Hkbj9yA6HPuuWzFDqhKty8hK2MW7LowOMUbHMV71o+HJwIlWOXrzUHd0lmANjwIJ4W6HHwUyPAuQ0ftAoqAfDCEoHwUyOguQ8XEgkD6na8IJIOOzALk4DuTqD0Tk4ixALo8CwRwJPgrk8ixAPq2/r3uekEBS1EAAFc/ppj3FXuiHgR/6iCdXc4CbA2PdZLmG85P1+VBjz7sRttY1bfW6Ll095xt/vnIG0rGQH/px66jrCXmELjYBPWSnkQMeK2zOf430pcglTgQLa8t4MAAQPqLx52qJP0b4NVhixbsVOXcDBZi9BAc00wFu43OGx5IVqLeNMm284LqTn5olCEpBxvbOUCuKdnC4wOIKVu1pULOZ4RZXlRTw9J5f4a6BHGjzQAVTA3BoniqdAZLLngcNygg5p8YymTGdOb97D5OETJIvBLHU1BQiLQphXRxvmNaCzXn/kVuIKdwcyfu3nGdADqHOD6hVUTAnqLlp1L6WiENsLKcLZmjBi2euaTN+Af1jrXjSiMpqD6L0na2vb41GWSE7zA89r2AvoqgKWh/kXM7t4ohLYOLwmmDcOxtIAneuMpiVGJHG2uvkZjqlidXgLg9zel9v9Nt6o/G41Xw3nXyZTig8OtXuHK+/97y5VlUJAQwafxucKdZr9NnGx5jNbsoFbVpCJm6PnNNyAdes3elOzU2tMPFmRQthmlk0hbA6HB4WGSwl9/UZmWxKzG4Fq6vNJsu2JM+VzHJOuuoXlqKdakPYs6qsk9IY0SOmZClPNZvZHoH7C+TG6tpkv+vG7SSbVVt4Lpr/1yEwUWIF2wyWRphO33x+GA6wtCRqZldMoycgLjMwnyQlT7fN4bA+dzlmIyvr8PP7TmsSyxwRvFf7WqFndqWu+xWV2K/2nPm0ONXNjrimCzDUHeLUuNvDta6Bg9laQpoTztIFqVsNacwiatZqwZei33EONtAXI2KTLnjB7lTa9LNTLaUzP2oEwGiOcA6glI8ofNHwGprzi8Eavf8evGtsbT7Gf9vwYjC4tXC1Wvmroa/0fBAFQTj49/4ucWD6mHsMA47y4XK/2O0rNbYoY8V8/0W7qzKduDxpLTgWuwLjphz4zdU6HZA9dq8twk11AgENW1PRkOSfZ8P1Eltl8mosL9DWn9gOiSj0vlJJd3u/fhDxprLRhTI2bivfMdjC0APGY2iTrUyXxn/E2hgyWqiCg6hfNnTHRsiy1r7pDgVm0oMWBYPp4ZGbKrc0qQr8WU+HulTGYUoFry8l1L+UGzfs5HzJc5TuJs6GhN4CemuQPRMmFWUOU81mSvuLK1OTubFAFUxg2iaVK+Eett4nGM4g3jCyCMmwcoEgY1V5MLpFMLqF8PcfyIGE0bZjtKvPUSbTc27p/n+qPpg71smMy5xJbn3wmDmdMDXPTlzua7aG+MHJAi+s1z8AfP+hsA=="],"ops:Label_File_Info/ops:md5_checksum":["36ecd547b4be491b584a95975511dc86"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Citation_Information/pds:description":["InSight RAD Raw Data Collection"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:Collection/pds:collection_type":["Data"],"pds:Field_Delimited/pds:data_type":["ASCII_String","ASCII_LIDVID_LID"],"pds:Field_Delimited/pds:field_number":["1","2"],"pds:Field_Delimited/pds:maximum_field_length":["1","255"],"pds:Field_Delimited/pds:name":["Member Status","LIDVID_LID"],"pds:File/pds:creation_date_time":["2018-06-11T00:00:00Z"],"pds:File/pds:file_name":["collection_data_rad_raw.csv"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw"],"pds:Identification_Area/pds:product_class":["Product_Collection"],"pds:Identification_Area/pds:title":["InSight RAD Raw Data Collection"],"pds:Identification_Area/pds:version_id":["8.0"],"pds:Internal_Reference/pds:comment":["See the Mission Document collection in the InSight Document bundle for information about the mission, spacecraft, and instruments.","See the HP3/RAD Software Interface Specification document in the HP3/RAD document collection for information about the products in the RAD Raw Data collection.","The Release Notes document in the HP3/RAD document collection has notes and errata concerning each public release of HP3/RAD data."],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_hp3rad:release_notes"],"pds:Internal_Reference/pds:reference_type":["collection_to_investigation","is_instrument_host","is_instrument","collection_to_target","collection_to_document","collection_to_document","collection_to_document"],"pds:Inventory/pds:field_delimiter":["Comma"],"pds:Inventory/pds:offset":["0"],"pds:Inventory/pds:parsing_standard_id":["PDS DSV 1"],"pds:Inventory/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Inventory/pds:records":["7"],"pds:Inventory/pds:reference_type":["inventory_has_member_product"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Delivery test version","This collection contains InSight Release 1, part 1, raw data. See Release Notes document in the Reference List for details.","Product urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325 in this collection was updated with InSight Release 1, part 2.","This collection is updated for InSight Release 2. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 3. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 4. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 5. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 6. See Release Notes document in the Reference List for details.","This collection is updated for InSight Release 7. See Release Notes document in the Reference List for details."],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-06-05T00:00:00Z","2019-09-23T00:00:00Z","2019-12-11T00:00:00Z","2020-03-09T00:00:00Z","2020-06-02T00:00:00Z","2020-09-09T00:00:00Z","2020-12-10T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RAD"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Record_Delimited/pds:fields":["2"],"pds:Record_Delimited/pds:groups":["0"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-01-01T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["2028-01-01T00:00:00Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw::1.1"}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325.json deleted file mode 100644 index 6ddfa4a9d..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":14,"relation":"eq"},"max_score":2.5728753,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"3.1","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"]}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.0","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"3.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.5","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"2.5","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.5","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.4","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"2.4","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.4","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.3","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"2.3","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.3","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.2","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"2.2","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.2","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.1","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"2.1","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.1","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlXN9z4jgSfr6pmv9Blae7qgVbNr+LYSubbDbUTmZSkKvduheXYwvsWmNRkoDkv7+WbMAYYzDOhAnswyygVqvVX6vV+mKr++vLJEBzwrhPwy9XuKpfIRI61PXD8ZermRhVWle/9j5/6kq5yoS6JECfP/3LY2T05coTYso7mjZ1eTW0uV0d07n8UpP/aHOsPd4Oaxb8Y+FrrFe5413JzvB/MrHF65SEPFIidcxYUKVO4FQpG2sudwMtlmM0PMaEic/lnDQ/5P7YEytz+t+G/T/un5RJFm6Z5e16ZNSdOcL6/swJm9sCRrWDz58Q/AcWJ3Xt8NNVQrgT25vTaXtmGwpeuL/qvFgsqgtTmW7oOtb+fvg6VNZXoLOwQ4csu3K/E83rK3XUFPZaLbuhqHfBQHjhbtRv3fvAie4d73DUwYirXqSu23dJKPyRH83cumbEjptUc0DH0BRYfixGWG/Gwo4cuQOjLiGzmO12XFvY8GHR8aam/EF+tnT4r2YZOm5hbOqW3qqbRr2rZehNjBovSmjtmVXc1RLfE1LCFwHp9cOhtADdP5poYLs+nRBBGPr9ZUqYPwHt8OsCxYF6iGmR2sQ4fjiibBL5R61BK7anh6sAKSSOrrZbJqFoGq8WJ7A572Wuna62KZTo/QCZaYXTvc8FZa+J9m2ZWyJsP0iJKLFJUgxgIz3phYpuVHCtq223ZqhIQKJX2zsgWkm7hDvMn0qNvUcC8DAy98kC2VOY7py4yzTc1ZKSqclp+2dXygHtil6rGEZxB6gIONwBdz7jAjwQEJuTU8+4XjHM4jM2is14QABmh3AOSDs0BBtD2GSR8AhiavEGVCaDCbFDi9PAZpaApYvmdjAj/NQeaoCTinvIPN5DgiI/dIKZS5BMqeAmRmdjD0XmmBUTf1SX7ErlmS65oYwRR8jkIOMAQYJFgf0MJZAtBPOfZ4KgRO5UW5f2BHFj3VDKoIoDi7gGaXKqjFMhVcZxqfbNDNzVdm+k3bSVSaVpg9NGQanCxHoCUaLGuGLqT4beqZsdo15t6ub/ulpacktR0hG9dTA9GWbHbHR0XG03a0rPhmDSATnGdvvhnHDhjzOnqSRCe7Larrua+paSkAVo7yGqY2Ajlt9SEv0QNnfYJ60BGREG5Xpm0AU+7PArgY2CRaYf8iKgcEmY24lrp2pczkB9sqEhY4hVo6XMVLWPoNaG2q6WkkoHXO5sZHOOS+OogjxqDV+5IJO09nQ7ADeZ0hCiNGs+e8FZAzSc2g5xmD0SmRgdjtPhWHHBZrKWszzKRYevDDgcsCzQfG6lVO9B7ADUIpGDfX8MSusqdw9Q/dXk3h2oDlsZ+YYYvSs822IbedtmYyKszayfmfEebMZz0t1jYIckG6C3y3ZCWduZqrGqE2XRsSku0lU2t+3zXzfeBjJ3kjiiOsmNtb8+gWVNZtklLrutcDZ5hkMnHAFxV9vRmKMm3jCsqafkJbjD/w7urm9+Rw/94bD//dtaa4Zsjubl+U85dXB9W4Gj6lrXRmuOlnWKhIMkdf6xourAoTOI8Xq70WqZuKVXarWaaa615/YqNhrUEFG3ht40a03T0CtGq9nUcwdbdSoyluphTcFQX4GPc4ZIy+aNo6YOp5FEqOi1hO50e64umNmGKizPmbua91qVeVzqDWlQUUY+YKNTw526kbY2u98+w/NGg3k86O2O2erg9ISOGCz2KMgGNBz7Qh6BZqEvvly5ZHzVM9qtqt7AGRgkexwCxK4RalXcam4Dc7B6OhILm8WL/O+Hr+iaOZ4/R0+UBgm1G2KH6NskG6pGhq6dB6u17P50CWec7bS73Ai3Dzar1G59hdPQ5mlg3yacs2stSUWXOmrb553lJ2uyPBzk7V67dq6llpy9a9++9aPm5U1NSaEu6Unu79mgf8wUu1omot07PyAK+E2yMqlUiqRtHMluKsb30q5VYT93tXWHlCYHxl7RDMkDbKOi156wPL12TL3arsuDcIZwcvYpS6GSe4ZRbzyb2Y7Yyr5xyX19iwbXf2WXcXQ04kTEaeT5VZCrHmxz0a/bsDlweua9llmrtyVI0deUVJKk+B4SxOgC0RESns+RkOYuWTSOwKNJ2lvGQTWX5YiGtFwS+BNfzvfGZsy3x6QyIALCFX31Q1K5I8RdmpeQTekaRO27fBcHAQlghmZdwqs+ZgiNGZ1NuXRb/CmzHFWDBSQcC2/D26ZkxDaas/rfydFzbV3jvT7iIlU4oIg82pGv1/Nc7uA4nuzuHT3RJ4j/7LQxp5WGZesuHdHKl0v8enjT78Oaln9FWP+aP/S2M3FzNfIuVyoFsk+PE6erqU+7rEsE4pZTVTWGbIEWnu94CEoFPmNE/c2GOs6MMeL+ghiZMsLhN+IimyMbfrADFPm1ir5RQWBdgI682hXZoZslsKw3kR8qMjre/JBMdasFF3OOjGyYElKxZQ56nsU/LjwKizT+dUSDgC6gz/MrgraRjD+VP1ex5fzzC3SBxKusWAogGNyPooJLa7DWqNfNhvxoq065C125X9sf9MXWhSxjDl4FRvlV0D52Gcg9biwZkuNXQr3AQrj9VmAd0GAdGiwKMrmBAK6JJZD7dw+l863BfYIInNApbI/42nq6KQC0WRpoo35CoFs/COg1/yazhHyuRAHueHYYQkrB1yeE2CgIca00xGbt8iA2Tgkx/q0YxPXSENfMy4MY/3bKVVwQ4kZpiOvG5UFsnBJifFMM4mZpiBtHnz0+LsT45pSruCDErdIQSx7+0iA2TgkxVNSPTwUgbpeH+JRHpwutqAtBjPXSGLdal4fxqUvqYhiXJwLbzcvD+NQ1dTGM34Dm0huXB/Kpq+piIJenuDC+RI7rxHV1MZDLk1zYuESW6/1Bvr69wdaAkVEReMsTXNg8R4YLnIkwWj0wgLCuo+/eBH7h6iH3JeinQNkojHJ5jgvXzpHkkigbPyPKj0/oxg7QU/xc6eFIl6e6cP0cua5BnKPpCDl24D+zaOLRg7sI3C2hF2QyJdAyYwRxEnLKTgH8UI2M7sHiIsiXZ8Bw4xwpsI+C/Pfokanj+TFcniDDjXNkyGLP/iTs2BbORUkyozxJhpvnyJLl4HwChmx7PRckUYw3eGKudY5MWd56fn8CZXs9F8X5LZ4JO0eyLG89/wQ4F+XLjDd4JEw/R74sbz2/P42yvZ6L4lyeMjPwOVJmeev5ZDgfw5oZ5Vkzw7hI1oxuhMAJMS/MoRnlOTTDvEgO7efA/FhGzSjPqBm1c2TUUtn8g9ArR/NrRnl+zaifI7/2weLg/k+kXrpCibeuioRBeZLNqB9Nsr3ri2xFgkDegqSgDygnXCDw8pw4MvvP4uu7VLVHg9kk5MjU5S9mHf1bvUgWRK+x3f/5n3ePhsRrolRFpgRLXlZY5E2f8nyc0TxHngaCQIaEfGkxFMErkq/wzQliu3yO3v/dPRK9VQhm8kKv8ZnluTmjdY6cjUyv8fUL0busgPKYzglb3W7IF75wvHiriANANiW2Bh8QYS70hCzhrK5WQ9DRi65FRPsurlN2vflTNAMyuvfHHlQQAQROkXApT/EZ7XOkfiBc7gJ7DIi76r4jFSO2UIHigatljhipb2JBkWu/qkswM6OGI/XOaKDuRzxBJpHVjAdFEHqm7iuCTzL0H/96KBIm5RlCUz9H5ii9kzh0MrFDd3UPZhwjfA1C7P+4C2T3GXPeP2PAibMaHzmPjIg3eMcUnyPTdGBEJI8iP0dIJCpOISvlosVmeerRND4ADZXCeiQ3CbUzyOte2Cy6FYJl+FIK5F+arfTvgVXe+rPzHhd5U1/W/TjRPTrZlwJ1tcy7zXv/ByADbjA="],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.0","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"2.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.1"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.5","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"1.5","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.5","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::2.0"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.4","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"1.4","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.4","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.5"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.3","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"1.3","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.3","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.4"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.2","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"1.2","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.2","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.3"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.1","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"1.1","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.1","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.2"}},{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.0","_score":2.5728753,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"],"ops:Provenance/ops:superseded_by":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::1.1"}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217.json deleted file mode 100644 index dcfc4b416..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00122_20190401_123217","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217"],"description":["Release 2","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0002"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["607350696-25494"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["614547537-60293"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00122M10:32:58"],"insight:Observation_Information/insight:start_sol_number":["00122"],"insight:Observation_Information/insight:start_solar_longitude":["4.206"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00203M12:11:14"],"insight:Observation_Information/insight:stop_sol_number":["00203"],"insight:Observation_Information/insight:stop_solar_longitude":["43.102"],"ops:Data_File_Info/ops:creation_date_time":["2019-08-31T00:45:58Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_size":["14600410"],"ops:Data_File_Info/ops:md5_checksum":["093614b22e700224bbd1c23c3f947b22"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.186407Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-09-08T17:15:08Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_size":["23806"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["1c24985e9af273928166860a6e0d96fe"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-08-30T19:45:58.005Z"],"pds:File/pds:file_name":["hp3_rad_raw_00122_20190401_123217.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00122_20190401_123217"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 2"],"pds:Modification_Detail/pds:modification_date":["2019-09-23T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["44110"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-04-01T00:32:17.929Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-06-23T07:39:50.783Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705.json deleted file mode 100644 index 3d54197fe..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00213_20190703_051705","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705"],"description":["Release 3","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0003"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["615446170-64553"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["619698830-38207"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00213M15:07:45"],"insight:Observation_Information/insight:start_sol_number":["00213"],"insight:Observation_Information/insight:start_solar_longitude":["47.735"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00261M12:49:07"],"insight:Observation_Information/insight:stop_sol_number":["00261"],"insight:Observation_Information/insight:stop_solar_longitude":["69.345"],"ops:Data_File_Info/ops:creation_date_time":["2019-12-11T19:50:28Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00213_20190703_051705.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00213_20190703_051705.tab"],"ops:Data_File_Info/ops:file_size":["6476346"],"ops:Data_File_Info/ops:md5_checksum":["eb531595846a1f2587f2dc7eea87def5"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.237011Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-13T17:55:34Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00213_20190703_051705.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00213_20190703_051705.xml"],"ops:Label_File_Info/ops:file_size":["23807"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["3cd0d2ea40fc29e3945c12b511856a1f"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-12-11T13:50:27.485Z"],"pds:File/pds:file_name":["hp3_rad_raw_00213_20190703_051705.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00213_20190703_051705"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 3"],"pds:Modification_Detail/pds:modification_date":["2019-12-13T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["19566"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-07-03T17:17:05.218Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-08-21T22:34:50.855Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040.json deleted file mode 100644 index a336eda85..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00305_20191006_053040","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040"],"description":["Release 4","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0004"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["623611776-38863"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["631105491-14156"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00305M14:40:03"],"insight:Observation_Information/insight:start_sol_number":["00305"],"insight:Observation_Information/insight:start_solar_longitude":["89.169"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00390M00:33:49"],"insight:Observation_Information/insight:stop_sol_number":["00390"],"insight:Observation_Information/insight:stop_solar_longitude":["128.783"],"ops:Data_File_Info/ops:creation_date_time":["2020-03-06T22:42:50Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_size":["10410612"],"ops:Data_File_Info/ops:md5_checksum":["763345cfa8d182f0d04274386fc76065"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.263814Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-03-09T20:13:06Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_size":["23808"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["c526445c5a80bd71bc4115a738d8c844"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2020-03-06T17:42:49.339Z"],"pds:File/pds:file_name":["hp3_rad_raw_00305_20191006_053040.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00305_20191006_053040"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 4"],"pds:Modification_Detail/pds:modification_date":["2020-03-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["31452"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-10-06T05:30:40.490Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-12-31T23:06:06.368Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222.json deleted file mode 100644 index c8ee515d3..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00390_20200101_120222","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222"],"description":["Release 5","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0005"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["631108867-10879"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["638968702-01376"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00390M01:29:58"],"insight:Observation_Information/insight:start_sol_number":["00390"],"insight:Observation_Information/insight:start_solar_longitude":["128.802"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00478M14:22:30"],"insight:Observation_Information/insight:stop_sol_number":["00478"],"insight:Observation_Information/insight:stop_solar_longitude":["175.696"],"ops:Data_File_Info/ops:creation_date_time":["2020-06-01T11:36:37Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_size":["21216107"],"ops:Data_File_Info/ops:md5_checksum":["c1f92f8eb97f437599545263ecf113dd"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.303527Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-06-02T17:58:34Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_size":["23809"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["5317a6bbadca248da550780f37d531df"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2020-04-24T15:56:02.994Z"],"pds:File/pds:file_name":["hp3_rad_raw_00390_20200101_120222.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00390_20200101_120222"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 5"],"pds:Modification_Detail/pds:modification_date":["2020-06-02T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["64097"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-01-01T00:02:22.323Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-03-31T23:19:50.349Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608.json deleted file mode 100644 index 2dcd894d0..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00478_20200401_121608","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608"],"description":["Release 6","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0006"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["638972080-04063"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["646833467-42074"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00478M15:17:18"],"insight:Observation_Information/insight:start_sol_number":["00478"],"insight:Observation_Information/insight:start_solar_longitude":["175.718"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00567M04:35:01"],"insight:Observation_Information/insight:stop_sol_number":["00567"],"insight:Observation_Information/insight:stop_solar_longitude":["229.943"],"ops:Data_File_Info/ops:creation_date_time":["2020-09-04T05:03:58Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_size":["12456523"],"ops:Data_File_Info/ops:md5_checksum":["6f236efcdfe28ef582da0f1e7237472c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.372423Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-09-09T17:25:58Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_size":["23809"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["4cbe936e511b752c0d0d99c6f5ee6a27"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2020-09-04T00:03:58.459Z"],"pds:File/pds:file_name":["hp3_rad_raw_00478_20200401_121608.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00478_20200401_121608"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 6"],"pds:Modification_Detail/pds:modification_date":["2020-09-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["37633"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-04-01T00:16:08.395Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-06-30T23:59:29.047Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545.json b/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545.json deleted file mode 100644 index 6ce14ffaa..000000000 --- a/src/test/resources/riut/registry___lid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545.json +++ /dev/null @@ -1 +0,0 @@ -{"took":1,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00567_20200701_125545","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545"],"description":["Release 7","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0007"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["646836843-38797"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["655744367-38404"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00567M05:29:47"],"insight:Observation_Information/insight:start_sol_number":["00567"],"insight:Observation_Information/insight:start_solar_longitude":["229.967"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00667M13:36:33"],"insight:Observation_Information/insight:stop_sol_number":["00667"],"insight:Observation_Information/insight:stop_solar_longitude":["294.618"],"ops:Data_File_Info/ops:creation_date_time":["2020-12-03T20:25:16Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_size":["381643"],"ops:Data_File_Info/ops:md5_checksum":["3853d163b9f4c26b3dc139efa9749d6a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.417242Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:54:30Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_size":["23808"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["4d3dea7d2a70ba0924ac528025687821"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2020-12-03T14:25:15.048Z"],"pds:File/pds:file_name":["hp3_rad_raw_00567_20200701_125545.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00567_20200701_125545"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 7"],"pds:Modification_Detail/pds:modification_date":["2020-12-03T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["1153"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-07-01T00:55:45.002Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-10-12T03:14:38.501Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad::2.1.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad::2.1.json deleted file mode 100644 index 341ee6b9f..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad::2.1.json +++ /dev/null @@ -1 +0,0 @@ -{"took":4,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad::2.1","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad","vid":"2.1","lidvid":"urn:nasa:pds:insight_rad::2.1","title":"Mars InSight Lander Radiometer Data Archive","product_class":"Product_Bundle","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_collection":["urn:nasa:pds:insight_rad:data_calibrated","urn:nasa:pds:insight_rad:data_derived","urn:nasa:pds:insight_rad:data_raw"],"ref_lid_collection_secondary":["urn:nasa:pds:insight_documents:document_hp3rad"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad::2.1","urn:nasa:pds:insight_rad"],"description":["The InSight Radiometer data bundle consists of data in three collections: data_raw, data_calibrated, and data_derived. The bundle also includes the HP3/RAD Software Interface Specification in the HP3/RAD document collection.","Pre-peer review version","First release","The collections urn:nasa:pds:insight_rad:data_calibrated and urn:nasa:pds:insight_rad:data_derived were added to this bundle with InSight Release 1b.","Changed Observing_System_Component name in this label from RAD to RADIOMETER to match context product name. Expanded Citation_Information description."],"ops:Data_File_Info/ops:creation_date_time":["2020-01-03T17:58:09Z"],"ops:Data_File_Info/ops:file_name":["readme.txt"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/readme.txt"],"ops:Data_File_Info/ops:file_size":["1114"],"ops:Data_File_Info/ops:md5_checksum":["192de32c12437c180a9e14d60fe4b89a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:30.630852Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-01-15T17:40:30Z"],"ops:Label_File_Info/ops:file_name":["bundle_insight_rad.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/bundle_insight_rad.xml"],"ops:Label_File_Info/ops:file_size":["6805"],"ops:Label_File_Info/ops:json_blob":["eJzFV21v4jgQ/itWPkNI2Pd8a6G9RSq7FeGk092uLJMMYF1iR7YDrVb97zvjBEiBsnva011VQUg8j2eeeWbG+RbcG53XmePXtcoLCJJvwSQH5eRSZsJJrfiVAUG3q3ZhVghrg+TYsBdMdX6w+iit0+aRDJ/dH4MTsgiSv74FZfd+LhxuHgyj+H0/GvajGAFzsJmRFT33+0G/AjDMwEbClm3AWHrSC9orLvMgicL4qfci9od+9Lo/HJ5g30pjHQIXICwcIf4A720/PvV1vgaW6aKAjG5YVhuVKGFFUuU2kcrK1dpxI/IEoQTPRCEXBkFzJlT+xXxR7MzfZYwcjNwgwBYMMJHneOk0c2tp2UuAC584tpVuzSYqJTw2ayhg8SI8omH4Mg3DCPOFWTuhYbQWaoWefF5YMBupVjx9tA5KPtJlpRXKjClRApOq8bQQCyjY0uiSza7GFAB+TT5Pb+Y3s3NRfHGMFpXCZWvkWzl4cKzVqUcO2c1DhZyiDyPpGrcnaqlN6a9Zx92TeFFIX596gTws5xg+FHwnvCSIwzgOozBC00KvkJcCTZviAYPPX0rZ6Va94Jx/vuzqRbFj/BEEwlKNnBPcPocil7oEh6VC0tjlGfmxWJSW6WVz37Nu4JlSk3M0e4EZse2xI7n2SK+sq7/wnD051zohCqtx46yo0X/cHtjH+1cDSnaql24rDIWBni9FBiytINvLjdw9B97FyHVWl6SqQ0SUVlG7tTa8wOiRqj1NtGkmQeFOcxAlqVdLyir2kHfx+w+D+E387s3b9wGqwElHzTGYCmP3RN+RskyX7zHxemWyNXJBZg9loahXrp2rksEAZRCSHsKV3tCP1/Qx2FD/OLTfhinuHivasAPWLOFTKBdg+I1y1F6xjxYy5waWWPgYygXVJbs84nZlA2JRc3XTzGUpEK8X7JF2HrT+rIXlTfr33AbUEv7Z7gft/I9OtFr97z3Y6dMmuyu+rl41DeHYlRSwYPOfcGaH1HXoK0rPysRmayjFnc7abvIjHTJ6bi8sGNyP09ccP3h8HUXhgyXPbyW6QqcEPsf+SxJOHf4q9z8LfdIZr3//NL67Ccc36Wg2uZ9PPn9CIL1cWvAWtZJUqotHR9PYd3aFNyKsggorkCYJEkX05L6DBu/619Kxq3Q0mTC/LZGWaXyMHVuW0vldR8IYKVbQn4HDBLE7qaB/C14KNC58d3DN/KCW4yconBR4W6tPTejk75IoaBEw9Bwnj/NOZLosvetngRct0K5TJJi0Q5a22224fRVqsxoMoyge/DG9S31C+6gnjD4jbkbN1Nuf0iZqA9bJ1fOzm++pCpMwO0j0B5ptxylqtwOYlNLS2ApbRV/QptP8mSnRtec4bY1bk2mDSkuOjwrk54nZy+cJ3xB/KVrrTFuZ2rrEVjiIMiOW7lLI0vIjw0vRpntM3zn+FW8Ts9foTzva8fFwzDq4OekspINQ2xvRTVsXjqd16VulP6KYSlsfWjNPEQRPYRlYX6kFbIBO/MHMj55RdwSM21aMDau15bfIjrOEm0ubyarAIt3V1m+gbbPM+nFdCkltLa39gcEX0lyWgHrA0pcKN/FA+CpS+eMqd7L09FJ3VPQegiEC0iCLGZ57fY+s1d9Kb70YscqM6xq27ydv8P9PWjAXZgWOP39j+sWCcx4zqQqhwIXIsb1cZc36TjKnjUm78N7jIDVPT98BkgHceA=="],"ops:Label_File_Info/ops:md5_checksum":["adfd86bbf2573c37d862e27e08f332db"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Bundle/pds:bundle_type":["Archive"],"pds:Bundle_Member_Entry/pds:lid_reference":["urn:nasa:pds:insight_rad:data_raw","urn:nasa:pds:insight_rad:data_calibrated","urn:nasa:pds:insight_rad:data_derived","urn:nasa:pds:insight_documents:document_hp3rad"],"pds:Bundle_Member_Entry/pds:member_status":["Primary","Primary","Primary","Secondary"],"pds:Bundle_Member_Entry/pds:reference_type":["bundle_has_data_collection","bundle_has_data_collection","bundle_has_data_collection","bundle_has_document_collection"],"pds:Citation_Information/pds:author_list":["InSight RAD Science Team"],"pds:Citation_Information/pds:description":["The InSight Radiometer data bundle consists of data in three collections: data_raw, data_calibrated, and data_derived. The bundle also includes the HP3/RAD Software Interface Specification in the HP3/RAD document collection."],"pds:Citation_Information/pds:doi":["10.17189/1517568"],"pds:Citation_Information/pds:publication_year":["2018-01-01T00:00:00Z"],"pds:File/pds:comment":["Introduction to the bundle"],"pds:File/pds:file_name":["readme.txt"],"pds:Identification_Area/pds:information_model_version":["1.11.0.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad"],"pds:Identification_Area/pds:product_class":["Product_Bundle"],"pds:Identification_Area/pds:title":["Mars InSight Lander Radiometer Data Archive"],"pds:Identification_Area/pds:version_id":["2.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars"],"pds:Internal_Reference/pds:reference_type":["bundle_to_investigation","is_instrument_host","is_instrument","bundle_to_target"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Pre-peer review version","First release","The collections urn:nasa:pds:insight_rad:data_calibrated and urn:nasa:pds:insight_rad:data_derived were added to this bundle with InSight Release 1b.","Changed Observing_System_Component name in this label from RAD to RADIOMETER to match context product name. Expanded Citation_Information description."],"pds:Modification_Detail/pds:modification_date":["2018-02-01T00:00:00Z","2019-04-22T00:00:00Z","2019-06-11T00:00:00Z","2020-01-02T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.1","1.0","2.0","2.1"],"pds:Observing_System/pds:name":["InSight"],"pds:Observing_System_Component/pds:name":["InSight","RADIOMETER"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Primary_Result_Summary/pds:processing_level":["Raw","Calibrated","Derived"],"pds:Primary_Result_Summary/pds:purpose":["Science"],"pds:Science_Facets/pds:discipline_name":["Geosciences"],"pds:Science_Facets/pds:domain":["Surface"],"pds:Stream_Text/pds:local_identifier":["BUNDLE.DESCRIPTION"],"pds:Stream_Text/pds:name":["Introduction to the Radiometer Data Bundle"],"pds:Stream_Text/pds:offset":["0"],"pds:Stream_Text/pds:parsing_standard_id":["7-Bit ASCII Text"],"pds:Stream_Text/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-05-05T00:00:00Z"],"pds:Time_Coordinates/pds:stop_date_time":["3000-01-01T00:00:00.000Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042::1.0.json deleted file mode 100644 index b2588fd0d..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00014_20181211_073042","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042"],"description":["Peer review approved version","First release of this data product","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["597785416-30671"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00014M16:36:49"],"insight:Observation_Information/insight:start_sol_number":["00014"],"insight:Observation_Information/insight:start_solar_longitude":["304.290"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:34Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00014_20181211_073042.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00014_20181211_073042.tab"],"ops:Data_File_Info/ops:file_size":["27781596"],"ops:Data_File_Info/ops:md5_checksum":["2cb30a3a0916bfaae2016c63aaa629b1"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:34.091642Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-06-11T21:15:01Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00014_20181211_073042.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00014_20181211_073042.xml"],"ops:Label_File_Info/ops:file_size":["25380"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["95b6349a46964256fe814c1193c81c2c"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2019-06-04T16:06:52.873Z"],"pds:File/pds:file_name":["hp3_rad_cal_00014_20181211_073042.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00014_20181211_073042"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00014_20181211_073042"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release of this data product"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2018-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["75906"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-12-11T07:30:42.598Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.945Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217::1.0.json deleted file mode 100644 index 83c36d25b..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":4,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00122_20190401_123217","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217"],"description":["Release 2","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0002"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["607350696-25494"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["614547537-60293"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00122M10:32:58"],"insight:Observation_Information/insight:start_sol_number":["00122"],"insight:Observation_Information/insight:start_solar_longitude":["4.206"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00203M12:11:14"],"insight:Observation_Information/insight:stop_sol_number":["00203"],"insight:Observation_Information/insight:stop_solar_longitude":["43.102"],"ops:Data_File_Info/ops:creation_date_time":["2019-08-31T00:46:40Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_size":["15384810"],"ops:Data_File_Info/ops:md5_checksum":["fcab4b0ddc16b9c5787017b7bfe5559a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.579264Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-09-08T17:14:20Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_size":["25097"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["f23c319eb4af7ac504c81e0fb0408399"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2019-08-30T19:46:39.874Z"],"pds:File/pds:file_name":["hp3_rad_cal_00122_20190401_123217.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00122_20190401_123217"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00122_20190401_123217"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 2"],"pds:Modification_Detail/pds:modification_date":["2019-09-23T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["42035"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-04-01T00:32:17.929Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-06-23T07:39:50.783Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044::1.0.json deleted file mode 100644 index e2afaef5c..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00213_20190703_052044","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044"],"description":["Release 3","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0003"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["615446390-36110"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["619698830-38207"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00213M15:11:18"],"insight:Observation_Information/insight:start_sol_number":["00213"],"insight:Observation_Information/insight:start_solar_longitude":["47.736"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00261M12:49:07"],"insight:Observation_Information/insight:stop_sol_number":["00261"],"insight:Observation_Information/insight:stop_solar_longitude":["69.345"],"ops:Data_File_Info/ops:creation_date_time":["2019-12-11T19:49:36Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00213_20190703_052044.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00213_20190703_052044.tab"],"ops:Data_File_Info/ops:file_size":["6772830"],"ops:Data_File_Info/ops:md5_checksum":["ed62f69e3a81a3f44fd5072d32ec7fb3"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.661562Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-13T17:55:33Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00213_20190703_052044.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00213_20190703_052044.xml"],"ops:Label_File_Info/ops:file_size":["25098"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["7bf3a6b1fbc2ec63f5d984a5127db1a6"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2019-12-11T13:49:35.832Z"],"pds:File/pds:file_name":["hp3_rad_cal_00213_20190703_052044.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00213_20190703_052044"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00213_20190703_052044"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 3"],"pds:Modification_Detail/pds:modification_date":["2019-12-13T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["18505"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-07-03T17:20:44.785Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-08-21T22:34:50.855Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040::1.0.json deleted file mode 100644 index 17897c0ca..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00305_20191006_053040","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040"],"description":["Release 4","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0004"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["623611776-38863"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["631105491-14156"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00305M14:40:03"],"insight:Observation_Information/insight:start_sol_number":["00305"],"insight:Observation_Information/insight:start_solar_longitude":["89.169"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00390M00:33:49"],"insight:Observation_Information/insight:stop_sol_number":["00390"],"insight:Observation_Information/insight:stop_solar_longitude":["128.783"],"ops:Data_File_Info/ops:creation_date_time":["2020-03-06T22:44:18Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_size":["10659750"],"ops:Data_File_Info/ops:md5_checksum":["504d25afb275e7b503e104df61cebf45"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.706178Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-03-09T20:12:00Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_size":["25099"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["46ededf671d770b093f8302d51bfd365"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2020-03-06T17:44:17.393Z"],"pds:File/pds:file_name":["hp3_rad_cal_00305_20191006_053040.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00305_20191006_053040"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00305_20191006_053040"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 4"],"pds:Modification_Detail/pds:modification_date":["2020-03-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["29125"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-10-06T05:30:40.490Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-12-31T23:06:06.368Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222::1.0.json deleted file mode 100644 index 5e80c02cc..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00390_20200101_120222","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222"],"description":["Release 5","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0005"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["631108867-10879"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["638968702-01376"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00390M01:29:58"],"insight:Observation_Information/insight:start_sol_number":["00390"],"insight:Observation_Information/insight:start_solar_longitude":["128.802"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00478M14:22:30"],"insight:Observation_Information/insight:stop_sol_number":["00478"],"insight:Observation_Information/insight:stop_solar_longitude":["175.696"],"ops:Data_File_Info/ops:creation_date_time":["2020-06-01T11:36:36Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_size":["21151872"],"ops:Data_File_Info/ops:md5_checksum":["5978e1b5156c9ec59fd4129664a85e90"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.755310Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-06-02T17:56:24Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_size":["25100"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["c496ba7967ace5ba18783470f9b83ed0"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2020-04-24T16:01:41.743Z"],"pds:File/pds:file_name":["hp3_rad_cal_00390_20200101_120222.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00390_20200101_120222"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00390_20200101_120222"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 5"],"pds:Modification_Detail/pds:modification_date":["2020-06-02T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["57792"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-01-01T00:02:22.323Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-03-31T23:19:50.349Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608::1.0.json deleted file mode 100644 index d0f30ce84..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00478_20200401_121608","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608"],"description":["Release 6","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0006"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["638972080-04063"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["646833467-42074"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00478M15:17:18"],"insight:Observation_Information/insight:start_sol_number":["00478"],"insight:Observation_Information/insight:start_solar_longitude":["175.718"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00567M04:35:01"],"insight:Observation_Information/insight:stop_sol_number":["00567"],"insight:Observation_Information/insight:stop_solar_longitude":["229.943"],"ops:Data_File_Info/ops:creation_date_time":["2020-09-04T05:05:22Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_size":["13007640"],"ops:Data_File_Info/ops:md5_checksum":["9e30661186ee9a27fdabebaf27c3266e"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.826863Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-09-09T17:20:06Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_size":["25100"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["9fd0faa7a5e1b80d95e41931999cd6fa"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2020-09-04T00:05:21.255Z"],"pds:File/pds:file_name":["hp3_rad_cal_00478_20200401_121608.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00478_20200401_121608"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00478_20200401_121608"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 6"],"pds:Modification_Detail/pds:modification_date":["2020-09-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["35540"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-04-01T00:16:08.395Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-06-30T23:59:29.047Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545::1.0.json deleted file mode 100644 index b8fd489ab..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.3307333,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545::1.0","_score":4.3307333,"_source":{"lid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545::1.0","title":"InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00567_20200701_125545","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545::1.0","urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545"],"description":["Release 7","One row of this table contains calibrated Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-calibrated"],"insight:Observation_Information/insight:release_number":["0007"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["646836843-38797"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["655744367-38404"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00567M05:29:47"],"insight:Observation_Information/insight:start_sol_number":["00567"],"insight:Observation_Information/insight:start_solar_longitude":["229.967"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00667M13:36:33"],"insight:Observation_Information/insight:stop_sol_number":["00667"],"insight:Observation_Information/insight:stop_solar_longitude":["294.618"],"ops:Data_File_Info/ops:creation_date_time":["2020-12-03T20:25:34Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_cal_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_size":["421998"],"ops:Data_File_Info/ops:md5_checksum":["0356fbef4ac7b7ce353644dd93af34e9"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:44.875769Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:48:28Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_cal_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_calibrated/hp3_rad_cal_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_size":["25099"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["984c1b65212a47111bf833a28c5645c7"],"ops:Tracking_Meta/ops:archive_status":"staged","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Azimuth angle of the sun","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Brightness temperature for sensor 1A","Brightness temperature for sensor 1B","Brightness temperature for sensor 1C","Brightness temperature for sensor 2A","Brightness temperature for sensor 2B","Brightness temperature for sensor 2C","Error Brightness temperature sensor 1A","Error Brightness temperature sensor 1B","Error Brightness temperature sensor 1C","Error Brightness temperature sensor 2A","Error Brightness temperature sensor 2B","Error Brightness temperature sensor 2C","Temperature of sensor 1A","Temperature of sensor 1B","Temperature of sensor 1C","Temperature of sensor 2A","Temperature of sensor 2B","Temperature of sensor 2C","Operation mode identifier","Power of calibration target heater","Temperature of calibration target","Power of sensorhead heater","Sensorhead body temperature","Bus voltage used in heater power calibration"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177","186","195","204","213","222","231","240","249","258","267","276","285","294","303","312","321","330","339","348","357"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TB Sensor 1A","TB Sensor 1B","TB Sensor 1C","TB Sensor 2A","TB Sensor 2B","TB Sensor 2C","?TB Sensor 1A","?TB Sensor 1B","?TB Sensor 1C","?TB Sensor 2A","?TB Sensor 2B","?TB Sensor 2C","Tref Sensor 1A","Tref Sensor 1B","Tref Sensor 1C","Tref Sensor 2A","Tref Sensor 2B","Tref Sensor 2C","RAD operation mode","Cal. Target heater power","Cal. Target temperature","Sensorhead heater power","Sensorhead temperature","Lander BUS voltage"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","K","W","K","W","K","V"],"pds:File/pds:creation_date_time":["2020-12-03T14:25:33.770Z"],"pds:File/pds:file_name":["hp3_rad_cal_00567_20200701_125545.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_calibrated:hp3_rad_cal_00567_20200701_125545"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Calibrated Product:hp3_rad_cal_00567_20200701_125545"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 7"],"pds:Modification_Detail/pds:modification_date":["2020-12-03T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["39"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["366"],"pds:Table_Character/pds:description":["One row of this table contains calibrated Radiometer data."],"pds:Table_Character/pds:name":["RAD CAL"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["1153"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-07-01T00:55:45.002Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-10-12T03:14:38.501Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042::1.0.json deleted file mode 100644 index 883caa640..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00014_20181211_073042","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042"],"description":["Peer review approved version","First release of this data product","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["597785416-30671"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00014M16:36:49"],"insight:Observation_Information/insight:start_sol_number":["00014"],"insight:Observation_Information/insight:start_solar_longitude":["304.290"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00014_20181211_073042.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00014_20181211_073042.tab"],"ops:Data_File_Info/ops:file_size":["14118516"],"ops:Data_File_Info/ops:md5_checksum":["68888c73b97ea016d5d9e739267d2b51"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.090863Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzdW1tv4sgSft6R5j+0kI605wF84Y48rKIw2UGbTKLArPacF8uxG2gd2+1tNyRzfv1Wtw3YxhiMM2TIPGRwurq6qr66deEYv714LlphFhLqf6ppDbWGsG9Th/jzT7Uln9V7td+GHz8Ygq7uUQe76OOHXxYMzz7VFpwH4UBRAids+FZoNeZ0JR5a4oey0pSH0aRlwg9Tu9LURmgvamIz/I89i38PsB9GTASPJXMb1HbtBmVzxQkdV4npGPVPEcEjodBJIX5I5gu+EWf8dTL+/ctUimRqvWZ1uR4YdZY2N++fQsxWFodTLffjBwT/QOIkrz12qiWIB7G8BZt2NUsxeAnJZvPz83PjuSlF11VVU/66u51I6euwmVu+jddbQzKI9LqltlThoNRiG4p2l3SEl9CJ9m13H6nowfOORx2EqA0jdsbYwT4nMxJpbl4xbMVLctmlc1hyTRKTYTZcMn8gTh7AqWvITGY5A8filulgRlbYGSyCpvileDZVsH/L1FWtp+maZqrdptrSDSWHd+LkODBhdQihaSiJ5wQVJ9zFw7E/EVKgLw9N9Gg5hHqYY4Y+vwQgjQfc0SgSC8UOe4x4EevEWcSfUeZFdpKxaMYygYAArZRyP02CURBHje1aYTjMjSFDSRMldt9Bhtrg9YWEnLLvifVdmhHmFnEzJJLMS5IBfHgorFBX9brWMpTd1RwWR8G0oXZwaDMSCI7DBwwQMbwi+BlZAagr8Im3G0qSMqOccli7qgbo1NX2DzfADWEhBwu42AoxojPEFyREIopQDH4VM2TW045iKPvj3kg44k4+mEI4mdeUMqiSYJAwKxRkVsalrUwOpJE5NfAnbap2B0110NIb7X7vv4aSpdxhRIM0n35dbdab2lRvDpqdgao1+q225JMiTBqgQFhj7K9wyMk8V01J4VveJrMYinzKUIh6ObyL0i7kC/GUoRj7kIcgnM1HPMMMuotcF3KJY7INQSq/2hQ4vHDIswlxB3Gqb8TZF1JpikPOEZtFU4opUzWnZoqtoWSosg5XqI1YLjBp7FXQW5mT7yHHXpZ7dh2A8wLqg5fm6XMQnC1Ak8Cysc2sGc/F6Hicjscq5Gwpyo65oCEfhBsBjgcsDzQSmhnWBxA7ArWI5Gjbn4LStiAfAGq8Ue7sQA3YRshXxOis8OySpfK2xeaYm+msn5vx7iwWFqS7B9fycT5Ar5ftuJR2EMizGp6U6NQUF/GqmtsO2c+Iy0BuJYk9apAsrONto5inzHpL3B2Y/tJ7gv5YtKqGsmexgE1cMMxgIekFuJNvjzdX15/R3XgyGd9/3XLNoS3gvG5TpVEfr0b1+AKw5ZeiKOC0TZPQ81L7f2bUIdh0CX7e7ne7vXZL69SbaqebsEHhrnKnQR8RbevAFaDVbepqXe91u2rhYZtNZc6SO8wABCXSAYr0ydIWnSNVD6mbdJdWgnd2vZAXaJZipel6klV6+aBUoAsEl4ctX2yzWNStTahbl0LeaR3R1bX6WWnz9x0SvOg00ONO7Q+avYGWVeiEw2KLAq1L/TnhSwejpU/4p5qD57UhXCUbel/NwSC54xgg9p3Qami97i4wR7OnM/5ssTjQ/7q7RVfMXpAVmlLqJtimyI7hl74XNfQcXnuvSlvawykT7jm7qXddDHcvN5v0bt7CjSh9IzhUiAsq13oO4lBblv5wsP5keusLQlEF21e91lwK6teh2vWj9FoETTH1WU9SQnKgSP8YFQ0lF1HjhrhYAp+eqySZCpKsjDOxTfr4wQlRg1tPhrLdkOFkw9mbwUHyEtupq60ppDsVElCvoXU0uMTmECe1z0gK3dwTnHq9sJhl853sG7fdVyM0+vyY38rR2SzEPE4jT985rg0hR0W/3YXNhht0OOy2+2pHgBQ9ZqiSg4p7HyNGnzcjDS7ERaK5s8CfUNwhJCd1whcahdOO6FhAwyUeETpfW4wRa47rj5iDy6Jb4uP6DRadxw5thtdjtL7PfrEjYBe01PoCYvkxh2jO6DIIheniT7ltqTzMxf6cL1IW13obc8bLeftvxOmFsm4x/+YTkVMtF4y9nno4SLjT3qvXVtl1KddijfeX9sQeNx6ZpxVbc1iv7uMRpQAR61eT6/HYHAnvl1Ob/9yNzG/Ta3CJDUmxHLvm1dsbMfYZVzIQe4biZEORH/fJmvBNQY0sf23a/W4rdyqHISyF8kQU5qPh1CvDqXdPxVNk7bm495+OYikQvx4PIRgRRRZB0FVEeUqkRMhZ0P+FS4ZluTs7uOL6jaZsiZH4NspFE9HKoWm5EG5WxrzZPBXzRyy+vTgd8F4JwDVFb6FQhMOxsEdG5cK+skmWEYyIj6TdF3QJP8EFmp1+H9wBSpZzfheIIN82+7eTEtC3KkPf0i8Berj7MFwiZUt8w6UPaXsOzciMUQ/5lPEFtJVogaFJD+AjeEXAiD9H+O8l8enL+bEHCa/+T7wlX5QAvV0Z9PbJNftnBj2Kdol6ZFPxbRtot8KI0wj+N0H4QYzWYk+8uf8TaSWw7lTGuqO+R6yFXQHUGwrmRC5cBkQel5dX9Ovt/eTfyMbiDonODvjYt8UbDvapgHerA95/x4BDqzazwLi+mA25yOJrA587rsncs1DV6O5VBrvbe5dgc7huWcxBDl6RSGkKV93IviLSheGDXcO/iRNUjfh+ZSfonXxlu2gnIPmGP7cTLCyHPpdGXVMrw97vXALs/zoe8RthbonzDLkAPoAdRtaFK9sboZuT4fUyML/CfE1tXwLOFTo4/afv4EpBXn0Gp2mtdwx5fg+n/0Q9XCm4q4/fNP0i5m9n6eLeyg0qR331UZzWfJezuJP6uDdwg20fVwr36tM4rXUR47jXbOTOD+90Eg2LykBbffimtS9i+vZHmRoeFW+OvQAziy8Zll+pxcZ9G1RLBWz1CZvWvogR2yuhev5YHZ0SrNVnaVrnIoZpJWCdJuDEjFH2hqE6OiVWq8/GtO5FDMdeBdTKkSper9v7spR4LT7vRbTohbX8t+8MJffvHYf/AGcob5Q="],"ops:Label_File_Info/ops:creation_date_time":["2019-06-11T21:16:08Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00014_20181211_073042.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00014_20181211_073042.xml"],"ops:Label_File_Info/ops:file_size":["15758"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["597db33270d23ffd95bda92c708cdc35"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2019-06-04T16:08:18.161Z"],"pds:File/pds:file_name":["hp3_rad_der_00014_20181211_073042.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00014_20181211_073042"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00014_20181211_073042"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release of this data product"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2018-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0","1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["75906"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-12-11T07:30:42.598Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.945Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217::1.0.json deleted file mode 100644 index 95d1146e2..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00122_20190401_123217","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217"],"description":["Release 2","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0002"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["607350696-25494"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["614547537-60293"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00122M10:32:58"],"insight:Observation_Information/insight:start_sol_number":["00122"],"insight:Observation_Information/insight:start_solar_longitude":["4.206"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00203M12:11:14"],"insight:Observation_Information/insight:stop_sol_number":["00203"],"insight:Observation_Information/insight:stop_solar_longitude":["43.102"],"ops:Data_File_Info/ops:creation_date_time":["2019-08-31T00:47:20Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_size":["7818510"],"ops:Data_File_Info/ops:md5_checksum":["8ac04d6df6172bb3e930351d90e3b50c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.140806Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-09-08T17:15:18Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_size":["15475"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["581aa69ef21e2e0c54f5fd065450b2c0"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2019-08-30T19:47:19.122Z"],"pds:File/pds:file_name":["hp3_rad_der_00122_20190401_123217.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00122_20190401_123217"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00122_20190401_123217"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 2"],"pds:Modification_Detail/pds:modification_date":["2019-09-23T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["42035"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-04-01T00:32:17.929Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-06-23T07:39:50.783Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044::1.0.json deleted file mode 100644 index 0a835d6b6..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00213_20190703_052044","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044"],"description":["Release 3","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0003"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["615446390-36110"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["619698830-38207"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00213M15:11:18"],"insight:Observation_Information/insight:start_sol_number":["00213"],"insight:Observation_Information/insight:start_solar_longitude":["47.736"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00261M12:49:07"],"insight:Observation_Information/insight:stop_sol_number":["00261"],"insight:Observation_Information/insight:stop_solar_longitude":["69.345"],"ops:Data_File_Info/ops:creation_date_time":["2019-12-11T19:49:54Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00213_20190703_052044.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00213_20190703_052044.tab"],"ops:Data_File_Info/ops:file_size":["3441930"],"ops:Data_File_Info/ops:md5_checksum":["bec927a762408b2c84b1d33d5522386c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.171786Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-13T17:55:31Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00213_20190703_052044.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00213_20190703_052044.xml"],"ops:Label_File_Info/ops:file_size":["15476"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["e8d339e131eec17e2ffb9cb8a057cb95"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2019-12-11T13:49:52.509Z"],"pds:File/pds:file_name":["hp3_rad_der_00213_20190703_052044.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00213_20190703_052044"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00213_20190703_052044"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 3"],"pds:Modification_Detail/pds:modification_date":["2019-12-13T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["18505"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-07-03T17:20:44.785Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-08-21T22:34:50.855Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040::1.0.json deleted file mode 100644 index 8deaefe94..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":3,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00305_20191006_053040","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040"],"description":["Release 4","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0004"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["623611776-38863"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["631105491-14156"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00305M14:40:03"],"insight:Observation_Information/insight:start_sol_number":["00305"],"insight:Observation_Information/insight:start_solar_longitude":["89.169"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00390M00:33:49"],"insight:Observation_Information/insight:stop_sol_number":["00390"],"insight:Observation_Information/insight:stop_solar_longitude":["128.783"],"ops:Data_File_Info/ops:creation_date_time":["2020-03-06T22:45:10Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_size":["5417250"],"ops:Data_File_Info/ops:md5_checksum":["c559e69c0262555bcc53f177653d7c87"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.191182Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-03-09T20:10:12Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_size":["15477"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["6a4d832b37de6a675b081cd8cf376f4e"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2020-03-06T17:45:09.127Z"],"pds:File/pds:file_name":["hp3_rad_der_00305_20191006_053040.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00305_20191006_053040"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00305_20191006_053040"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 4"],"pds:Modification_Detail/pds:modification_date":["2020-03-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["29125"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-10-06T05:30:40.490Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-12-31T23:06:06.368Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222::1.0.json deleted file mode 100644 index f44d7376c..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00390_20200101_120222","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222"],"description":["Release 5","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0005"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["631108867-10879"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["638968702-01376"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00390M01:29:58"],"insight:Observation_Information/insight:start_sol_number":["00390"],"insight:Observation_Information/insight:start_solar_longitude":["128.802"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00478M14:22:30"],"insight:Observation_Information/insight:stop_sol_number":["00478"],"insight:Observation_Information/insight:stop_solar_longitude":["175.696"],"ops:Data_File_Info/ops:creation_date_time":["2020-06-01T11:36:37Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_size":["10749312"],"ops:Data_File_Info/ops:md5_checksum":["4f8862255093503644261c2606822a66"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.216291Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-06-02T17:57:44Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_size":["15478"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["0c18243854a24d4e72c859207dac68f6"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2020-04-24T16:03:39.943Z"],"pds:File/pds:file_name":["hp3_rad_der_00390_20200101_120222.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00390_20200101_120222"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00390_20200101_120222"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 5"],"pds:Modification_Detail/pds:modification_date":["2020-06-02T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["57792"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-01-01T00:02:22.323Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-03-31T23:19:50.349Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608::1.0.json deleted file mode 100644 index 4cfdd74de..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00478_20200401_121608","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608"],"description":["Release 6","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0006"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["638972080-04063"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["646833467-42074"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00478M15:17:18"],"insight:Observation_Information/insight:start_sol_number":["00478"],"insight:Observation_Information/insight:start_solar_longitude":["175.718"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00567M04:35:01"],"insight:Observation_Information/insight:stop_sol_number":["00567"],"insight:Observation_Information/insight:stop_solar_longitude":["229.943"],"ops:Data_File_Info/ops:creation_date_time":["2020-09-04T05:06:50Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_size":["6610440"],"ops:Data_File_Info/ops:md5_checksum":["4e8bb9961c309ca0317f2e17ab4c3d49"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.254559Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-09-09T17:23:24Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_size":["15478"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["4fc318a6df1ecc4f525c1352361cdb9a"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2020-09-04T00:06:49.363Z"],"pds:File/pds:file_name":["hp3_rad_der_00478_20200401_121608.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00478_20200401_121608"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00478_20200401_121608"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 6"],"pds:Modification_Detail/pds:modification_date":["2020-09-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["35540"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-04-01T00:16:08.395Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-06-30T23:59:29.047Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545::1.0.json deleted file mode 100644 index 4bd293897..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545::1.0","title":"InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00567_20200701_125545","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545::1.0","urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545"],"description":["Release 7","One row of this table contains derived Radiometer data.","Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-derived"],"insight:Observation_Information/insight:release_number":["0007"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["646836843-38797"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["655744367-38404"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00567M05:29:47"],"insight:Observation_Information/insight:start_sol_number":["00567"],"insight:Observation_Information/insight:start_solar_longitude":["229.967"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00667M13:36:33"],"insight:Observation_Information/insight:stop_sol_number":["00667"],"insight:Observation_Information/insight:stop_solar_longitude":["294.618"],"ops:Data_File_Info/ops:creation_date_time":["2020-12-03T20:25:42Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_der_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_size":["214458"],"ops:Data_File_Info/ops:md5_checksum":["2d0d782bba22cc0db1bb8c2e8d3e04f7"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:45.281352Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:51:36Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_der_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_derived/hp3_rad_der_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_size":["15477"],"ops:Label_File_Info/ops:json_blob":["eJy1WWtv47oR/SuEgAItECt629a3INl0jcabIPYWt3vvhcCVaJuoRKok7WS78H/vkJJlOX4ksrf7wWtTnMc5MxxORj+tJ8GzZaqSx++SiBVWlDOcW/FPa5QRpuiMpmYtuREE6+Wy3p/mWEorPiJ/ZY15thX+TKXi4oeW31m/IwpTY61oL2dYEVDtOZ7Tc72e44O+jMhU0FI/h0fPJCdYEtSHJysipJaimRW76/WVRdmMi6JSBXpJntRbQNC1Xcd2bQfkcj4HgznIVUCJgOdLwWKGJY7LTMaUSTpfqETgLAafcJIRQVckixelrxf178RxwqifaF+dvuMmrheGQfjWrStLUZVrUCM20TrR5ycfPeOM8oIoItCn1xJ0F+AJuquMoJrZDxgDzK9FznQ4FkqV8fU1eG9rGPacr/SPQH9cr1zw65nMiCAsJckDRMVEmoEHELWkeWTFv/+0cpolYrtymJqMp0vttYw335KCSkP2ldVIJ+pHqVUYEhVvpMDz8+0ALzowG3oklR8z+aemS9JYpgtS4AdeJd373CH97w/xB9P/673yxObrp7tJkMBH4t5Axr3KbCPZ1nBQQc3fdQ1dW37f6r5Q5cHoy2T0989T40XiDnzjilXny4bdU9j3FTfSQOJW8uXlxX7xbS7m15Cc7vVv44eJIbgHkgrr0F5Z9zQnppLsl5sp/g7PbhdY4FTpo/jT4rOZJCZDl4xqJ7//UFpLyiFhIZKxs9bpnHKR7QqKai0nbK4WJ+TdQQQa5oIvSzg7jvaP5Du64BjMzBpbFt/1ApzkWtkdNsoYLnSafWVUH3ico5SDbcrgaYYUnGjYU6nIm0w77hC4UyVslbw3k9vRKNGWkimoSv41vku+Tm/3yqHegTB7a/A9/F641gdwF6G3Rfhli2/C8y5AvP5BJLrSzMHIW/9BO6rsIyjdSC2oRBB6xGeogDq/FMSc/Y8jOwTMb4C5116ApEFUwxtjIdFULAnS9SBH4BAWaNoxfL5/EPUzMTfiLuTKjtImpTGmQ4coQ8aVBV/CJ8D3o+EQqAATWQf4gwPwgwZ+RuaCkJ3Ygv2cszlVywwomHQBHXgfB22wySWDXJ3nBM0ELxDjQi3g/kFQLKgs4SswUgrK5oj8Z0kZf70Md3gcNzhy819aLEFnB8Dh4VN6IsoGcWUICZKDgRVBilfQL0MXnUT3tNBNUkX2/eM/kdsFZ+R8HKc2BoDuOdhAOWVE5665MNBfHx4nf0Mp0U3GZVj7R7GOWKq7uPR8rMPOWKEqzTBYZLrXzBFWb62eA3FwPJx0XmB0cVD7gw5A4drOsMhQRlbUKEYcLrnKqA6w9qY87s05BAzfIeDiSA8O30znEUBPe3MOAa7TMPCXFvgFzvhLd7TD6ONo73XTYzDOUA7AAaiszMKt9CuQuZ1qldepcXLCs4qV938rVq7XqVp1Q+sGv6hceReC9M+oV92geh16qrMK1qUUnOirjlasbhT4HTqss0rWpRSE75SsbnCDDv3VuzXrUmjb/uofW2jTSdXpdIIVdmqnqsOqSFESgRX8AWT+MHpj9SxE/ROIugUq7NQ0HUd0aYwGhxDdnRWkqEN7NG1BIUJw8ctCNDwFqFuM+h3aneOAukXoz3qz1FDWV/U4Rv9yQ3/zM8lITgtqpizWLRaC4jnpPROwztADXMq9e0KyLfznmzt09+l5z+lHuL4FnHcoAGZsoPQcCWl3MGUS1RPb9qhVs2HrmameRmkkMz2Vqs28O2y1wYDGK8h2Vp2YsUt7YD11g9gL48Cxh/3BN0tPpVsTr2aYPmIrIhWdv13dn8e+MyY19L+qmLYVxvXszt6M+U6MR3cENTlNrzKpRWuBcT3dhS3118bv2kzcRjrazuLbW6TipcnfPCkIZokZgWxonPC85zhR1B+7fuxHsa/n/xvJGlNirvFN1CZfn+9vbj+h8WgyGT1+aW2XfKZesGh2/jZ+QDciXdAVmnIzAdq6hIXSjjTn0DIJ0N5SQglLBZ7p1x88/XeS8iVTSQmCtELobjdvXpTUvEH+9upk3DEKPFTgm/lL63BBR7EzVRsGduQO1gec/qACb2gPo/5634E26GgX9IbB9gsNy7Ud2ztFTeWZIQi2R0E08KNB4Pf8QX94klPjUSMXhv0g8KM+yAVOsBeu0ykE0Rs7IdAWB22Tonp51Ibs9FtnlLJ5Mvkh4arSTL5dS255UXJm+Pz9wsMqlajfZXDZpuLUiaUyeSN46rhOGp3mXcsv8TYWTTH9sKMtH7eleOvmqLVRv58x0+7bZpIutZcmMfbLra64U8eHvjH2B3bouN9AbZUde5udfs9xp44Th1CbQ9txvG/asSkWc6KS3TeeF1ZiZXTGJXSlRNkFFiffTlW7WySNK4F625PRAim6Xv8PKf4P8Q=="],"ops:Label_File_Info/ops:md5_checksum":["67d6801c4b08f7c633f627514fe50067"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Date_Time_YMD_UTC","ASCII_Integer","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real","ASCII_Real"],"pds:Field_Character/pds:description":["Date and time","Sol number for this set of measurements","Local true solar time in Mars hours of 3699 seconds","Mars sun angle from northern hemisphere spring equinox","Local sun azimuth relative to north","Sun to FoV 1 line of sight (LOS) center","Sun to surface normal at FOV 1","Standard deviation over FOV 1 of Sun phase angle FOV 1","Standard deviation over FOV 1 of incidence angle FOV 1","Fraction of lander shadow in FOV 1","Sun to FoV 2 line of sight (LOS) center","Sun to surface normal at FOV 2","Standard deviation over FOV 1 of Sun phase angle FOV 2","Standard deviation over FOV 1 of incidence angle FOV 2","Fraction of lander shadow in FOV 2","Surface temperature for FoV 1","Surface temperature for FoV 2","Temperature error for FoV 1","Temperature error for FoV 2"],"pds:Field_Character/pds:field_length":["25","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","27","33","42","51","60","69","78","87","96","105","114","123","132","141","150","159","168","177"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],"pds:Field_Character/pds:name":["Universal coordinated time","Sol","Mars True Local Solar Time","Solar longitude LS","Sun Azimuth","Sun Phase angle FOV 1","Incidence angle FOV 1","Sigma Sun Phase angle FOV 1","Sigma Incidence angle FOV 1","Shadow FOV 1","Sun Phase angle FOV 2","Incidence angle FOV 2","Sigma Sun Phase angle FOV 2","Sigma Incidence angle FOV 2","Shadow FOV 2","TS FoV 1","TS FoV 2","DTS FoV 1","DTS FoV 2"],"pds:Field_Character/pds:unit":["Date","DN","1/24 sol","degree","degree","degree","degree","degree","degree","%","degree","degree","degree","degree","%","K","K","K","K"],"pds:File/pds:creation_date_time":["2020-12-03T14:25:40.978Z"],"pds:File/pds:file_name":["hp3_rad_der_00567_20200701_125545.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_derived:hp3_rad_der_00567_20200701_125545"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Derived Product:hp3_rad_der_00567_20200701_125545"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 7"],"pds:Modification_Detail/pds:modification_date":["2020-12-03T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["19"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["186"],"pds:Table_Character/pds:description":["One row of this table contains derived Radiometer data."],"pds:Table_Character/pds:name":["RAD DER"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["1153"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-07-01T00:55:45.002Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-10-12T03:14:38.501Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1.json deleted file mode 100644 index ea90a238d..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325","vid":"3.1","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325::3.1","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0001"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["596883180-44433"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["607347320-28770"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00004M12:41:52"],"insight:Observation_Information/insight:start_sol_number":["00004"],"insight:Observation_Information/insight:start_solar_longitude":["298.061"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00122M09:38:12"],"insight:Observation_Information/insight:stop_sol_number":["00122"],"insight:Observation_Information/insight:stop_solar_longitude":["4.187"],"ops:Data_File_Info/ops:creation_date_time":["2019-06-05T15:56:32Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.tab"],"ops:Data_File_Info/ops:file_size":["27624929"],"ops:Data_File_Info/ops:md5_checksum":["9be7810ae4f744af51eb6e6d6755e11a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.098546Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlXN9z4jgSfr6pmv9Blae7qgVbNr+LYSubbDbUTmZSkKvduheXYwvsWmNRkoDkv7+WbMAYYzDOhAnswyygVqvVX6vV+mKr++vLJEBzwrhPwy9XuKpfIRI61PXD8ZermRhVWle/9j5/6kq5yoS6JECfP/3LY2T05coTYso7mjZ1eTW0uV0d07n8UpP/aHOsPd4Oaxb8Y+FrrFe5413JzvB/MrHF65SEPFIidcxYUKVO4FQpG2sudwMtlmM0PMaEic/lnDQ/5P7YEytz+t+G/T/un5RJFm6Z5e16ZNSdOcL6/swJm9sCRrWDz58Q/AcWJ3Xt8NNVQrgT25vTaXtmGwpeuL/qvFgsqgtTmW7oOtb+fvg6VNZXoLOwQ4csu3K/E83rK3XUFPZaLbuhqHfBQHjhbtRv3fvAie4d73DUwYirXqSu23dJKPyRH83cumbEjptUc0DH0BRYfixGWG/Gwo4cuQOjLiGzmO12XFvY8GHR8aam/EF+tnT4r2YZOm5hbOqW3qqbRr2rZehNjBovSmjtmVXc1RLfE1LCFwHp9cOhtADdP5poYLs+nRBBGPr9ZUqYPwHt8OsCxYF6iGmR2sQ4fjiibBL5R61BK7anh6sAKSSOrrZbJqFoGq8WJ7A572Wuna62KZTo/QCZaYXTvc8FZa+J9m2ZWyJsP0iJKLFJUgxgIz3phYpuVHCtq223ZqhIQKJX2zsgWkm7hDvMn0qNvUcC8DAy98kC2VOY7py4yzTc1ZKSqclp+2dXygHtil6rGEZxB6gIONwBdz7jAjwQEJuTU8+4XjHM4jM2is14QABmh3AOSDs0BBtD2GSR8AhiavEGVCaDCbFDi9PAZpaApYvmdjAj/NQeaoCTinvIPN5DgiI/dIKZS5BMqeAmRmdjD0XmmBUTf1SX7ErlmS65oYwRR8jkIOMAQYJFgf0MJZAtBPOfZ4KgRO5UW5f2BHFj3VDKoIoDi7gGaXKqjFMhVcZxqfbNDNzVdm+k3bSVSaVpg9NGQanCxHoCUaLGuGLqT4beqZsdo15t6ub/ulpacktR0hG9dTA9GWbHbHR0XG03a0rPhmDSATnGdvvhnHDhjzOnqSRCe7Larrua+paSkAVo7yGqY2Ajlt9SEv0QNnfYJ60BGREG5Xpm0AU+7PArgY2CRaYf8iKgcEmY24lrp2pczkB9sqEhY4hVo6XMVLWPoNaG2q6WkkoHXO5sZHOOS+OogjxqDV+5IJO09nQ7ADeZ0hCiNGs+e8FZAzSc2g5xmD0SmRgdjtPhWHHBZrKWszzKRYevDDgcsCzQfG6lVO9B7ADUIpGDfX8MSusqdw9Q/dXk3h2oDlsZ+YYYvSs822IbedtmYyKszayfmfEebMZz0t1jYIckG6C3y3ZCWduZqrGqE2XRsSku0lU2t+3zXzfeBjJ3kjiiOsmNtb8+gWVNZtklLrutcDZ5hkMnHAFxV9vRmKMm3jCsqafkJbjD/w7urm9+Rw/94bD//dtaa4Zsjubl+U85dXB9W4Gj6lrXRmuOlnWKhIMkdf6xourAoTOI8Xq70WqZuKVXarWaaa615/YqNhrUEFG3ht40a03T0CtGq9nUcwdbdSoyluphTcFQX4GPc4ZIy+aNo6YOp5FEqOi1hO50e64umNmGKizPmbua91qVeVzqDWlQUUY+YKNTw526kbY2u98+w/NGg3k86O2O2erg9ISOGCz2KMgGNBz7Qh6BZqEvvly5ZHzVM9qtqt7AGRgkexwCxK4RalXcam4Dc7B6OhILm8WL/O+Hr+iaOZ4/R0+UBgm1G2KH6NskG6pGhq6dB6u17P50CWec7bS73Ai3Dzar1G59hdPQ5mlg3yacs2stSUWXOmrb553lJ2uyPBzk7V67dq6llpy9a9++9aPm5U1NSaEu6Unu79mgf8wUu1omot07PyAK+E2yMqlUiqRtHMluKsb30q5VYT93tXWHlCYHxl7RDMkDbKOi156wPL12TL3arsuDcIZwcvYpS6GSe4ZRbzyb2Y7Yyr5xyX19iwbXf2WXcXQ04kTEaeT5VZCrHmxz0a/bsDlweua9llmrtyVI0deUVJKk+B4SxOgC0RESns+RkOYuWTSOwKNJ2lvGQTWX5YiGtFwS+BNfzvfGZsy3x6QyIALCFX31Q1K5I8RdmpeQTekaRO27fBcHAQlghmZdwqs+ZgiNGZ1NuXRb/CmzHFWDBSQcC2/D26ZkxDaas/rfydFzbV3jvT7iIlU4oIg82pGv1/Nc7uA4nuzuHT3RJ4j/7LQxp5WGZesuHdHKl0v8enjT78Oaln9FWP+aP/S2M3FzNfIuVyoFsk+PE6erqU+7rEsE4pZTVTWGbIEWnu94CEoFPmNE/c2GOs6MMeL+ghiZMsLhN+IimyMbfrADFPm1ir5RQWBdgI682hXZoZslsKw3kR8qMjre/JBMdasFF3OOjGyYElKxZQ56nsU/LjwKizT+dUSDgC6gz/MrgraRjD+VP1ex5fzzC3SBxKusWAogGNyPooJLa7DWqNfNhvxoq065C125X9sf9MXWhSxjDl4FRvlV0D52Gcg9biwZkuNXQr3AQrj9VmAd0GAdGiwKMrmBAK6JJZD7dw+l863BfYIInNApbI/42nq6KQC0WRpoo35CoFs/COg1/yazhHyuRAHueHYYQkrB1yeE2CgIca00xGbt8iA2Tgkx/q0YxPXSENfMy4MY/3bKVVwQ4kZpiOvG5UFsnBJifFMM4mZpiBtHnz0+LsT45pSruCDErdIQSx7+0iA2TgkxVNSPTwUgbpeH+JRHpwutqAtBjPXSGLdal4fxqUvqYhiXJwLbzcvD+NQ1dTGM34Dm0huXB/Kpq+piIJenuDC+RI7rxHV1MZDLk1zYuESW6/1Bvr69wdaAkVEReMsTXNg8R4YLnIkwWj0wgLCuo+/eBH7h6iH3JeinQNkojHJ5jgvXzpHkkigbPyPKj0/oxg7QU/xc6eFIl6e6cP0cua5BnKPpCDl24D+zaOLRg7sI3C2hF2QyJdAyYwRxEnLKTgH8UI2M7sHiIsiXZ8Bw4xwpsI+C/Pfokanj+TFcniDDjXNkyGLP/iTs2BbORUkyozxJhpvnyJLl4HwChmx7PRckUYw3eGKudY5MWd56fn8CZXs9F8X5LZ4JO0eyLG89/wQ4F+XLjDd4JEw/R74sbz2/P42yvZ6L4lyeMjPwOVJmeev5ZDgfw5oZ5Vkzw7hI1oxuhMAJMS/MoRnlOTTDvEgO7efA/FhGzSjPqBm1c2TUUtn8g9ArR/NrRnl+zaifI7/2weLg/k+kXrpCibeuioRBeZLNqB9Nsr3ri2xFgkDegqSgDygnXCDw8pw4MvvP4uu7VLVHg9kk5MjU5S9mHf1bvUgWRK+x3f/5n3ePhsRrolRFpgRLXlZY5E2f8nyc0TxHngaCQIaEfGkxFMErkq/wzQliu3yO3v/dPRK9VQhm8kKv8ZnluTmjdY6cjUyv8fUL0busgPKYzglb3W7IF75wvHiriANANiW2Bh8QYS70hCzhrK5WQ9DRi65FRPsurlN2vflTNAMyuvfHHlQQAQROkXApT/EZ7XOkfiBc7gJ7DIi76r4jFSO2UIHigatljhipb2JBkWu/qkswM6OGI/XOaKDuRzxBJpHVjAdFEHqm7iuCTzL0H/96KBIm5RlCUz9H5ii9kzh0MrFDd3UPZhwjfA1C7P+4C2T3GXPeP2PAibMaHzmPjIg3eMcUnyPTdGBEJI8iP0dIJCpOISvlosVmeerRND4ADZXCeiQ3CbUzyOte2Cy6FYJl+FIK5F+arfTvgVXe+rPzHhd5U1/W/TjRPTrZlwJ1tcy7zXv/ByADbjA="],"ops:Label_File_Info/ops:creation_date_time":["2019-12-04T22:41:43Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00004_20181130_085325.xml"],"ops:Label_File_Info/ops:file_size":["24946"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["985cc9d4e731e5e6e3b22e64b0f62bdf"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-06-04T16:01:30.953Z"],"pds:File/pds:file_name":["hp3_rad_raw_00004_20181130_085325.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00004_20181130_085325"],"pds:Identification_Area/pds:version_id":["3.1"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Peer review approved version","First release","Reprocessed containing the right local_mean_solar_time values","Reprocessed to include data through 2019-03-31","Corrected value for label attribute Observation_Area/Time_Coordinates/stop_date_time"],"pds:Modification_Detail/pds:modification_date":["2018-02-14T00:00:00Z","2019-04-22T00:00:00Z","2019-05-23T00:00:00Z","2019-06-05T00:00:00Z","2019-06-05T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["0.9","1.0","2.0","3.0","3.1"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["83459"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2018-11-30T20:53:25.703Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-03-31T23:36:01.974Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217::1.0.json deleted file mode 100644 index dcfc4b416..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00122_20190401_123217","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217"],"description":["Release 2","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0002"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["607350696-25494"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["614547537-60293"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00122M10:32:58"],"insight:Observation_Information/insight:start_sol_number":["00122"],"insight:Observation_Information/insight:start_solar_longitude":["4.206"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00203M12:11:14"],"insight:Observation_Information/insight:stop_sol_number":["00203"],"insight:Observation_Information/insight:stop_solar_longitude":["43.102"],"ops:Data_File_Info/ops:creation_date_time":["2019-08-31T00:45:58Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00122_20190401_123217.tab"],"ops:Data_File_Info/ops:file_size":["14600410"],"ops:Data_File_Info/ops:md5_checksum":["093614b22e700224bbd1c23c3f947b22"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.186407Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["eJzlXN+T2jgSfr5U7f+gmqe7qgVbNr/LYYud2dxQm0mmgKu9uheXxxbgWmNRkhgy//21ZAPGGIPxBBLIQwJWq9XS191qfUG2fvs2C9ArYdyn4cc7XNXvEAld6vnh5OPdQowrrbvfur98sKRcZUY9EqBfPvxjysj4491UiDnvaNrc49XQ4U51Ql/ll5r8S3vF2vPDsGbDXzbuYb3K3emd7Az/kpkj3uYk5JESqWPBgip1A7dK2UTzuBdosRyj4SkmzHwu56T5IfcnU7E2p/9l2P/340iZZOOWWd6uZ0a9hSvsry+csFdHwKhO8MsHBH/A4qSuPet0lxDuxPbmdNqd2ZaCb9xfd14ul9WlqUw3dB1r/336PFTWV6CzcEKXrLpyvxPN6zN11RQOWi27oah3QUf4xr2o36b3kRM9ON7xqIMRd91IndX3SCj8sR/N3O4x4sRNqjmgE2gKbD8WI6y7YGFHjtyBUVeQ2czxOp4jHPiw7EznpnwgP9uw9IZhGzpu6zUd29gwDdy0tAy9iVHjoITWLoSlpSW+J6SELwLS7YdDaQF6fDbRwPF8OiOCMPTHtzlh/gy0w9Mlih31GNMitYlx/HBM2SxaHxWDdmwPGAeQKgv3yyQUzeNocQOH825m7FjatlCi9xNkpjVOjz4XlL0l2ndlHohw/CAlosRmSTGAjXTlKlT0dsUwLW23NUPFURCtpT3CXebPpcbugATE4QQZlpZ8nJqJlj+VVPv2cljafq+2Esu94+0jcBj7nlIGewDMm6eNgrzBhFoSW4BovGq1io5Hut4xjQ5uVttG+3+WlpbcUUTnO3oasPojvdkx2526Xm22TKVnSzC5ADnGWv3wlXDhTzKnqSRCZ7aOHUtT31IScjfoPkVJBaJCfktJ9EOINHBae0DGhMHemekpgQ/hthbYyh4uBQ3fBGSRhLmdOJFV49wCyWJLQ8YQ60ZbmakSkaD2llpLS0mlHS53NrI5Z0ljr4LKwR6+cUFmae3pdgBuNqcheGnWfA6CswFoOHdc4jJnLDIxOh6n47Higi1kYrWnlIsOXxtwPGBZoPncTqk+gNgRqEUiR6/9KShttpwDQPXXkzs7UB22NvIdMTorPLtiW3nbYRMi7O2sn5nxnhzGc9Ldc+CEJBug98t2QlnbmauxqjNl0akpLtJVNrcdWj8r3gYyd5LYozrJjbW/KYeyJrPqwqJSwA4XsxeoAHVdNyxtT2OOmnjDsOdTJS/BHf5n8Kl3/wd66g+H/a9fNlozZHM0r4oxtaiD3kMF6saNrq3WHC2bFAlVHXX/tqPqwKUL8PGG3jTreqMNu3+91q5ttOf2KjYa1BDxYLhWrzXrZrPS0I22mTvYulORsVQPew6G+gp8nDNEWjZvHDV1ToONq0DtntCdbs/VBTPbUmXoyZVINR+0CuYCgTUjTii7OSyq1IY0qCgjn7CqDOuttLXZ/Q4ZnjcazOMJQxGKO7iWmtAJg8UrCrIBDSe+WHgELUIfjucemdx1a1VDb2QgkJQ/Boa9+k04XBm7uBytn47F0mFxjMPpH/WYO/Vf0YjSIKF2S+wYfdsnn6qRoWvvYWgjezhbwhFnN+uu9sHdc806s9uf4TC0fRg4tAfnbFqrA75HXbXr887qkz1bnQ3yNq99G9dKS87WdWjb+l7zms5NSWesqALuH9ifv88ULS0TUeuTHxAF/DZxkFQqRdI2jmU35eMHKZCqcF4sbdMhpcmFsdfUQPL82qqY+gi3O7U6ZLuqrtfh/JohnJx9ylIo5F5g1PupwxxX7CTfuOLuPaBB76/sKo6Ox5yIOI+8vAly19UtLXq6C5sLh2ferdUw1iVI0deUVJKj+BoSxOgS0TESU58jIc1Fsq5zwJ8QrGiSgpJ+UM0lOaIhbY8E/syX8713GPOdCakMiAB3RZ/9kFQ+EeKtzEvIpnQNovZ9axc7AQlghmZdwqs+ZghNGF3MuVy2+FNmNaoGC0g4EdOt1TZNvLY1as7q/0mOnmvrBu/NCRepugFJL9p72NrMc7WB43iy+zf0RJ8gpoC35rTWsGrdpyOKfBniveF9vw8xLRm9zdP8oXcXU9KRycZ9CmSfLieupalP+6xLOOLOoqpiDDkCLae+O0VQKfAFI4o/pa67YIx4vyJG5oxweEY85HDkwAMnQNG6VtEXKgjEBejIK12RE3pZAqtyE/khKCEo3vyQTHXrgAucFxIg2GK3TAmp2DEHvSzih8sphSCNn45pENAl9Hl5Q9A2lv6n8ufat9y/f4UukHiVFSsBBIP7kVdwaQ3WGvW62ZAfHdUpN9DV8muHnb5YXMgy5ugoMMpHQfvUMJB73EQSJKdHQr1AIDx8KRAHNNi4BoucTG4ggGsiBPjZwR2BB87oHLZH3LNH9wWANksDbdQvCHTrOwG9od9klpD/x6sAd6dOGEJKwb0LQmwUhLhWGmKzdnsQG5eEGP9eDOJ6aYhr5u1BjH+/ZBQXhLhRGuK6cXsQG5eEGN8Xg7hZGuLGyWePnxdifH/JKC4Icas0xE399iA2LgkxVNTPowIQt8tDfMmj041W1IUgxnppjFut28P40iV1MYzLE4Ht5u1hfOmauhjG70Bz6Y3bA/nSVXUxkMtTXBjfIsd14bq6GMjlSS5s3CLLdX6Qew/32B4wMi4Cb3mCC5vXyHDBYiKM1j8YQFjX0dfpDJ5w9Rv3FeiXQNkojHJ5jgvXrpHkkigbPyLKzyN07wRoFP+s9Hiky1NduH6NXNcgztF0jFwn8F9YNPHod7sIlltCL8hsTqBlwQjiJOSUXQL4oRoZPYLFRZAvz4DhxjVSYD8L8l+jn0ydzo/h8gQZblwjQxav7A/Cju3gXJQkM8qTZLh5jSxZDs4XYMh247kgiWK8wy/mWtfIlOXF8/kJlN14Lorze/wm7BrJsrx4/gFwLsqXGe/wkzD9GvmyvHg+P42yG89FcS5PmRn4GimzvHi+GM6nsGZGedbMMG6SNaNbLnBBzAtzaEZ5Ds0wb5JD+zEwP5VRM8ozakbtGhm1VDb/SeiVk/k1ozy/ZtSvkV/7yfzg8U+kLl2hxK2rIm5QnmQz6ieTbGe9yFbECeRLkBT0AeWECwSr/Epcmf0XnHhI0Kjao8FiFnJk6vKJWUf/VBfJguga2+Of/zq7NySuiVLlmRIs+eKwIjd9yvNxRvMaeRpwAukS8tJiKII3JK/wvRLE9q05Ov/dPRLdKgQzeaFrfGZ5bs5oXSNnI9Nr/PqF6C4roDyhr4SFcnOQVzn50hfuNN4qYgeQTYmtwQdEmAc9IUu46zerIeg4ReoNGvHd43P/imZAxo/+ZAoVRACOU8RdylN8RvsaqR9wl0+BMwHEPfW6I+UjjlCOMoWlljlirL6JJUWe8ybURpPlNRypO6MSGXlP/+yZRFYzUyiC0Av13hB8kq7//NdTETcpzxCa+jUyR+mdxKWzmRN6UDe8OsGCrHyEb0CI1z/uAtl9wdzzZww4cVbjI+eJHvEOd0zxNTJNR3pE8ijyY7hEouIUslIuWmyWpx5N4yegoVJYj+UmoXYG+boXtojeCsEy1lIKyJchlYNVvvVn73tc5Iv6st6PE71HJ/ulQJaW+Z7h7v8Bgf8cwQ=="],"ops:Label_File_Info/ops:creation_date_time":["2019-09-08T17:15:08Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00122_20190401_123217.xml"],"ops:Label_File_Info/ops:file_size":["23806"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["1c24985e9af273928166860a6e0d96fe"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-08-30T19:45:58.005Z"],"pds:File/pds:file_name":["hp3_rad_raw_00122_20190401_123217.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00122_20190401_123217"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00122_20190401_123217"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 2"],"pds:Modification_Detail/pds:modification_date":["2019-09-23T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["44110"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-04-01T00:32:17.929Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-06-23T07:39:50.783Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705::1.0.json deleted file mode 100644 index 3d54197fe..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00213_20190703_051705","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705"],"description":["Release 3","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0003"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["615446170-64553"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["619698830-38207"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00213M15:07:45"],"insight:Observation_Information/insight:start_sol_number":["00213"],"insight:Observation_Information/insight:start_solar_longitude":["47.735"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00261M12:49:07"],"insight:Observation_Information/insight:stop_sol_number":["00261"],"insight:Observation_Information/insight:stop_solar_longitude":["69.345"],"ops:Data_File_Info/ops:creation_date_time":["2019-12-11T19:50:28Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00213_20190703_051705.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00213_20190703_051705.tab"],"ops:Data_File_Info/ops:file_size":["6476346"],"ops:Data_File_Info/ops:md5_checksum":["eb531595846a1f2587f2dc7eea87def5"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.237011Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2019-12-13T17:55:34Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00213_20190703_051705.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00213_20190703_051705.xml"],"ops:Label_File_Info/ops:file_size":["23807"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["3cd0d2ea40fc29e3945c12b511856a1f"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2019-12-11T13:50:27.485Z"],"pds:File/pds:file_name":["hp3_rad_raw_00213_20190703_051705.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00213_20190703_051705"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00213_20190703_051705"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 3"],"pds:Modification_Detail/pds:modification_date":["2019-12-13T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["19566"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-07-03T17:17:05.218Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-08-21T22:34:50.855Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040::1.0.json deleted file mode 100644 index a336eda85..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00305_20191006_053040","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040"],"description":["Release 4","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0004"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["623611776-38863"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["631105491-14156"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00305M14:40:03"],"insight:Observation_Information/insight:start_sol_number":["00305"],"insight:Observation_Information/insight:start_solar_longitude":["89.169"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00390M00:33:49"],"insight:Observation_Information/insight:stop_sol_number":["00390"],"insight:Observation_Information/insight:stop_solar_longitude":["128.783"],"ops:Data_File_Info/ops:creation_date_time":["2020-03-06T22:42:50Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00305_20191006_053040.tab"],"ops:Data_File_Info/ops:file_size":["10410612"],"ops:Data_File_Info/ops:md5_checksum":["763345cfa8d182f0d04274386fc76065"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.263814Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-03-09T20:13:06Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00305_20191006_053040.xml"],"ops:Label_File_Info/ops:file_size":["23808"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["c526445c5a80bd71bc4115a738d8c844"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2020-03-06T17:42:49.339Z"],"pds:File/pds:file_name":["hp3_rad_raw_00305_20191006_053040.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00305_20191006_053040"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00305_20191006_053040"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 4"],"pds:Modification_Detail/pds:modification_date":["2020-03-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["31452"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2019-10-06T05:30:40.490Z"],"pds:Time_Coordinates/pds:stop_date_time":["2019-12-31T23:06:06.368Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222::1.0.json deleted file mode 100644 index c8ee515d3..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00390_20200101_120222","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222"],"description":["Release 5","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0005"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["631108867-10879"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["638968702-01376"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00390M01:29:58"],"insight:Observation_Information/insight:start_sol_number":["00390"],"insight:Observation_Information/insight:start_solar_longitude":["128.802"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00478M14:22:30"],"insight:Observation_Information/insight:stop_sol_number":["00478"],"insight:Observation_Information/insight:stop_solar_longitude":["175.696"],"ops:Data_File_Info/ops:creation_date_time":["2020-06-01T11:36:37Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00390_20200101_120222.tab"],"ops:Data_File_Info/ops:file_size":["21216107"],"ops:Data_File_Info/ops:md5_checksum":["c1f92f8eb97f437599545263ecf113dd"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.303527Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-06-02T17:58:34Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00390_20200101_120222.xml"],"ops:Label_File_Info/ops:file_size":["23809"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["5317a6bbadca248da550780f37d531df"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2020-04-24T15:56:02.994Z"],"pds:File/pds:file_name":["hp3_rad_raw_00390_20200101_120222.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00390_20200101_120222"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00390_20200101_120222"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 5"],"pds:Modification_Detail/pds:modification_date":["2020-06-02T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["64097"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-01-01T00:02:22.323Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-03-31T23:19:50.349Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608::1.0.json deleted file mode 100644 index 531e06a7d..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00478_20200401_121608","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608"],"description":["Release 6","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0006"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["638972080-04063"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["646833467-42074"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00478M15:17:18"],"insight:Observation_Information/insight:start_sol_number":["00478"],"insight:Observation_Information/insight:start_solar_longitude":["175.718"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00567M04:35:01"],"insight:Observation_Information/insight:stop_sol_number":["00567"],"insight:Observation_Information/insight:stop_solar_longitude":["229.943"],"ops:Data_File_Info/ops:creation_date_time":["2020-09-04T05:03:58Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00478_20200401_121608.tab"],"ops:Data_File_Info/ops:file_size":["12456523"],"ops:Data_File_Info/ops:md5_checksum":["6f236efcdfe28ef582da0f1e7237472c"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.372423Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-09-09T17:25:58Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00478_20200401_121608.xml"],"ops:Label_File_Info/ops:file_size":["23809"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["4cbe936e511b752c0d0d99c6f5ee6a27"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2020-09-04T00:03:58.459Z"],"pds:File/pds:file_name":["hp3_rad_raw_00478_20200401_121608.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00478_20200401_121608"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00478_20200401_121608"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 6"],"pds:Modification_Detail/pds:modification_date":["2020-09-09T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["37633"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-04-01T00:16:08.395Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-06-30T23:59:29.047Z"]}}]}} \ No newline at end of file diff --git a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545::1.0.json b/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545::1.0.json deleted file mode 100644 index 7139ee035..000000000 --- a/src/test/resources/riut/registry___lidvid___urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545::1.0.json +++ /dev/null @@ -1 +0,0 @@ -{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0},"hits":{"total":{"value":1,"relation":"eq"},"max_score":4.841559,"hits":[{"_index":"registry","_id":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545::1.0","_score":4.841559,"_source":{"lid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545","vid":"1.0","lidvid":"urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545::1.0","title":"InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00567_20200701_125545","product_class":"Product_Observational","_package_id":"e1f3ef4c-e331-4938-a3f4-3bbc17532c55","ref_lid_document":["urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis","urn:nasa:pds:insight_documents:document_mission"],"ref_lid_instrument":["urn:nasa:pds:context:instrument:radiometer.insight"],"ref_lid_instrument_host":["urn:nasa:pds:context:instrument_host:spacecraft.insight"],"ref_lid_investigation":["urn:nasa:pds:context:investigation:mission.insight"],"ref_lid_target":["urn:nasa:pds:context:target:planet.mars"],"alternate_ids":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545::1.0","urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545"],"description":["Release 7","One row of this table contains raw Radiometer data.","Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"insight:Observation_Information/insight:mission_phase_name":["SURFACE MISSION"],"insight:Observation_Information/insight:product_type":["RAD-raw"],"insight:Observation_Information/insight:release_number":["0007"],"insight:Observation_Information/insight:software_name":["XML Archiv Tool"],"insight:Observation_Information/insight:software_version_id":["1.0.2"],"insight:Observation_Information/insight:spacecraft_clock_count_partition":["1"],"insight:Observation_Information/insight:spacecraft_clock_start_count":["646836843-38797"],"insight:Observation_Information/insight:spacecraft_clock_stop_count":["655744367-38404"],"insight:Observation_Information/insight:start_local_mean_solar_time":["Sol-00567M05:29:47"],"insight:Observation_Information/insight:start_sol_number":["00567"],"insight:Observation_Information/insight:start_solar_longitude":["229.967"],"insight:Observation_Information/insight:stop_local_mean_solar_time":["Sol-00667M13:36:33"],"insight:Observation_Information/insight:stop_sol_number":["00667"],"insight:Observation_Information/insight:stop_solar_longitude":["294.618"],"ops:Data_File_Info/ops:creation_date_time":["2020-12-03T20:25:16Z"],"ops:Data_File_Info/ops:file_name":["hp3_rad_raw_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00567_20200701_125545.tab"],"ops:Data_File_Info/ops:file_size":["381643"],"ops:Data_File_Info/ops:md5_checksum":["3853d163b9f4c26b3dc139efa9749d6a"],"ops:Data_File_Info/ops:mime_type":["text/plain"],"ops:Harvest_Info/ops:harvest_date_time":["2022-12-14T21:48:46.417242Z"],"ops:Harvest_Info/ops:node_name":["PDS_ENG"],"ops:Label_File_Info/ops:blob":["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"],"ops:Label_File_Info/ops:creation_date_time":["2020-12-11T00:54:30Z"],"ops:Label_File_Info/ops:file_name":["hp3_rad_raw_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_ref":["http://localhost:81/archive/test-data/data_raw/hp3_rad_raw_00567_20200701_125545.xml"],"ops:Label_File_Info/ops:file_size":["23808"],"ops:Label_File_Info/ops:json_blob":["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"],"ops:Label_File_Info/ops:md5_checksum":["4d3dea7d2a70ba0924ac528025687821"],"ops:Tracking_Meta/ops:archive_status":"archived","pds:Field_Character/pds:data_type":["ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Real","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer","ASCII_Integer"],"pds:Field_Character/pds:description":["Spacecraft clock count at which measurement occurred, represented as a real number. Note that spacecraft_clock_start_count and spacecraft_clock_stop_count in the Mission Area of this label are represented not as a real number but as a whole number followed by a fractional clock tick, where the fraction is in units of 1/65536 of a tick.","Sol number for this set of measurements","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","Instrument reading for channel 1A","Instrument reading for channel 2A","Instrument reading for channel 1B","Instrument reading for channel 2B","Instrument reading for channel 1C","Instrument reading for channel 2C","ADC 1 reference 100 Ohm resistor reading","ADC 2 reference 100 Ohm resistor reading","Reading of calibration target PT 100 temperature sensor","Reading of calibration target PT 100 temperature sensor","Offset reading for channel 1A","Offset reading for channel 2A","Offset reading for channel 1B","Offset reading for channel 2B","Offset reading for channel 1C","Offset reading for channel 2C","ADC 1 reference 100 Ohm resistor offset reading","ADC 2 reference 100 Ohm resistor offset reading","Offset reading of calibration target PT 100 temperature sensor","Offset reading of calibration target PT 100 temperature sensor","Time of closest HK vector used to for columns 30 to 35 (labelled as HK)","HK of currently active radiometer operation mode","HK Software counter governing the switching of operating temperature in order to coordinate with local time","HK Flag indicating that the higher of the two daytime operating temperatures is selected","HK of currently commanded value of the sensorhead heater current source","HK of currently commanded value of the calibration heater current source","HK flag that is true the radiometer test mode is on"],"pds:Field_Character/pds:field_length":["17","5","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","8","17","8","8","8","8","8","8"],"pds:Field_Character/pds:field_location":["1","19","25","34","43","52","61","70","79","88","97","106","115","124","133","142","151","160","169","178","187","196","205","214","223","232","241","250","259","277","286","295","304","313","322"],"pds:Field_Character/pds:field_number":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35"],"pds:Field_Character/pds:name":["Spacecraft clock time","Sol","Thermopile1A_TC","Thermopile2A_TC","Thermopile1B_TC","Thermopile2B_TC","Thermopile1C_TC","Thermopile2C_TC","Thermopile1A_PT","Thermopile2A_PT","Thermopile1B_PT","Thermopile2B_PT","Thermopile1C_PT","Thermopile2C_PT","ADC1_Rref","ADC2_Rref","PT Cal Target","PT Sensor Head","Offset Thermopile1A_PT","Offset Thermopile2A_PT","Offset Thermopile1B_PT","Offset Thermopile2B_PT","Offset Thermopile1C_PT","Offset Thermopile2C_PT","Offset ADC1_Rref","Offset ADC2_Rref","Offset PT Cal Target","Offset PT Sensor Head","HK Space craft clock","Radiometer operation mode","Section of sol","TRefHigh Select","Sensorhead body heater PWM","Cal. Target heater PWM","Radiometer test mode"],"pds:Field_Character/pds:unit":["sec","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN","DN"],"pds:File/pds:creation_date_time":["2020-12-03T14:25:15.048Z"],"pds:File/pds:file_name":["hp3_rad_raw_00567_20200701_125545.tab"],"pds:Identification_Area/pds:information_model_version":["1.10.1.0"],"pds:Identification_Area/pds:logical_identifier":["urn:nasa:pds:insight_rad:data_raw:hp3_rad_raw_00567_20200701_125545"],"pds:Identification_Area/pds:product_class":["Product_Observational"],"pds:Identification_Area/pds:title":["InSight HP3 Radiometer Experiment Raw Product:hp3_rad_raw_00567_20200701_125545"],"pds:Identification_Area/pds:version_id":["1.0"],"pds:Internal_Reference/pds:lid_reference":["urn:nasa:pds:context:investigation:mission.insight","urn:nasa:pds:context:instrument_host:spacecraft.insight","urn:nasa:pds:context:instrument:radiometer.insight","urn:nasa:pds:context:target:planet.mars","urn:nasa:pds:insight_documents:document_mission","urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis"],"pds:Internal_Reference/pds:reference_type":["data_to_investigation","is_instrument_host","is_instrument","data_to_target","data_to_document","data_to_document"],"pds:Investigation_Area/pds:name":["InSight"],"pds:Investigation_Area/pds:type":["Mission"],"pds:Modification_Detail/pds:description":["Release 7"],"pds:Modification_Detail/pds:modification_date":["2020-12-03T00:00:00Z"],"pds:Modification_Detail/pds:version_id":["1.0"],"pds:Observing_System_Component/pds:name":["InSight","Radiometer"],"pds:Observing_System_Component/pds:type":["Spacecraft","Instrument"],"pds:Record_Character/pds:fields":["35"],"pds:Record_Character/pds:groups":["0"],"pds:Record_Character/pds:record_length":["331"],"pds:Table_Character/pds:description":["One row of this table contains raw Radiometer data."],"pds:Table_Character/pds:name":["RAD RAW"],"pds:Table_Character/pds:offset":["0"],"pds:Table_Character/pds:record_delimiter":["Carriage-Return Line-Feed"],"pds:Table_Character/pds:records":["1153"],"pds:Target_Identification/pds:name":["Mars"],"pds:Target_Identification/pds:type":["Planet"],"pds:Time_Coordinates/pds:start_date_time":["2020-07-01T00:55:45.002Z"],"pds:Time_Coordinates/pds:stop_date_time":["2020-10-12T03:14:38.501Z"]}}]}} \ No newline at end of file