From 5ebd698bb608dfdef6b071064c408175c7435ccb Mon Sep 17 00:00:00 2001 From: Jordan Padams Date: Tue, 30 Dec 2025 16:22:13 -0800 Subject: [PATCH 1/6] Add JSON extraction for citation author and editor metadata Replaces flattened individual fields for citation authors and editors with JSON-based extraction to preserve the complete nested structure of Person and Organization elements. This enables richer citation metadata in the Solr registry while maintaining all relationships between contributors, affiliations, and organizations. Changes: - Add getValuesAsJsonFromDoc() method in XMLExtractor for XML-to-JSON conversion - Update Pds4MetExtractor to detect "_json" suffix and use JSON extraction - Replace individual citation author/editor XPath expressions with JSON variants in global-policy.xml - Update bundle.xml field mappings to use new JSON field names - Add corresponding field definitions in Solr managed-schema.xml - Include test data for pvmp_dlbi bundle --- .../metadata/extractor/Pds4MetExtractor.java | 20 +- .../pds/harvest/search/util/XMLExtractor.java | 80 ++ .../conf/search/defaults/pds/pds4/bundle.xml | 65 +- .../main/resources/policy/global-policy.xml | 1254 +++-------------- .../collections/data/managed-schema.xml | 25 +- .../resources/data/pds4/pvmp_dlbi/README.md | 83 ++ .../resources/data/pds4/pvmp_dlbi/bundle.xml | 268 ++++ 7 files changed, 665 insertions(+), 1130 deletions(-) create mode 100644 src/test/resources/data/pds4/pvmp_dlbi/README.md create mode 100644 src/test/resources/data/pds4/pvmp_dlbi/bundle.xml diff --git a/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/crawler/metadata/extractor/Pds4MetExtractor.java b/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/crawler/metadata/extractor/Pds4MetExtractor.java index ab4708cb..0a3b1f86 100644 --- a/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/crawler/metadata/extractor/Pds4MetExtractor.java +++ b/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/crawler/metadata/extractor/Pds4MetExtractor.java @@ -190,12 +190,24 @@ protected List extractMetadata(List xPaths) name = node.getDisplayName(); } } - List values = extractor.getValuesFromDoc(xpath.getValue()); + + // Check if this should be extracted as JSON (slot name ends with "_json") + List values; + if (name != null && name.endsWith("_json")) { + // Extract as JSON + values = extractor.getValuesAsJsonFromDoc(xpath.getValue()); + } else { + // Extract as regular text values + values = extractor.getValuesFromDoc(xpath.getValue()); + } + if (values != null && (!values.isEmpty())) { Slot slot = new Slot(name, values); - String unit = node.getAttributeValue("", Constants.UNIT); - if (unit != null) { - slot.setSlotType(unit); + if (node != null) { + String unit = node.getAttributeValue("", Constants.UNIT); + if (unit != null) { + slot.setSlotType(unit); + } } slots.add(slot); } diff --git a/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java b/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java index 05e1d712..52607cbf 100644 --- a/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java +++ b/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java @@ -1,6 +1,7 @@ package gov.nasa.pds.harvest.search.util; import java.io.File; +import java.io.StringWriter; import java.util.ArrayList; import java.util.List; @@ -16,6 +17,8 @@ import net.sf.saxon.trans.XPathException; import net.sf.saxon.xpath.XPathEvaluator; +import org.json.JSONObject; +import org.json.XML; import org.xml.sax.InputSource; /** @@ -286,4 +289,81 @@ public List getAttributeValuesFromItem(String expression, Object item) } return vals; } + + /** + * Gets the values of the given expression as JSON strings. + * Each matching node is converted to a JSON object and returned as a string. + * + * @param expression An XPath expression. + * + * @return A list of JSON strings, one for each matching node. + * + * @throws XPathExpressionException If the given expression was malformed. + */ + public List getValuesAsJsonFromDoc(String expression) + throws XPathExpressionException { + return getValuesAsJsonFromItem(expression, xml); + } + + /** + * Gets the values of the given expression as JSON strings. + * Each matching node is converted to a JSON object and returned as a string. + * + * @param expression An XPath expression. + * @param item The starting point from which to evaluate the XPath expression. + * + * @return A list of JSON strings, one for each matching node. + * + * @throws XPathExpressionException If the given expression was malformed. + */ + public List getValuesAsJsonFromItem(String expression, Object item) + throws XPathExpressionException { + List jsonStrings = new ArrayList(); + List nList = (List) xpath.evaluate( + expression, item, XPathConstants.NODESET); + + if (nList != null) { + for (int i = 0, sz = nList.size(); i < sz; i++) { + TinyElementImpl node = nList.get(i); + try { + // Convert the node to an XML string + String xmlString = nodeToString(node); + + // Convert XML to JSON using org.json library + JSONObject jsonObject = XML.toJSONObject(xmlString); + + // Add the JSON string to the result list + jsonStrings.add(jsonObject.toString()); + } catch (Exception e) { + // If conversion fails, log and skip this node + System.err.println("Warning: Failed to convert XML node to JSON: " + e.getMessage()); + } + } + } + return jsonStrings; + } + + /** + * Converts a TinyElementImpl node to an XML string. + * + * @param node The node to convert. + * + * @return An XML string representation of the node. + * + * @throws Exception If conversion fails. + */ + private String nodeToString(TinyElementImpl node) throws Exception { + // Use Saxon's built-in serialization + net.sf.saxon.s9api.Processor processor = new net.sf.saxon.s9api.Processor(false); + net.sf.saxon.s9api.Serializer serializer = processor.newSerializer(); + + StringWriter writer = new StringWriter(); + serializer.setOutputWriter(writer); + serializer.setOutputProperty(net.sf.saxon.s9api.Serializer.Property.OMIT_XML_DECLARATION, "yes"); + serializer.setOutputProperty(net.sf.saxon.s9api.Serializer.Property.INDENT, "no"); + + serializer.serializeNode(new net.sf.saxon.s9api.XdmNode(node)); + + return writer.toString(); + } } diff --git a/harvest-legacy/src/main/resources/conf/search/defaults/pds/pds4/bundle.xml b/harvest-legacy/src/main/resources/conf/search/defaults/pds/pds4/bundle.xml index c1bb28bd..0be8d994 100644 --- a/harvest-legacy/src/main/resources/conf/search/defaults/pds/pds4/bundle.xml +++ b/harvest-legacy/src/main/resources/conf/search/defaults/pds/pds4/bundle.xml @@ -75,65 +75,18 @@ citation_editor_list - - citation_author_organization_name + + + citation_author_person_json - - citation_author_organization_rorid + + citation_author_organization_json - - citation_author_organization_contributor_type + + citation_editor_person_json - - citation_author_person_contributor_type - - - citation_author_person_display_full_name - - - citation_author_person_given_name - - - citation_author_person_family_name - - - citation_author_person_orcid - - - citation_author_person_affiliation_organization_name - - - citation_author_person_affiliation_organization_rorid - - - citation_editor_organization_name - - - citation_editor_organization_rorid - - - citation_editor_organization_contributor_type - - - citation_editor_person_contributor_type - - - citation_editor_person_display_full_name - - - citation_editor_person_given_name - - - citation_editor_person_family_name - - - citation_editor_person_orcid - - - citation_editor_person_affiliation_organization_name - - - citation_editor_person_affiliation_organization_rorid + + citation_editor_organization_json citation_publication_year diff --git a/harvest-legacy/src/main/resources/policy/global-policy.xml b/harvest-legacy/src/main/resources/policy/global-policy.xml index 88cfa5ef..d237fe8e 100644 --- a/harvest-legacy/src/main/resources/policy/global-policy.xml +++ b/harvest-legacy/src/main/resources/policy/global-policy.xml @@ -38,65 +38,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name - - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -269,65 +222,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -494,65 +400,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -689,65 +548,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -919,83 +731,36 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type + + //Identification_Area/Citation_Information/List_Editor/Organization - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name + + //Identification_Area/Citation_Information/publication_year - - //Identification_Area/Citation_Information/List_Author/Person/given_name + + //Identification_Area/Citation_Information/keyword - - //Identification_Area/Citation_Information/List_Author/Person/family_name + + //Identification_Area/Citation_Information/description - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid + + //Identification_Area/Citation_Information/doi + + + //Identification_Area/Modification_History/Modification_Detail/modification_date - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name - - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/publication_year - - - //Identification_Area/Citation_Information/keyword - - - //Identification_Area/Citation_Information/description - - - //Identification_Area/Citation_Information/doi - - - //Identification_Area/Modification_History/Modification_Detail/modification_date - - - //Identification_Area/Modification_History/Modification_Detail/version_id + + //Identification_Area/Modification_History/Modification_Detail/version_id //Identification_Area/Modification_History/Modification_Detail/description @@ -1128,65 +893,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -1275,65 +993,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -1423,65 +1094,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -1571,86 +1195,39 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name + + //Identification_Area/Citation_Information/List_Editor/Organization - - //Identification_Area/Citation_Information/List_Author/Person/given_name + + //Identification_Area/Citation_Information/publication_year - - //Identification_Area/Citation_Information/List_Author/Person/family_name + + //Identification_Area/Citation_Information/keyword - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid + + //Identification_Area/Citation_Information/description - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/doi + + + //Identification_Area/Modification_History/Modification_Detail/modification_date - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid + + //Identification_Area/Modification_History/Modification_Detail/version_id - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name - - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/publication_year - - - //Identification_Area/Citation_Information/keyword - - - //Identification_Area/Citation_Information/description - - - //Identification_Area/Citation_Information/doi - - - //Identification_Area/Modification_History/Modification_Detail/modification_date - - - //Identification_Area/Modification_History/Modification_Detail/version_id - - - //Identification_Area/Modification_History/Modification_Detail/description + + //Identification_Area/Modification_History/Modification_Detail/description @@ -1704,65 +1281,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name - - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -1839,65 +1369,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Author/Person/given_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name - - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -1973,65 +1456,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name - - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -2121,65 +1557,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name - - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -2249,85 +1638,38 @@ - - - - //Identification_Area/information_model_version - - - //Identification_Area/product_class - - - //Identification_Area/Alias_List/Alias/alternate_id - - - //Identification_Area/Alias_List/Alias/alternate_title - - - //Identification_Area/Citation_Information/author_list - - - //Identification_Area/Citation_Information/editor_list - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name + + + + //Identification_Area/information_model_version - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid + + //Identification_Area/product_class - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type + + //Identification_Area/Alias_List/Alias/alternate_id - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type + + //Identification_Area/Alias_List/Alias/alternate_title - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name + + //Identification_Area/Citation_Information/author_list - - //Identification_Area/Citation_Information/List_Editor/Person/given_name + + //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -2401,65 +1743,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -2534,65 +1829,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -2676,65 +1924,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year @@ -2810,65 +2011,18 @@ //Identification_Area/Citation_Information/editor_list - - //Identification_Area/Citation_Information/List_Author/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Author/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Author/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Author/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Author/Person/given_name - - - //Identification_Area/Citation_Information/List_Author/Person/family_name - - - //Identification_Area/Citation_Information/List_Author/Person/person_orcid - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_name - - - //Identification_Area/Citation_Information/List_Author/Person/Affiliation/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_name - - - //Identification_Area/Citation_Information/List_Editor/Organization/organization_rorid - - - //Identification_Area/Citation_Information/List_Editor/Organization/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/contributor_type - - - //Identification_Area/Citation_Information/List_Editor/Person/display_full_name - - - //Identification_Area/Citation_Information/List_Editor/Person/given_name - - - //Identification_Area/Citation_Information/List_Editor/Person/family_name + + + //Identification_Area/Citation_Information/List_Author/Person - - //Identification_Area/Citation_Information/List_Editor/Person/person_orcid + + //Identification_Area/Citation_Information/List_Author/Organization - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_name + + //Identification_Area/Citation_Information/List_Editor/Person - - //Identification_Area/Citation_Information/List_Editor/Person/Affiliation/organization_rorid + + //Identification_Area/Citation_Information/List_Editor/Organization //Identification_Area/Citation_Information/publication_year diff --git a/registry-mgr-legacy/src/main/resources/collections/data/managed-schema.xml b/registry-mgr-legacy/src/main/resources/collections/data/managed-schema.xml index 75a6c441..ee24f278 100644 --- a/registry-mgr-legacy/src/main/resources/collections/data/managed-schema.xml +++ b/registry-mgr-legacy/src/main/resources/collections/data/managed-schema.xml @@ -71,26 +71,11 @@ - - - - - - - - - - - - - - - - - - - - + + + + + diff --git a/src/test/resources/data/pds4/pvmp_dlbi/README.md b/src/test/resources/data/pds4/pvmp_dlbi/README.md new file mode 100644 index 00000000..92ad6103 --- /dev/null +++ b/src/test/resources/data/pds4/pvmp_dlbi/README.md @@ -0,0 +1,83 @@ +# Test Case: JSON Extraction for List_Author and List_Editor + +This test case verifies that the JSON extraction functionality correctly preserves the nested structure of author and editor information. + +## Test Data + +**File**: `bundle.xml` +**Product**: Pioneer Venus Multiprobe DLBI Bundle +**LID**: `urn:nasa:pds:pvmp_dlbi` + +### Author/Editor Structure + +The bundle.xml contains: +- **3 authors** in List_Author: + - Young-In Won: 2 affiliations + - Stephanie A. McLaughlin: 2 affiliations + - Charles C. Counselman III: 1 affiliation + +- **5 editors** in List_Editor: + - Young-In Won: 2 affiliations + - Stephanie A. McLaughlin: 2 affiliations + - Lynn D. V. Neakrase: 2 affiliations + - Nancy J. Chanover: 2 affiliations + - David R. Williams: 2 affiliations + +## Expected Output + +When processed by harvest-solr, the generated Solr document should contain: + +### citation_author_person_json (array of 3 JSON strings) + +```json +[ + "{\"Person\":{\"display_full_name\":\"Young-In Won\",\"given_name\":\"Young-In\",\"family_name\":\"Won\",\"person_orcid\":\"https://orcid.org/0009-0003-0452-774X\",\"sequence_number\":1,\"Affiliation\":[{\"organization_name\":\"ADNET Systems, Inc.\"},{\"organization_name\":\"NASA Space Science Data Coordinated Archive\"}]}}", + + "{\"Person\":{\"display_full_name\":\"Stephanie A. McLaughlin\",\"given_name\":\"Stephanie A.\",\"family_name\":\"McLaughlin\",\"sequence_number\":2,\"Affiliation\":[{\"organization_name\":\"Telophase Corporation\"},{\"organization_name\":\"NASA Space Science Data Coordinated Archive\"}]}}", + + "{\"Person\":{\"display_full_name\":\"Charles C. Counselman III\",\"given_name\":\"Charles C. III\",\"family_name\":\"Counselman\",\"person_orcid\":\"https://orcid.org/0000-0001-6034-2377\",\"sequence_number\":3,\"Affiliation\":{\"organization_name\":\"Massachusetts Institute of Technology\"}}}" +] +``` + +### citation_editor_person_json (array of 5 JSON strings) + +Similar structure for all 5 editors, each with their affiliations properly nested. + +## What This Tests + +1. **Nested structure preservation**: Each Person element with its child Affiliation elements is kept together +2. **Variable cardinality**: Authors with different numbers of affiliations (1 vs 2) are handled correctly +3. **JSON conversion**: XML elements are correctly converted to JSON using org.json library +4. **Array structure**: Multiple Person elements create an array of JSON objects + +## How to Test + +```bash +# Set up environment +export PDS4_SOLR_DOC_HOME=/path/to/output + +# Run harvest +bin/harvest-solr \ + -c conf/harvest/examples/harvest-policy-master.xml \ + -o /path/to/output \ + -t src/test/resources/data/pds4/pvmp_dlbi/ + +# Examine the generated Solr document +cat /path/to/output/solr-docs/*.xml +``` + +## Verification + +The generated Solr document XML should contain fields like: + +```xml +{"Person":{"display_full_name":"Young-In Won",... +{"Person":{"display_full_name":"Stephanie A. McLaughlin",... +{"Person":{"display_full_name":"Charles C. Counselman III",... +``` + +Each JSON string should be parseable and contain the complete author/editor information with nested affiliations intact. + +## Related Issue + +This test case addresses GitHub issue #237: harvest-solr XML flattening does not preserve relationships between nested elements. diff --git a/src/test/resources/data/pds4/pvmp_dlbi/bundle.xml b/src/test/resources/data/pds4/pvmp_dlbi/bundle.xml new file mode 100644 index 00000000..8ff80fdb --- /dev/null +++ b/src/test/resources/data/pds4/pvmp_dlbi/bundle.xml @@ -0,0 +1,268 @@ + + + + + urn:nasa:pds:pvmp_dlbi + 1.0 + Pioneer Venus Multiprobe DLBI Relative Crustal and Atmospheric Velocity Components Data Bundle + 1.23.0.0 + Product_Bundle + + 2025 + 10.17189/kzg5-ep44 + + This bundle contains data on relative crustal and atmospheric velocity + components from the Pioneer Venus Multiprobe Differential Long Base Line + Interferometer (DLBI) experiments conducted during the descent of four + entry probes through the atmosphere of Venus on 9 December 1978. The time + resolution is approximately 6.3 seconds for the large probe data and 18.9 + seconds for the three small probes. + + + + Young-In Won + Young-In + Won + https://orcid.org/0009-0003-0452-774X + 1 + + ADNET Systems, Inc. + + + NASA Space Science Data Coordinated Archive + + + + Stephanie A. McLaughlin + Stephanie A. + McLaughlin + 2 + + Telophase Corporation + + + NASA Space Science Data Coordinated Archive + + + + Charles C. Counselman III + Charles C. III + Counselman + https://orcid.org/0000-0001-6034-2377 + 3 + + Massachusetts Institute of Technology + + + + + + Young-In Won + Young-In + Won + https://orcid.org/0009-0003-0452-774X + 1 + + ADNET Systems, Inc. + + + NASA Space Science Data Coordinated Archive + + + + Stephanie A. McLaughlin + Stephanie A. + McLaughlin + 2 + + Telophase Corporation + + + NASA Space Science Data Coordinated Archive + + + + Lynn D. V. Neakrase + Lynn D. V. + Neakrase + https://orcid.org/0000-0002-6370-5791 + 3 + + New Mexico State University + + + NASA Planetary Data System + + + + Nancy J. Chanover + Nancy J. + Chanover + https://orcid.org/0000-0002-9984-4670 + 4 + + New Mexico State University + + + NASA Planetary Data System + + + + David R. Williams + David R. + Williams + https://orcid.org/0000-0003-2187-2716 + 5 + + Goddard Space Flight Center + + + NASA Space Science Data Coordinated Archive + + + + + + + 2025-03-27 + 1.0 + Initial version + + + + + + 1978-12-09Z + 1978-12-09Z + + + Science + Derived + + Atmospheres + Structure + + + Radio Science + + + + PIONEER VENUS + Mission + + urn:nasa:pds:context:investigation:mission.pioneer_venus + bundle_to_investigation + + + + Pioneer Venus Large Probe + + PIONEER VENUS LARGE PROBE + Host + + urn:nasa:pds:context:instrument_host:spacecraft.pvmp.lp + is_instrument_host + + + + PIONEER VENUS LARGE PROBE DIFFERENTIAL LONG BASE LINE INTERFEROMETER + Instrument + + urn:nasa:pds:context:instrument:pvmp.lp.dlbi + is_instrument + + + + + Pioneer Venus Small Probe (Day) + + PIONEER VENUS SMALL PROBE (DAY) + Host + + urn:nasa:pds:context:instrument_host:spacecraft.pvmp.sp-day + is_instrument_host + + + + PIONEER VENUS SMALL PROBE (DAY) DIFFERENTIAL LONG BASE LINE INTERFEROMETER + Instrument + + urn:nasa:pds:context:instrument:pvmp.sp-day.dlbi + is_instrument + + + + + Pioneer Venus Small Probe (Night) + + PIONEER VENUS SMALL PROBE (NIGHT) + Host + + urn:nasa:pds:context:instrument_host:spacecraft.pvmp.sp-night + is_instrument_host + + + + PIONEER VENUS SMALL PROBE (NIGHT) DIFFERENTIAL LONG BASE LINE INTERFEROMETER + Instrument + + urn:nasa:pds:context:instrument:pvmp.sp-night.dlbi + is_instrument + + + + + Pioneer Venus Small Probe (North) + + PIONEER VENUS SMALL PROBE (NORTH) + Host + + urn:nasa:pds:context:instrument_host:spacecraft.pvmp.sp-north + is_instrument_host + + + + PIONEER VENUS SMALL PROBE (NORTH) DIFFERENTIAL LONG BASE LINE INTERFEROMETER + Instrument + + urn:nasa:pds:context:instrument:pvmp.sp-north.dlbi + is_instrument + + + + + Venus + Planet + + urn:nasa:pds:context:target:planet.venus + bundle_to_target + + + + + Archive + + + urn:nasa:pds:pvmp_dlbi:data + Primary + bundle_has_data_collection + + + urn:nasa:pds:pvmp_dlbi:document + Primary + bundle_has_document_collection + + + urn:nasa:pds:pvmp_dlbi:context + Primary + bundle_has_context_collection + + + urn:nasa:pds:pvmp_dlbi:xml_schema + Primary + bundle_has_schema_collection + + From 110759a9fe5d6fa825dac15a5416583df323b2ca Mon Sep 17 00:00:00 2001 From: Jordan Padams Date: Tue, 6 Jan 2026 15:53:29 -0800 Subject: [PATCH 2/6] Update smoke tests and test data --- .../data/expected/pds4/solr_doc_expected.xml | 518 ++++++++++++++++-- test/smoke-tests.sh | 3 + 2 files changed, 485 insertions(+), 36 deletions(-) diff --git a/src/test/resources/data/expected/pds4/solr_doc_expected.xml b/src/test/resources/data/expected/pds4/solr_doc_expected.xml index d2ae2462..b01360a9 100644 --- a/src/test/resources/data/expected/pds4/solr_doc_expected.xml +++ b/src/test/resources/data/expected/pds4/solr_doc_expected.xml @@ -7,11 +7,13 @@ CHANDRAYAAN-1 urn:nasa:pds:ch1_m3 +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Bundle Product_Bundle C. Pieters, S. Lundee, J. Sunshine urn:nasa:pds:context:instrument:m3.ch1-orb 6731 +2021-01-30T00:00:00.000Z Chandrayaan-1 Orbiter Moon Mineralogy Mapper Collected Data Sets bundle_ch1_m3.xml 2009-08-16T05:25:55.000Z @@ -71,6 +73,7 @@ into more compliant and/or usable formats. 2021 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/bundle_ch1_m3.xml Chandrayaan-1 Orbiter Moon Mineralogy Mapper Collected Data Sets /ds-view/pds/viewBundle.jsp?identifier=urn%3Anasa%3Apds%3Ach1_m3&version=1.0 Bundle @@ -2366,11 +2369,13 @@ STR Star TRacker SWT Science Working Team TGM Transition to global mapping +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 INTERNATIONAL ROSETTA MISSION /ds-view/pds/viewMissionProfile.jsp?MISSION_NAME=INTERNATIONAL+ROSETTA+MISSION Product_Mission_PDS3 Product_Mission_PDS3 Investigation +2016-10-01T00:00:00.000Z Auster U. et al., ROMAP: Rosetta Magnetometer and Plasma Monitor Space Sci. Rev., 128(1-4), 221-240, Feb. 2007. @@ -4871,6 +4876,7 @@ TGM Transition to global mapping Apollo 17 Apollo 17 ALSEP urn:nasa:pds:a17leamcal:data +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Data Product_Collection Product_Collection @@ -4878,6 +4884,7 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:leam.a17a 11400 241 +2015-05-22T00:00:00.000Z Apollo 17 Preliminary Science Report, NASA SP-330, published by NASA, Washington, D.C., 1973. Apollo Scientific Experiments Data Handbook, NASA Technical Memorandum @@ -4937,6 +4944,8 @@ TGM Transition to global mapping 4 Fake test collection 2017 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/a17leamcal_custom/collection_data.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/a17leamcal_custom/collection_data_inventory.csv Apollo 17 Lunar Ejecta And Meteorites Experiment Data Notebook Fake Test Collection /ds-view/pds/viewCollection.jsp?identifier=urn%3Anasa%3Apds%3Aa17leamcal%3Adata&version=1.0 Collection @@ -4965,6 +4974,7 @@ TGM Transition to global mapping Resource +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 1579 Initial revision. @@ -4979,12 +4989,14 @@ TGM Transition to global mapping urn:nasa:pds:context:resource:resource.a17leamcal_online Product_Context Product_Context +2020-09-09T00:00:00.000Z resource_a17leamcal.xml https://pds-geosciences.wustl.edu/missions/apollo/index.htm Information.Science_Portal Initial version of Apollo 17 Lunar Ejecta And Meteorites Experiment Calibration Notebook +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/a17leamcal_custom/resource_a17leamcal.xml Apollo 17 Lunar Ejecta And Meteorites Experiment Calibration Notebook Archive Online https://pds-geosciences.wustl.edu/missions/apollo/index.htm Resource @@ -4998,12 +5010,14 @@ TGM Transition to global mapping Apollo 17 Apollo 17 ALSEP urn:nasa:pds:a17leamcal +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Bundle Product_Bundle Berg, O.E.; Williams, D.R.; Gaddy, M. urn:nasa:pds:context:instrument:leam.a17a 5346 600 +2015-05-22T00:00:00.000Z bundle.xml readme.txt 1977-09-30T00:00:00.000Z @@ -5029,6 +5043,8 @@ TGM Transition to global mapping Experiment detector, which was identical to Pioneer 8 and 9 Cosmic Dust Detectors (CDD). 2017 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/a17leamcal_custom/bundle.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/a17leamcal_custom/readme.txt Apollo 17 Lunar Ejecta And Meteorites Experiment Calibration Notebook Bundle /ds-view/pds/viewBundle.jsp?identifier=urn%3Anasa%3Apds%3Aa17leamcal&version=1.0 Bundle @@ -5052,6 +5068,7 @@ TGM Transition to global mapping Resource +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 1592 Initial revision. @@ -5066,12 +5083,14 @@ TGM Transition to global mapping urn:nasa:pds:context:resource:resource.a17leamcal_2_online Product_Context Product_Context +2020-09-09T00:00:00.000Z resource_a17leamcal_2.xml https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leamcal/ Information.Science_Portal Initial version of Apollo 17 Lunar Ejecta And Meteorites Experiment Calibration Notebook 2 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/a17leamcal_custom/resource_a17leamcal_2.xml Apollo 17 Lunar Ejecta And Meteorites Experiment Calibration Notebook 2 Archive Online https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leamcal/ Resource @@ -5085,6 +5104,7 @@ TGM Transition to global mapping Apollo 17 Apollo 17 ALSEP urn:nasa:pds:a17leamcal:calibration +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Calibration Product_Collection Product_Collection @@ -5092,6 +5112,7 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:leam.a17a 11875 269 +2015-05-22T00:00:00.000Z Apollo 17 Preliminary Science Report, NASA SP-330, published by NASA, Washington, D.C., 1973. Apollo Scientific Experiments Data Handbook, NASA Technical Memorandum @@ -5161,6 +5182,8 @@ TGM Transition to global mapping calibrate the Apollo 17 LEAM data. Dr. Berg was the principal investigator for all three instruments. 2017 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/a17leamcal_custom/collection_calibration.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/a17leamcal_custom/collection_calibration_inventory.csv Apollo 17 Lunar Ejecta And Meteorites Experiment Calibration Notebook Collection /ds-view/pds/viewCollection.jsp?identifier=urn%3Anasa%3Apds%3Aa17leamcal%3Acalibration&version=1.0 Collection @@ -5189,6 +5212,7 @@ TGM Transition to global mapping Resource +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 1701 Initial revision. @@ -5203,12 +5227,14 @@ TGM Transition to global mapping urn:nasa:pds:context:resource:resource.productexternal_french23_occult_pred1_online Product_Context Product_Context +2023-02-23T00:00:00.000Z resource_rms-annex_colxn_document_colxn_french23_occult_pred1.xml https://pds-rings.seti.org/rms-annex/french23_occult_pred/SOM/ Information.Science_Portal Initial version of Occultation Predictions from R. G. French et al (2023) +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/external/french23_occult_pred-20231019/resource_rms-annex_colxn_document_colxn_french23_occult_pred1.xml Initial version of Occultation Predictions from R. G. French et al (2023) Archive Online https://pds-rings.seti.org/rms-annex/french23_occult_pred/SOM/ Resource @@ -5217,6 +5243,7 @@ TGM Transition to global mapping Resource +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 1693 Initial revision. @@ -5231,12 +5258,14 @@ TGM Transition to global mapping urn:nasa:pds:context:resource:resource.productexternal_french23_occult_pred2_online Product_Context Product_Context +2023-02-23T00:00:00.000Z resource_rms-annex_colxn_document_colxn_french23_occult_pred2.xml https://doi.org/10.3847/PSJ/aced50 Information.Science_Portal Initial version of Occultation Predictions from R. G. French et al (2023) +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/external/french23_occult_pred-20231019/resource_rms-annex_colxn_document_colxn_french23_occult_pred2.xml Initial version of Occultation Predictions from R. G. French et al (2023) Archive Online https://doi.org/10.3847/PSJ/aced50 Resource @@ -5245,6 +5274,7 @@ TGM Transition to global mapping urn:nasa:rms-annex:french23_occult_pred +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 jupiter saturn uranus @@ -5256,6 +5286,7 @@ TGM Transition to global mapping French, R.G.; Souami, D. 4045 3084997 +2023-06-29T00:00:00.000Z R.G. French, D. Souami, Earth-based Stellar Occultation Predictions for Jupiter, Saturn, Uranus, Neptune, Titan, and Triton: 2023-2050 2023, PSJ, 4 occultation_prediction_som_manifest.xml @@ -5268,12 +5299,16 @@ TGM Transition to global mapping for Jupiter, Saturn, Uranus, Neptune, Titan, and Triton: 2023–2050, R. G. French and D. Souami (2023). +/Users/jpadams/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/external/french23_occult_pred-20231019 +/Users/jpadams/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/external/french23_occult_pred-20231019 Supplementary Online Material (SOM) for Earth-based Stellar Occultation Predictions for Jupiter, Saturn, Uranus, Neptune, Titan, and Triton: 2023–2050, R. G. French and D. Souami (2023). 2023 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/external/french23_occult_pred-20231019/occultation_prediction_som_manifest.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/external/french23_occult_pred-20231019/occultation_prediction_som_manifest.txt Occultation Predictions from R. G. French and D. Souami (2023) /ds-view/pds/viewProductExternal.jsp?identifier=urn%3Anasa%3Arms-annex%3Afrench23_occult_pred&version=1.0 External @@ -5289,7 +5324,102 @@ TGM Transition to global mapping in this collection. +PIONEER VENUS +urn:nasa:pds:pvmp_dlbi +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 +Product_Bundle +{"Person":{"sequence_number":1,"display_full_name":"Young-In Won","xmlns":"http://pds.nasa.gov/pds4/pds/v1","person_orcid":"https://orcid.org/0009-0003-0452-774X","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Young-In","family_name":"Won","Affiliation":[{"organization_name":"ADNET Systems, Inc."},{"organization_name":"NASA Space Science Data Coordinated Archive"}]}} +{"Person":{"sequence_number":2,"display_full_name":"Stephanie A. McLaughlin","xmlns":"http://pds.nasa.gov/pds4/pds/v1","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Stephanie A.","family_name":"McLaughlin","Affiliation":[{"organization_name":"Telophase Corporation"},{"organization_name":"NASA Space Science Data Coordinated Archive"}]}} +{"Person":{"sequence_number":3,"display_full_name":"Lynn D. V. Neakrase","xmlns":"http://pds.nasa.gov/pds4/pds/v1","person_orcid":"https://orcid.org/0000-0002-6370-5791","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Lynn D. V.","family_name":"Neakrase","Affiliation":[{"organization_name":"New Mexico State University"},{"organization_name":"NASA Planetary Data System"}]}} +{"Person":{"sequence_number":4,"display_full_name":"Nancy J. Chanover","xmlns":"http://pds.nasa.gov/pds4/pds/v1","person_orcid":"https://orcid.org/0000-0002-9984-4670","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Nancy J.","family_name":"Chanover","Affiliation":[{"organization_name":"New Mexico State University"},{"organization_name":"NASA Planetary Data System"}]}} +{"Person":{"sequence_number":5,"display_full_name":"David R. Williams","xmlns":"http://pds.nasa.gov/pds4/pds/v1","person_orcid":"https://orcid.org/0000-0003-2187-2716","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"David R.","family_name":"Williams","Affiliation":[{"organization_name":"Goddard Space Flight Center"},{"organization_name":"NASA Space Science Data Coordinated Archive"}]}} +Product_Bundle +urn:nasa:pds:context:instrument:pvmp.lp.dlbi +urn:nasa:pds:context:instrument:pvmp.sp-day.dlbi +urn:nasa:pds:context:instrument:pvmp.sp-night.dlbi +urn:nasa:pds:context:instrument:pvmp.sp-north.dlbi +14042 +2025-03-27T00:00:00.000Z +bundle.xml +1978-12-09T00:00:00.000Z +Pioneer Venus Large Probe +Pioneer Venus Small Probe (Day) +Pioneer Venus Small Probe (Night) +Pioneer Venus Small Probe (North) +Atmospheres +Radio Science +Initial version +urn:nasa:pds:context:instrument_host:spacecraft.pvmp.lp +urn:nasa:pds:context:instrument_host:spacecraft.pvmp.sp-day +urn:nasa:pds:context:instrument_host:spacecraft.pvmp.sp-night +urn:nasa:pds:context:instrument_host:spacecraft.pvmp.sp-north +{"Person":{"sequence_number":1,"display_full_name":"Young-In Won","xmlns":"http://pds.nasa.gov/pds4/pds/v1","person_orcid":"https://orcid.org/0009-0003-0452-774X","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Young-In","family_name":"Won","Affiliation":[{"organization_name":"ADNET Systems, Inc."},{"organization_name":"NASA Space Science Data Coordinated Archive"}]}} +{"Person":{"sequence_number":2,"display_full_name":"Stephanie A. McLaughlin","xmlns":"http://pds.nasa.gov/pds4/pds/v1","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Stephanie A.","family_name":"McLaughlin","Affiliation":[{"organization_name":"Telophase Corporation"},{"organization_name":"NASA Space Science Data Coordinated Archive"}]}} +{"Person":{"sequence_number":3,"display_full_name":"Charles C. Counselman III","xmlns":"http://pds.nasa.gov/pds4/pds/v1","person_orcid":"https://orcid.org/0000-0001-6034-2377","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Charles C. III","family_name":"Counselman","Affiliation":{"organization_name":"Massachusetts Institute of Technology"}}} +Host +Instrument +Host +Instrument +Host +Instrument +Host +Instrument +pds4 +Derived +Archive +PIONEER VENUS LARGE PROBE DIFFERENTIAL LONG BASE LINE INTERFEROMETER +PIONEER VENUS SMALL PROBE (DAY) DIFFERENTIAL LONG BASE LINE INTERFEROMETER +PIONEER VENUS SMALL PROBE (NIGHT) DIFFERENTIAL LONG BASE LINE INTERFEROMETER +PIONEER VENUS SMALL PROBE (NORTH) DIFFERENTIAL LONG BASE LINE INTERFEROMETER +10.17189/kzg5-ep44 + + This bundle contains data on relative crustal and atmospheric velocity + components from the Pioneer Venus Multiprobe Differential Long Base Line + Interferometer (DLBI) experiments conducted during the descent of four + entry probes through the atmosphere of Venus on 9 December 1978. The time + resolution is approximately 6.3 seconds for the large probe data and 18.9 + seconds for the three small probes. + +1978-12-09T00:00:00.000Z +Venus +Data + + This bundle contains data on relative crustal and atmospheric velocity + components from the Pioneer Venus Multiprobe Differential Long Base Line + Interferometer (DLBI) experiments conducted during the descent of four + entry probes through the atmosphere of Venus on 9 December 1978. The time + resolution is approximately 6.3 seconds for the large probe data and 18.9 + seconds for the three small probes. + +2025 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/pvmp_dlbi/bundle.xml +Pioneer Venus Multiprobe DLBI Relative Crustal and Atmospheric Velocity Components Data Bundle +/ds-view/pds/viewBundle.jsp?identifier=urn%3Anasa%3Apds%3Apvmp_dlbi&version=1.0 +Bundle +Science +nasa +urn:nasa:pds:context:target:planet.venus +Planet +1.0 +urn:nasa:pds:context:investigation:mission.pioneer_venus +pds4:urn:nasa:pds:pvmp_dlbi +Mission +urn:nasa:pds:pvmp_dlbi:data +urn:nasa:pds:pvmp_dlbi:document +urn:nasa:pds:pvmp_dlbi:context +urn:nasa:pds:pvmp_dlbi:xml_schema +PIONEER VENUS LARGE PROBE +PIONEER VENUS LARGE PROBE DIFFERENTIAL LONG BASE LINE INTERFEROMETER +PIONEER VENUS SMALL PROBE (DAY) +PIONEER VENUS SMALL PROBE (DAY) DIFFERENTIAL LONG BASE LINE INTERFEROMETER +PIONEER VENUS SMALL PROBE (NIGHT) +PIONEER VENUS SMALL PROBE (NIGHT) DIFFERENTIAL LONG BASE LINE INTERFEROMETER +PIONEER VENUS SMALL PROBE (NORTH) +PIONEER VENUS SMALL PROBE (NORTH) DIFFERENTIAL LONG BASE LINE INTERFEROMETER + + Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 6311 Updated schema version. Adding missing "investigation" references. Update instrument type/subtype to use valid CTLI LDD. @@ -5312,6 +5442,8 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2025-01-02T00:00:00.000Z +2021-02-24T00:00:00.000Z Hanel, R.A., D. Crosby, L.W. Herath, D. Vanous, D. Collins, H. Creswick, C. Harris, and M. Rhodes, Infrared @@ -5333,6 +5465,7 @@ TGM Transition to global mapping vg1.iris_1.1.xml Infrared Interferometer Spectrometer and Radiometer for VG1 The Infrared Interferometer Spectrometer and Radiometer (IRIS) instrument on board of Voyager 1 is used to investigate energy balances and atmospheric composition, such as vertical temperature profiles of the planets and satellites. It also investigates the composition, thermal properties, and size of particles in Saturn’s rings. IRIS consists of a Michelson interferometer for measurements in the thermal infrared and a single channel radiometer that operates in the visible and near infrared. The two components of the instrument share a 50 cm Cassegrain telescope with an effective focal length of 303.5 cm and an angular field of view of 0.25 degree. Entering light is divided into two beams by a dichroic mirror, with longer than ~2.5 micrometers going to the infrared interferometer, and radiation between 0.33 and 2 micrometers going to the radiometer. The effective spectral range of the interferometer is 180-2500 cm**-1 and the apodized spectral resolution is 4.3 cm**-1. The detector of the infrared interferometer is a low-impedance Schwartz-type four-junction thermopile with a thermal time constant of 12 millisecond and is operated at a temperature of 200 K. To minimize systematic errors from possible small changes in the instrument responsivity, the calibration must be updated as a function of time during the encounter. Sampled Visible Radiance is a series of 8 radiometer samples taken during a 48 second data frame with the high gain channel, while Integrated Visable Radiance is the broadband, reflected solar radiometer signal integrated over the 45.6 seconds in that IRIS data are taken within the 48 second data frame. The quantity given is power at the detector in Watts. Note that a systematic error on the order of 10% may exist in the calibration of one or both of the IRIS instruments' radiometer systems. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/github206/vg1.iris_1.1.xml Spectrometer Infrared Interferometer Spectrometer and Radiometer for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.iris&version=1.1 @@ -5346,6 +5479,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 3816 Updated schema version. Adding missing "investigation" references. @@ -5364,6 +5498,8 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:vg1.eng Product_Context Product_Context +2025-01-02T00:00:00.000Z +2021-04-12T00:00:00.000Z Kohlhase, C., The Voyager Neptune Travel Guide, JPL Publication 89-24, 276 pp., Jet Propulsion Laboratory, Pasadena, CA, 1989. @@ -5375,6 +5511,7 @@ TGM Transition to global mapping vg1.eng_1.1.xml Voyager 1 Spacecraft Sensors The Voyager 1 spacecraft is equipped with multiple sensors, including magnetometers, plasma detectors, charged particle instruments, and imaging systems, to study planetary environments and interstellar space. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/github206/vg1.eng_1.1.xml Spacecraft Sensor Voyager 1 Spacecraft Sensors /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.eng&version=1.1 @@ -5392,7 +5529,9 @@ TGM Transition to global mapping urn:nasa:pds:system_bundle:product_sip_deep_archive:insight_documents_v2.0_20200702 +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_SIP_Deep_Archive +2020-07-02T00:00:00.000Z https://pds.nasa.gov/data/pds4/manifests/insight_documents_v2.0_sip_v1.0_20200702.tab SIP was verisoned and created Submission Information Package for theMars InSight Lander Document Archive @@ -5405,7 +5544,9 @@ TGM Transition to global mapping urn:nasa:pds:system_bundle:product_sip_deep_archive:insight_documents_v2.0_20200702 +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_SIP_Deep_Archive +2020-07-02T00:00:00.000Z https://pds.nasa.gov/data/pds4/manifests/insight_documents_v2.0_sip_v1.0_20200702.tab SIP was verisoned and created Submission Information Package for theMars InSight Lander Document Archive @@ -5420,6 +5561,7 @@ TGM Transition to global mapping INSIGHT InSight urn:nasa:pds:insight_documents +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Bundle Product_Bundle @@ -5453,6 +5595,9 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:rise.insight 15192 1494 +2019-05-22T00:00:00.000Z +2019-05-31T00:00:00.000Z +2019-09-12T00:00:00.000Z Smrekar, S. E., Lognonne, P., Spohn, T. et al., Pre-mission InSights on the Interior of Mars, Space Sci. Rev. (2019) 215:3. @@ -5540,6 +5685,8 @@ TGM Transition to global mapping whole. 2018 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/bundle_insight_documents.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/readme.txt Mars InSight Lander Document Archive /ds-view/pds/viewBundle.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents&version=2.0 Bundle @@ -5584,6 +5731,7 @@ TGM Transition to global mapping Insight Insight urn:nasa:pds:insight_documents:document_mission:insight_pip_final-2015_redacted_5-10-19reda +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:apss-ifg.insight @@ -5598,6 +5746,8 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:seis.insight 8222 4825989 +2019-03-15T00:00:00.000Z +2020-01-02T00:00:00.000Z InSight_PIP_final-2015_Redacted_5-10-19reda.xml InSight_PIP_final-2015_Redacted_5-10-19reda.pdf Insight @@ -5639,6 +5789,8 @@ TGM Transition to global mapping on the title page, and converted to PDF/A format for archiving. 2015 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_mission/InSight_PIP_final-2015_Redacted_5-10-19reda.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_mission/InSight_PIP_final-2015_Redacted_5-10-19reda.pdf Interior Exploration Using Seismic Investigations, Geodesy, and Heat Transport (InSight) Summary /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_mission%3Ainsight_pip_final-2015_redacted_5-10-19reda&version=1.1 Document @@ -5666,6 +5818,7 @@ TGM Transition to global mapping Insight InSight urn:nasa:pds:insight_documents:document_mission +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Document Product_Collection Product_Collection @@ -5681,6 +5834,8 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:seis.insight 7577 100 +2018-10-12T00:00:00.000Z +2020-01-02T00:00:00.000Z collection_document_mission.xml collection_document_mission.csv Placeholder for the InSight Mission document collection. @@ -5714,6 +5869,8 @@ TGM Transition to global mapping 1 InSight Mission Document Collection. 2018 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_mission/collection_document_mission.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_mission/collection_document_mission.csv InSight Mission Document Collection /ds-view/pds/viewCollection.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_mission&version=1.1 Collection @@ -5739,11 +5896,16 @@ TGM Transition to global mapping urn:nasa:pds:insight_documents:document_rise:release_notes +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:rise.insight 3778 3234 +2020-02-05T00:00:00.000Z +2019-10-16T00:00:00.000Z +2019-07-23T00:00:00.000Z +2019-04-02T00:00:00.000Z release_notes.xml release_notes.txt @@ -5771,6 +5933,8 @@ TGM Transition to global mapping Resource InSight RISE Release Notes 2020 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/release_notes.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/release_notes.txt InSight RISE Release Notes /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_rise%3Arelease_notes&version=4.0 Document @@ -5783,12 +5947,17 @@ TGM Transition to global mapping InSight InSight urn:nasa:pds:insight_documents:document_rise +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Document Product_Collection Product_Collection urn:nasa:pds:context:instrument:rise.insight 5616 352 +2017-05-31T00:00:00.000Z +2019-09-23T00:00:00.000Z +2020-01-02T00:00:00.000Z +2020-04-01T00:00:00.000Z collection_document_inventory.xml collection_document_inventory.csv InSight @@ -5808,6 +5977,8 @@ TGM Transition to global mapping 6 InSight RISE Document Collection 2018 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/collection_document_inventory.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/collection_document_inventory.csv InSight RISE Document Collection /ds-view/pds/viewCollection.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_rise&version=4.0 Collection @@ -5826,6 +5997,7 @@ TGM Transition to global mapping InSight urn:nasa:pds:insight_documents:document_rise:trk-2-24-reva-l5_wea +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document 2466 @@ -5837,6 +6009,8 @@ TGM Transition to global mapping Resource TRK-2-24 DSN Tracking System Interfaces Weather Data Interface, Deep Space Network (DSN) External Interface Specification 820-013, JPL D-16765, Revision A, March 15, 2006, Jet Propulsion Laboratory, California Institute of Technology 2006 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/trk-2-24-reva-l5_wea.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/trk-2-24-reva-l5_wea.pdf TRK-2-24 DSN Tracking System Interfaces Weather Data Interface /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_rise%3Atrk-2-24-reva-l5_wea&version=1.0 Document @@ -5850,6 +6024,7 @@ TGM Transition to global mapping InSight urn:nasa:pds:insight_documents:document_rise:trk-2-34-revn-l5_tnf +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document 2413 @@ -5861,6 +6036,8 @@ TGM Transition to global mapping Resource TRK-2-34 DSN Tracking System Data Archival Format, Deep Space Network (DSN) No. 820-013, JPL D-76488, Revision N, November 7, 2013, Jet Propulsion Laboratory, California Institute of Technology 2013 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/trk-2-34-revn-l5_tnf.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/trk-2-34-revn-l5_tnf.pdf TRK-2-34 DSN Tracking System Data Archival Format /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_rise%3Atrk-2-34-revn-l5_tnf&version=1.0 Document @@ -5873,6 +6050,7 @@ TGM Transition to global mapping urn:nasa:pds:insight_documents:document_rise:rise_raw_sis +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document 3645 @@ -5883,6 +6061,7 @@ TGM Transition to global mapping 34391 30739 53762 +2017-06-27T00:00:00.000Z RISE_InSight_SIS_Raw.xml RISE_InSight_SIS_Raw.pdf RISE_InSight_SIS_Raw.htm @@ -5897,6 +6076,14 @@ TGM Transition to global mapping Resource InSight RISE Raw Data Product Software Interface Specification 2017 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/RISE_InSight_SIS_Raw.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/RISE_InSight_SIS_Raw.pdf +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/RISE_InSight_SIS_Raw.htm +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/RISE_InSight_SIS_Raw_files/image001.jpg +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/RISE_InSight_SIS_Raw_files/image002.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/RISE_InSight_SIS_Raw_files/image003.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/RISE_InSight_SIS_Raw_files/image004.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/RISE_InSight_SIS_Raw_files/image005.png InSight RISE Raw Data Product SIS /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_rise%3Arise_raw_sis&version=1.0 Document @@ -5913,6 +6100,7 @@ TGM Transition to global mapping urn:nasa:pds:insight_documents:document_rise:east_west_mga +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document 6233 @@ -5932,6 +6120,7 @@ TGM Transition to global mapping 174 175 26034 +2017-06-21T00:00:00.000Z InSight_EastWestMGA.xml InSight_EastWestMGA.pdf InSight_EastWestMGA.htm @@ -5957,6 +6146,23 @@ TGM Transition to global mapping Describes the geometry of the Medium Gain Antennas (MGA) on the InSight RISE instrument with directions for determining which antenna is being utilized at a given time. 2017 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA.pdf +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA.htm +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image001.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image002.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image003.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image004.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image005.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image006.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image007.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image008.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image009.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image010.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image011.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image012.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image013.png +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/InSight_EastWestMGA_files/image014.png InSight Antenna Utilization Geometry /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_rise%3Aeast_west_mga&version=1.0 Document @@ -5984,12 +6190,17 @@ TGM Transition to global mapping InSight InSight urn:nasa:pds:insight_documents:document_rise +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Document Product_Collection Product_Collection urn:nasa:pds:context:instrument:rise.insight 5621 426 +2017-05-31T00:00:00.000Z +2019-09-23T00:00:00.000Z +2020-01-02T00:00:00.000Z +2020-04-01T00:00:00.000Z collection_document_inventory_v5.0.xml collection_document_inventory_v5.0.csv InSight @@ -6009,6 +6220,8 @@ TGM Transition to global mapping 6 InSight RISE Document Collection 2018 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/collection_document_inventory_v5.0.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/collection_document_inventory_v5.0.csv InSight RISE Document Collection /ds-view/pds/viewCollection.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_rise&version=5.0 Collection @@ -6027,6 +6240,7 @@ TGM Transition to global mapping InSight urn:nasa:pds:insight_documents:document_rise:trk-2-23-revc-l5_ion_tro +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document 2421 @@ -6038,6 +6252,8 @@ TGM Transition to global mapping Resource TRK-2-23 Media Calibration Interface, Deep Space Network (DSN) External Interface Specification 820-013, JPL D-16765, Revision C, March 5, 2008, Jet Propulsion Laboratory, California Institute of Technology 2008 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/trk-2-23-revc-l5_ion_tro.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_rise/trk-2-23-revc-l5_ion_tro.pdf TRK-2-23 Media Calibration Interface /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_rise%3Atrk-2-23-revc-l5_ion_tro&version=1.0 Document @@ -6050,11 +6266,17 @@ TGM Transition to global mapping urn:nasa:pds:insight_documents:document_seis:seis_release_notes +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:seis.insight 4321 12775 +2019-05-16T00:00:00.000Z +2019-06-10T00:00:00.000Z +2019-09-18T00:00:00.000Z +2019-12-08T00:00:00.000Z +2020-04-01T00:00:00.000Z seis_release_notes.xml seis_release_notes.txt @@ -6087,6 +6309,8 @@ TGM Transition to global mapping Resource InSight SEIS Release Notes 2019 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/seis_release_notes.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/seis_release_notes.txt InSight SEIS Release Notes /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_seis%3Aseis_release_notes&version=5.0 Document @@ -6099,11 +6323,13 @@ TGM Transition to global mapping Insight Insight urn:nasa:pds:insight_documents:document_seis:fdsn-station-availability-1.0 +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:seis.insight 4003 5502 +2020-01-02T00:00:00.000Z fdsn-station-availability-1.0.xml fdsn-station-availability-1.0.xsd Insight @@ -6122,6 +6348,8 @@ TGM Transition to global mapping Extension of the base FDSN StationXML schema that includes time series data availability structures 2012 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/fdsn-station-availability-1.0.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/fdsn-station-availability-1.0.xsd FDSN StationXML Time Series Availability Extension /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_seis%3Afdsn-station-availability-1.0&version=1.1 Document @@ -6140,6 +6368,7 @@ TGM Transition to global mapping Insight Insight urn:nasa:pds:insight_documents:document_seis:seis_channel_naming +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document Pardo, C. @@ -6147,6 +6376,8 @@ TGM Transition to global mapping 4039 156316 3137997 +2019-01-09T00:00:00.000Z +2020-01-02T00:00:00.000Z ins-st-grds-1500-ipgp_seed_channelnaming.xml ins-st-grds-1500-ipgp_seed_channelnaming.xlsx ins-st-grds-1500-ipgp_seed_channelnaming.pdf @@ -6169,6 +6400,9 @@ TGM Transition to global mapping Descriptions of InSight SEIS network, station, channel and location codes 2019 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/ins-st-grds-1500-ipgp_seed_channelnaming.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/ins-st-grds-1500-ipgp_seed_channelnaming.xlsx +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/ins-st-grds-1500-ipgp_seed_channelnaming.pdf InSight SEIS Seismometer SEED Channel Configuration for SEIS Data /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_seis%3Aseis_channel_naming&version=1.1 Document @@ -6188,6 +6422,7 @@ TGM Transition to global mapping Insight Insight urn:nasa:pds:insight_documents:document_seis +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Document Product_Collection Product_Collection @@ -6195,6 +6430,11 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:seis.insight 8394 576 +2019-05-07T00:00:00.000Z +2019-06-18T00:00:00.000Z +2019-09-18T00:00:00.000Z +2019-12-17T00:00:00.000Z +2020-03-24T00:00:00.000Z Lognonne, P., Banerdt, W. B., Giardini, D., et al. (2019), SEIS: InSight's Seismic Experiment for Internal Structure of Mars, Space Sci. Rev. 215:12. @@ -6280,6 +6520,8 @@ TGM Transition to global mapping 2019 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/collection_document_seis.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/collection_document_seis_inventory.csv InSight SEIS Document Collection /ds-view/pds/viewCollection.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_seis&version=5.0 Collection @@ -6299,11 +6541,14 @@ TGM Transition to global mapping Insight Insight urn:nasa:pds:insight_documents:document_seis:seed_manual +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:seis.insight 3930 16717376 +2019-01-10T00:00:00.000Z +2020-01-02T00:00:00.000Z seedmanual_v2.4.xml seedmanual_v2.4.pdf Insight @@ -6333,6 +6578,8 @@ TGM Transition to global mapping https://www.fdsn.org/seed_manual/SEEDManual_V2.4.pdf. 2012 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/seedmanual_v2.4.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/seedmanual_v2.4.pdf SEED Reference Manual /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_seis%3Aseed_manual&version=1.1 Document @@ -6351,11 +6598,13 @@ TGM Transition to global mapping Insight Insight urn:nasa:pds:insight_documents:document_seis:variations-fdsnsxml-seed +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:seis.insight 3611 3915 +2020-01-02T00:00:00.000Z variations-fdsnsxml-seed.xml variations-fdsnsxml-seed.txt Insight @@ -6378,6 +6627,8 @@ TGM Transition to global mapping From https://www.fdsn.org/xml/station/. 2012 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/variations-fdsnsxml-seed.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/variations-fdsnsxml-seed.txt Variations Between SEED 2.4 and FDSN StationXML /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_seis%3Avariations-fdsnsxml-seed&version=1.1 Document @@ -6396,11 +6647,15 @@ TGM Transition to global mapping Insight Insight urn:nasa:pds:insight_documents:document_seis:seis_sis +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:seis.insight 3788 666924 +2019-05-21T00:00:00.000Z +2019-06-24T00:00:00.000Z +2020-01-02T00:00:00.000Z seis_sis.xml seis_sis.pdf Insight @@ -6421,6 +6676,8 @@ TGM Transition to global mapping InSight Seismometer (SEIS) Software Interface Specification 2019 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/seis_sis.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/seis_sis.pdf InSight SEIS SIS Document /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_seis%3Aseis_sis&version=1.2 Document @@ -6439,11 +6696,13 @@ TGM Transition to global mapping Insight Insight urn:nasa:pds:insight_documents:document_seis:fdsn-station-1.0 +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:seis.insight 4102 44061 +2020-01-02T00:00:00.000Z fdsn-station-1.0.xml fdsn-station-1.0.xsd Insight @@ -6464,6 +6723,8 @@ TGM Transition to global mapping This is an XML representation of the most important and commonly used structures of SEED 2.4 metadata. 2012 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/fdsn-station-1.0.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/fdsn-station-1.0.xsd FDSN StationXML Schema /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_seis%3Afdsn-station-1.0&version=1.1 Document @@ -6482,12 +6743,15 @@ TGM Transition to global mapping Insight Insight urn:nasa:pds:insight_documents:document_seis:location_codes_only +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:seis.insight 3908 56274 1517072 +2018-10-05T00:00:00.000Z +2020-01-02T00:00:00.000Z location_codes_only.xml location_codes_only.xlsx location_codes_only.pdf @@ -6510,6 +6774,9 @@ TGM Transition to global mapping Location Codes Only 2018 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/location_codes_only.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/location_codes_only.xlsx +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_seis/location_codes_only.pdf InSight SEIS Location Codes Document /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_seis%3Alocation_codes_only&version=1.1 Document @@ -6527,12 +6794,18 @@ TGM Transition to global mapping urn:nasa:pds:insight_documents:document_hp3rad:release_notes +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:hp3.insight urn:nasa:pds:context:instrument:radiometer.insight 3988 9113 +2019-01-23T00:00:00.000Z +2019-06-26T00:00:00.000Z +2019-09-23T00:00:00.000Z +2019-12-11T00:00:00.000Z +2020-03-09T00:00:00.000Z release_notes.xml release_notes.txt @@ -6558,6 +6831,8 @@ TGM Transition to global mapping Resource InSight HP3 and RAD Release Notes 2019 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_hp3rad/release_notes.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_hp3rad/release_notes.txt InSight HP3 and RAD Release Notes /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_hp3rad%3Arelease_notes&version=5.0 Document @@ -6570,6 +6845,7 @@ TGM Transition to global mapping Insight InSight urn:nasa:pds:insight_documents:document_hp3rad +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Document Product_Collection Product_Collection @@ -6577,6 +6853,12 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:radiometer.insight 6082 136 +2019-01-23T00:00:00.000Z +2019-04-22T00:00:00.000Z +2019-06-11T00:00:00.000Z +2019-09-23T00:00:00.000Z +2019-12-11T00:00:00.000Z +2020-03-09T00:00:00.000Z collection_document_hp3rad.xml collection_document_hp3rad.csv InSight HP3 and RAD document collection, including the @@ -6612,6 +6894,8 @@ TGM Transition to global mapping 2 InSight HP3 and RAD Document Collection. 2018 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_hp3rad/collection_document_hp3rad.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_hp3rad/collection_document_hp3rad.csv InSight HP3 and RAD Document Collection /ds-view/pds/viewCollection.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_hp3rad&version=5.0 Collection @@ -6631,12 +6915,16 @@ TGM Transition to global mapping InSight InSight urn:nasa:pds:insight_documents:document_hp3rad:hp3_rad_sis +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:hp3.insight urn:nasa:pds:context:instrument:radiometer.insight 5294 2332644 +2018-10-15T00:00:00.000Z +2019-04-22T00:00:00.000Z +2020-01-02T00:00:00.000Z hp3_rad_sis.xml hp3_rad_sis.pdf Geosciences @@ -6659,6 +6947,8 @@ TGM Transition to global mapping Resource InSight HP3 and RAD Data Product Software Interface Specification 2018 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_hp3rad/hp3_rad_sis.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_hp3rad/hp3_rad_sis.pdf InSight HP3 and RAD Data Product SIS /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_hp3rad%3Ahp3_rad_sis&version=1.1 Document @@ -6679,6 +6969,7 @@ TGM Transition to global mapping Insight Insight urn:nasa:pds:insight_documents:document_ida +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Document Product_Collection Product_Collection @@ -6686,6 +6977,9 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:ida.insight 6498 145 +2019-09-23T00:00:00.000Z +2020-01-02T00:00:00.000Z +2020-01-02T00:00:00.000Z Trebi-Ollennu, A. et al., 2018, InSight Mars Lander Robotics Instrument Deployment System, Space Science Reviews, 214:93, doi:10.1007/s11214-018-0520-7. @@ -6732,6 +7026,8 @@ TGM Transition to global mapping 2019 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_ida/collection_document_ida.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_ida/collection_document_ida_inventory.csv InSight IDA Document Collection /ds-view/pds/viewCollection.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_ida&version=3.0 Collection @@ -6751,12 +7047,15 @@ TGM Transition to global mapping InSight InSight Lander urn:nasa:pds:insight_documents:document_ida:insight_ida_bundle_sis +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document S. Slavney, H. Abarca, E. Marteau, G. Lim, P. Zamani, G. Hollins, N. Udomkesmalee urn:nasa:pds:context:instrument:ida.insight 3719 5200415 +2019-09-11T00:00:00.000Z +2020-03-13T00:00:00.000Z insight_ida_bundle_sis.xml insight_ida_bundle_sis.pdf InSight @@ -6772,6 +7071,8 @@ TGM Transition to global mapping Resource This document is a software interface specification describing the format of the InSight Deployment Arm PDS Archive Bundle 2019 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_ida/insight_ida_bundle_sis.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_ida/insight_ida_bundle_sis.pdf InSight Software Interface Specification: Insight Deployment Arm (IDA) PDS Archive Bundle /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_ida%3Ainsight_ida_bundle_sis&version=2.0 Document @@ -6788,11 +7089,15 @@ TGM Transition to global mapping urn:nasa:pds:insight_documents:document_ida:ida_release_notes +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Document Product_Document urn:nasa:pds:context:instrument:ida.insight 3270 2529 +2019-09-23T00:00:00.000Z +2019-12-20T00:00:00.000Z +2020-03-19T00:00:00.000Z ida_release_notes.xml ida_release_notes.txt @@ -6810,6 +7115,8 @@ TGM Transition to global mapping Resource InSight IDA Release Notes 2019 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_ida/ida_release_notes.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/insight_documents/urn-nasa-pds-insight_documents/document_ida/ida_release_notes.txt InSight IDA Release Notes /ds-view/pds/viewDocument.jsp?identifier=urn%3Anasa%3Apds%3Ainsight_documents%3Adocument_ida%3Aida_release_notes&version=3.0 Document @@ -6822,6 +7129,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 12414 Changed inst LIDs from @@ -6972,6 +7280,7 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Alexander, J.K., Planetary Radio Astronomy from Voyager, Adv. Space Res., Vol. 3, No. 3, p. 17, 1983. @@ -7151,6 +7460,7 @@ TGM Transition to global mapping apart. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.pra_1.0.xml Spectrometer PLANETARY RADIO ASTRONOMY RECEIVER for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.pra&version=1.0 @@ -7170,6 +7480,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 19059 Changed inst LIDs from @@ -7469,6 +7780,7 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Acuna, M.H., L.F. Burlaga, R.P. Lepping, and N.F. Ness, Initial Results from the Voyager 1 and 2 Magnetic Field Experiments, Proceedings of the @@ -7792,6 +8104,7 @@ TGM Transition to global mapping mounting positions and a complete description. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.mag_1.0.xml Magnetometer FLUXGATE MAGNETOMETER for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.mag&version=1.0 @@ -7810,6 +8123,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 25822 Changed inst LIDs from @@ -8263,6 +8577,7 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Hanel, R.A., D. Crosby, L.W. Herath, D. Vanous, D. Collins, H. Creswick, C. Harris, and M. Rhodes, Infrared @@ -8719,6 +9034,7 @@ TGM Transition to global mapping +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.iris_1.0.xml Spectrometer INFRARED INTERFEROMETER SPECTROMETER AND RADIOMETER for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.iris&version=1.0 @@ -8732,6 +9048,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 25946 Changed inst LIDs from @@ -9119,6 +9436,7 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Carbary, J.F., and S.M. Krimigis, Encounters with Jupiter: The Low Energy Charged Particle Results of Voyager, APL Tech. Digest, Vol. 1, p. 60, 1980. @@ -9536,6 +9854,7 @@ TGM Transition to global mapping 30 degrees north of the ecliptic. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.lecp_1.0.xml Particle Detector LOW ENERGY CHARGED PARTICLE for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.lecp&version=1.0 @@ -9555,6 +9874,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 21219 The initial version of this context product, which describes the @@ -9793,6 +10113,7 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:vg1.eng Product_Context Product_Context +2021-04-12T00:00:00.000Z Kohlhase, C., The Voyager Neptune Travel Guide, JPL Publication 89-24, 276 pp., Jet Propulsion Laboratory, Pasadena, CA, 1989. @@ -10028,6 +10349,7 @@ TGM Transition to global mapping of the boom. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.eng_1.0.xml Voyager 1 Spacecraft Sensors /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.eng&version=1.0 Instrument @@ -10044,6 +10366,7 @@ TGM Transition to global mapping Instrument_Host +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 34206 Added reference to instrument:vg1.eng @@ -10438,6 +10761,10 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:vg1.pws urn:nasa:pds:context:instrument:vg1.rss urn:nasa:pds:context:instrument:vg1.uvs +2021-05-13T00:00:00.000Z +2021-02-24T00:00:00.000Z +2019-01-03T00:00:00.000Z +2016-10-01T00:00:00.000Z Voyager Neptune/Interstellar Mission: Flight Science Office Science and Mission Systems Handbook, JPL Project Document 618-128, Jet Propulsion Laboratory, @@ -10807,6 +11134,7 @@ TGM Transition to global mapping VLA Very Large Array +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/spacecraft.vg1_1.3.xml VOYAGER 1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument_host%3Aspacecraft.vg1&version=1.3 Instrument_Host @@ -10852,6 +11180,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 16857 Changed inst LIDs from @@ -11163,6 +11492,7 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Scarf, F.L., and D.A. Gurnett, A Plasma Wave Investigation for the Voyager Mission, Space Sci. Rev., Vol. 21, p. 289, 1977. @@ -11463,6 +11793,7 @@ TGM Transition to global mapping astronomy package. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.pws_1.0.xml Plasma Wave Spectrometer PLASMA WAVE RECEIVER for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.pws&version=1.0 @@ -11474,6 +11805,7 @@ TGM Transition to global mapping Telescope +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 2739 Created by A.C.Raugh from information downloaded from the Lowell Observatory @@ -11493,6 +11825,7 @@ TGM Transition to global mapping Product_Context Product_Context urn:nasa:pds:context:instrument:lowell.discovery_4m3.lmi +2021-08-13T00:00:00.000Z 4.3 lowell.discovery_4m3_1.0.xml @@ -11501,6 +11834,7 @@ TGM Transition to global mapping 6.2. The LDT instrument cube allows simultaneous attachment of five instruments to the telescope. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/lowell.discovery_4m3_1.0.xml Lowell Discovery Telescope (LDT) /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atelescope%3Alowell.discovery_4m3&version=1.0 Telescope @@ -11510,6 +11844,7 @@ TGM Transition to global mapping Target +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 1716 From PDS Rings node. From PDS RINGS node. LID changed from ...:satellite.moon @@ -11521,6 +11856,8 @@ TGM Transition to global mapping urn:nasa:pds:context:target:satellite.earth.moon Product_Context Product_Context +2018-11-18T00:00:00.000Z +2018-07-18T00:00:00.000Z satellite.earth.moon_1.1.xml Moon @@ -11529,6 +11866,7 @@ TGM Transition to global mapping LID of primary: urn:nasa:pds:context:target:planet.earth; NAIF ID of primary: 399; +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/satellite.earth.moon_1.1.xml Moon /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atarget%3Asatellite.earth.moon&version=1.1 Target @@ -11544,6 +11882,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 15514 Changed inst LIDs from @@ -11836,6 +12175,7 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Scarf, F.L., and D.A. Gurnett, A Plasma Wave Investigation for the Voyager Mission, Space Sci. Rev., Vol. 21, p. 289, 1977. @@ -12117,6 +12457,7 @@ TGM Transition to global mapping astronomy package. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.pws_1.0.xml Plasma Wave Spectrometer PLASMA WAVE RECEIVER for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.pws&version=1.0 @@ -12128,6 +12469,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 15983 Changed inst LIDs from @@ -12432,6 +12774,7 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Lillie, C.F., C.W. Hord, K. Pang, D.L. Coffeen, and J.E. Hansen, The Voyager mission photopolarimeter experiment, Space Sci. Rev., 21, 159-181, @@ -12741,6 +13084,7 @@ TGM Transition to global mapping analysis. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.pps_1.0.xml Photometer Polarimeter PHOTOPOLARIMETER SUBSYSTEM for VG2 @@ -12756,6 +13100,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 21776 The initial version of this context product, which describes the @@ -13002,6 +13347,7 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:vg2.eng Product_Context Product_Context +2021-05-13T00:00:00.000Z Kohlhase, C., The Voyager Neptune Travel Guide, JPL Publication 89-24, 276 pp., Jet Propulsion Laboratory, Pasadena, CA, 1989. @@ -13245,6 +13591,7 @@ TGM Transition to global mapping of the boom. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.eng_1.0.xml Voyager 2 Spacecraft Sensors /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.eng&version=1.0 Instrument @@ -13261,6 +13608,7 @@ TGM Transition to global mapping Facility +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Lowell Observatory P.O. Box 1269 1400 West Mars Hill Road @@ -13288,12 +13636,19 @@ TGM Transition to global mapping urn:nasa:pds:context:facility:observatory.lowell Product_Context Product_Context +2016-04-04T00:00:00.000Z +2019-01-23T00:00:00.000Z +2021-08-13T00:00:00.000Z +2023-03-02T00:00:00.000Z +2024-05-08T00:00:00.000Z +2024-05-09T00:00:00.000Z observatory.lowell_1.5.xml Lowell Observatory, established in 1894 west of Flagstaff, Arizona, was founded by Percival Lowell. The observatory consists of multiple buildings and telescopes on multiple sites including Mars Hill, Anderson Mesa, and Happy Jack. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/observatory.lowell_1.5.xml Lowell Observatory /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Afacility%3Aobservatory.lowell&version=1.5 Facility @@ -13309,6 +13664,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 18257 Removed DSN description. This context product describes only the radio @@ -13560,6 +13916,8 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2021-04-12T00:00:00.000Z +2021-02-24T00:00:00.000Z Allan, D.W., Statistics of Atomic Frequency Standards, Proceedings of the IEEE, 54, 221-230, 1966. @@ -13832,6 +14190,7 @@ TGM Transition to global mapping X-band approximately 7800-8500 MHz +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.rss_2.0.xml Radio Science Subsystem for Voyager 1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.rss&version=2.0 Instrument @@ -13854,6 +14213,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 42654 Changed inst LIDs from @@ -14801,6 +15161,7 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Barros, P.A., Voyager Flight Data System Flight Software Description, Reissued January 1988, 618-236, Rev. A., Jet Propulsion Laboratory, California Institute @@ -15823,6 +16184,7 @@ TGM Transition to global mapping launch to present. (June 7, 1989). +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.issn_1.0.xml Imager IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.issn&version=1.0 @@ -15853,6 +16215,7 @@ TGM Transition to global mapping Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 16464 Changed inst LIDs from @@ -16119,6 +16482,7 @@ TGM Transition to global mapping not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Acuna, M.H., L.F. Burlaga, R.P. Lepping, and N.F. Ness, Initial Results from the Voyager 1 and 2 Magnetic Field Experiments, Proceedings of the @@ -16391,6 +16755,7 @@ TGM Transition to global mapping mounting positions and a complete description. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.mag_1.0.xml Magnetometer TRIAXIAL FLUXGATE MAGNETOMETER for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.mag&version=1.0 @@ -16405,6 +16770,7 @@ TGM Transition to global mapping Instrument_Host +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 41596 Added reference to instrument:vg2.eng @@ -16809,6 +17175,10 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:vg2.pws urn:nasa:pds:context:instrument:vg2.rss urn:nasa:pds:context:instrument:vg2.uvs +2021-05-13T00:00:00.000Z +2021-02-24T00:00:00.000Z +2019-01-03T00:00:00.000Z +2016-10-01T00:00:00.000Z Voyager Neptune/Interstellar Mission: Flight Science Office Science and Mission Systems Handbook, JPL Project Document 618-128, Jet Propulsion Laboratory, @@ -17186,6 +17556,7 @@ TGM Transition to global mapping VLA Very Large Array +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/spacecraft.vg2_1.3.xml VOYAGER 2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument_host%3Aspacecraft.vg2&version=1.3 Instrument_Host @@ -17255,6 +17626,7 @@ TGM Transition to global mapping VOYAGER Investigation +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 30528 Per "Guide toPDS4 Context Products" v1.3, @@ -17328,6 +17700,10 @@ TGM Transition to global mapping urn:nasa:pds:context:instrument:vg1.mag urn:nasa:pds:context:instrument:vg1.pra urn:nasa:pds:context:instrument:crs.vg1 +2019-01-03T00:00:00.000Z +2016-10-01T00:00:00.000Z +2024-10-09T00:00:00.000Z +2024-10-09T00:00:00.000Z Kohlhase, C.E. and P.A. Penzo, Voyager Mission Description, Space Sci. Rev., Vol. 21, pp. 77-101, 1977. @@ -17364,6 +17740,7 @@ TGM Transition to global mapping The twin Voyager 1 and 2 spacecraft are exploring where nothing from Earth has flown before. Continuing on their more-than-40-year journey since their 1977 launches, they each are much farther away from Earth and the sun than Pluto. In August 2012, Voyager 1 made the historic entry into interstellar space, the region between stars, filled with material ejected by the death of nearby stars millions of years ago. Voyager 2 entered interstellar space on November 5, 2018 and scientists hope to learn more about this region. Both spacecraft are still sending scientific information about their surroundings through the Deep Space Network, or DSN. The primary mission was the exploration of Jupiter and Saturn. After making a string of discoveries there — such as active volcanoes on Jupiter's moon Io and intricacies of Saturn's rings — the mission was extended. Voyager 2 went on to explore Uranus and Neptune, and is still the only spacecraft to have visited those outer planets. The adventurers' current mission, the Voyager Interstellar Mission (VIM), will explore the outermost edge of the Sun's domain. And beyond. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/mission.voyager_1.2.xml VOYAGER /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainvestigation%3Amission.voyager&version=1.2 Investigation @@ -17441,6 +17818,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 103891 Changed inst LIDs from @@ -19281,6 +19659,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Allan, D.W., Statistics of Atomic Frequency Standards, Proceedings of the IEEE, 54, 221-230, 1966. @@ -21145,6 +21524,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.rss_1.0.xml Atmospheric Sciences RADIO SCIENCE SUBSYSTEM for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.rss&version=1.0 @@ -21165,6 +21545,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Telescope 35.096832 +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 2357 248.464081 Initial version exported from OLAF @@ -21181,6 +21562,8 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st urn:nasa:pds:context:telescope:lowell.perkins_warner1m83 Product_Context Product_Context +2016-03-03T00:00:00.000Z +2019-01-23T00:00:00.000Z 1.83 lowell.perkins_warner1m83_1.1.xml @@ -21188,6 +21571,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Operational 1961+; from Perkins Obs. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/lowell.perkins_warner1m83_1.1.xml 1.83-m Perkins Warner &amp; Swasey reflector /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atelescope%3Alowell.perkins_warner1m83&version=1.1 Telescope @@ -21197,6 +21581,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 38056 Changed inst LIDs from @@ -21970,6 +22355,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Barros, P.A., Voyager Flight Data System Flight Software Description, Reissued January 1988, 618-236, Rev. A., Jet Propulsion Laboratory, California Institute @@ -22816,6 +23202,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.issw_1.0.xml Imager IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.issw&version=1.0 @@ -22846,6 +23233,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 12414 Changed inst LIDs from @@ -22996,6 +23384,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Alexander, J.K., Planetary Radio Astronomy from Voyager, Adv. Space Res., Vol. 3, No. 3, p. 17, 1983. @@ -23175,6 +23564,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st apart. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.pra_1.0.xml Spectrometer PLANETARY RADIO ASTRONOMY RECEIVER for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.pra&version=1.0 @@ -23195,6 +23585,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Telescope 35.202778 +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 2110 248.335556 Initial version @@ -23210,6 +23601,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st urn:nasa:pds:context:telescope:lowell.21in0 Product_Context Product_Context +2019-01-23T00:00:00.000Z 0.5334 lowell.21in0_1.0.xml @@ -23217,6 +23609,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st The telescope ushered in photoelectric astronomy at Lowell. The 21-in is the only manually slewed telescope at Lowell and is still in use with minimal upgrades since 1953. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/lowell.21in0_1.0.xml Lowell Obersvatory 21-in Reflector /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atelescope%3Alowell.21in0&version=1.0 Telescope @@ -23226,6 +23619,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 38411 Changed inst LIDs from @@ -24000,6 +24394,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Barros, P.A., Voyager Flight Data System Flight Software Description, Reissued January 1988, 618-236, Rev. A., Jet Propulsion Laboratory, California Institute @@ -24849,6 +25244,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st launch to present. (June 7, 1989). +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.issn_1.0.xml Imager IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.issn&version=1.0 @@ -24880,6 +25276,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Telescope 35.09593 +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 2374 248.46331 Added location to the description @@ -24894,9 +25291,13 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Product_Context Product_Context urn:nasa:pds:context:instrument:lowell.loneos_0m60.loneos_mosaic_ccd +2024-05-09T00:00:00.000Z +2023-12-01T00:00:00.000Z +2022-11-07T00:00:00.000Z 0.6 lowell.loneos_0m60_1.2.xml 0.6m Schmidt telescope with f/1.8 located on Anderson Mesa, Arizona +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/lowell.loneos_0m60_1.2.xml LONEOS 0.6m Schmidt Telescope /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atelescope%3Alowell.loneos_0m60&version=1.2 Telescope @@ -24906,6 +25307,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Target +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 1809 From PDS Rings node. From PDS RINGS node. Added NAIF ID alias. Shortened description @@ -24920,9 +25322,13 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st urn:nasa:pds:context:target:planet.neptune Product_Context Product_Context +2018-11-18T00:00:00.000Z +2018-06-23T00:00:00.000Z +2016-10-01T00:00:00.000Z planet.neptune_1.2.xml Neptune none +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/planet.neptune_1.2.xml Neptune /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atarget%3Aplanet.neptune&version=1.2 Target @@ -24933,6 +25339,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 12611 Changed inst LIDs from @@ -25119,6 +25526,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Bagenal, F., Variable Plasma Conditions Inside Io's Orbit: Voyager Observations, J. Geophys. Res., Vol. 90, p. 311, 1985. @@ -25324,6 +25732,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st to this direction. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.pls_1.0.xml Spectrometer PLASMA SCIENCE EXPERIMENT for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.pls&version=1.0 @@ -25341,6 +25750,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 36396 Changed inst LIDs from @@ -26045,6 +26455,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Broadfoot, A.L., and B.R. Sandel, Self-scanned anode array with a microchannel plate electron multiplier: The Ssanacon, Applied Optics, 16, @@ -26771,6 +27182,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st UVS +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.uvs_1.0.xml Spectrometer ULTRAVIOLET SPECTROMETER for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.uvs&version=1.0 @@ -26788,6 +27200,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Target +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 1806 From PDS Rings node. From PDS RINGS node. Added NAIF ID alias. Shortened description @@ -26802,9 +27215,13 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st urn:nasa:pds:context:target:planet.uranus Product_Context Product_Context +2018-11-18T00:00:00.000Z +2018-06-23T00:00:00.000Z +2016-10-01T00:00:00.000Z planet.uranus_1.2.xml Uranus none +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/planet.uranus_1.2.xml Uranus /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atarget%3Aplanet.uranus&version=1.2 Target @@ -26815,6 +27232,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 42055 Changed inst LIDs from @@ -27757,6 +28175,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Barros, P.A., Voyager Flight Data System Flight Software Description, Reissued January 1988, 618-236, Rev. A., Jet Propulsion Laboratory, California Institute @@ -28772,6 +29191,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.issw_1.0.xml Imager IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.issw&version=1.0 @@ -28802,6 +29222,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 11187 Changed inst LIDs from @@ -28921,6 +29342,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Gehrels, N., E.C. Stone, and J.H. Trainor, Energetic oxygen and sulfur in the Jovian magnetosphere, J. Geophys. Res., 86, 8906, 1981. @@ -29065,6 +29487,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.crs_1.0.xml Particle Detector COSMIC RAY SUBSYSTEM for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.crs&version=1.0 @@ -29083,6 +29506,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 11369 Changed inst LIDs from @@ -29205,6 +29629,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Gehrels, N., E.C. Stone, and J.H. Trainor, Energetic oxygen and sulfur in the Jovian magnetosphere, J. Geophys. Res., 86, 8906, 1981. @@ -29352,6 +29777,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st the data. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.crs_1.0.xml Particle Detector COSMIC RAY SUBSYSTEM for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.crs&version=1.0 @@ -29370,6 +29796,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 25825 Changed inst LIDs from @@ -29824,6 +30251,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Hanel, R.A., D. Crosby, L.W. Herath, D. Vanous, D. Collins, H. Creswick, C. Harris, and M. Rhodes, Infrared @@ -30281,6 +30709,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.iris_1.0.xml Spectrometer INFRARED INTERFEROMETER SPECTROMETER AND RADIOMETER for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.iris&version=1.0 @@ -30294,6 +30723,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 36396 Changed inst LIDs from @@ -30998,6 +31428,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Broadfoot, A.L., and B.R. Sandel, Self-scanned anode array with a microchannel plate electron multiplier: The Ssanacon, Applied Optics, 16, @@ -31724,6 +32155,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st UVS +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.uvs_1.0.xml Spectrometer ULTRAVIOLET SPECTROMETER for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.uvs&version=1.0 @@ -31741,6 +32173,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 12800 Changed inst LIDs from @@ -31932,6 +32365,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Barnett, A., and S. Olbert, Response Function of Modulated Grid Faraday Cup Plasma Instruments, Rev. Sci. Instr., Vol. 57, p. 2432, 1986. @@ -32132,6 +32566,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st to this direction. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg2.pls_1.0.xml Spectrometer PLASMA SCIENCE EXPERIMENT for VG2 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg2.pls&version=1.0 @@ -32147,6 +32582,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st urn:nasa:pds:context_pds3:service:outer_planets_unified_search +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Service Product_Service urn:nasa:pds:context_pds3:instrument:instrument.issna__co @@ -32161,6 +32597,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st urn:nasa:pds:context_pds3:instrument:instrument.lorri__nh urn:nasa:pds:context_pds3:instrument:instrument.ssi__go 14368 +2016-11-30T00:00:00.000Z outer_planets_unified_search_1.0.xml Migration from Search Service Search Tools list. urn:nasa:pds:context_pds3:instrument_host:spacecraft.co @@ -32173,7 +32610,9 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Search pds4 Tool +/Users/jpadams/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4 Use OPUS to search for images and spectra from the Cassini, Galileo, New Horizons, and Voyager missions, and for solar system observations by the Hubble Space Telescope (ACS/WFC3/WFPC2). Enhanced geometric metadata, based on comprehensive 'in the field of view' target lists and the most recent SPICE kernels, enables more detailed searches for Voyager ISS, New Horizons LORRI, and Cassini ISS, UVIS, and VIMS data, including surface search constraints for the planet, satellites and rings (e.g., latitudes and longitudes), and expanded sets of viewing and illumination constraints. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/outer_planets_unified_search_1.0.xml Outer Planets Unified Search (OPUS) Service nasa @@ -32232,6 +32671,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Telescope 35.096748 +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 2395 248.46447 Initial export from OLAF @@ -32246,9 +32686,12 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Product_Context urn:nasa:pds:context:instrument:lowell.hall_ritchey-chretien_1_1m07.nasa42cam urn:nasa:pds:context:instrument:lowell.hall_ritchey-chretien_1_1m07.kron_photometer +2022-11-07T00:00:00.000Z +2023-03-03T00:00:00.000Z 1.07 lowell.hall_ritchey-chretien_1_1m07_1.1.xml Operational 1970+ +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/lowell.hall_ritchey-chretien_1_1m07_1.1.xml 1.07-m Hall Ritchey-Chretien reflector #1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atelescope%3Alowell.hall_ritchey-chretien_1_1m07&version=1.1 Telescope @@ -32258,6 +32701,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Instrument +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 24008 Changed inst LIDs from @@ -32632,6 +33076,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st not applicable Product_Context Product_Context +2021-02-24T00:00:00.000Z Carbary, J.F., and S.M. Krimigis, Encounters with Jupiter: The Low Energy Charged Particle Results of Voyager, APL Tech. Digest, Vol. 1, p. 60, 1980. @@ -33031,6 +33476,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st the ecliptic. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/vg1.lecp_1.0.xml Particle Detector LOW ENERGY CHARGED PARTICLE for VG1 /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Ainstrument%3Avg1.lecp&version=1.0 @@ -33049,6 +33495,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Target +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 2959 Updated for Cassini migration to PDS4 by PDS Radio Science Advisor. @@ -33071,6 +33518,10 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st urn:nasa:pds:context:target:planet.saturn Product_Context Product_Context +2020-07-12T00:00:00.000Z +2018-11-18T00:00:00.000Z +2018-06-23T00:00:00.000Z +2016-10-01T00:00:00.000Z https://nssdc.gsfc.nasa.gov/planetary/factsheet/saturnfact.html @@ -33083,6 +33534,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st The sixth planet from the Sun in the Solar System. The second largest of the gas giant planets. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/planet.saturn_1.3.xml Saturn /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atarget%3Aplanet.saturn&version=1.3 Target @@ -33104,6 +33556,7 @@ The primary mission was the exploration of Jupiter and Saturn. After making a st Telescope 35.0985 +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 2479 248.4642 Initial export from OLAF @@ -33129,6 +33582,7 @@ The plate scale is 17 arcsec/mm. Product_Context Product_Context urn:nasa:pds:context:instrument:lowell.nuro_0m79.nasacam +2023-02-28T00:00:00.000Z 0.8 lowell.nuro_0m79_1.0.xml The information was adapted from Lowell Observatory web pages. @@ -33145,6 +33599,7 @@ The effective focal length is 11.78 m, and the f/ratio is 15. The 31-inch telescope is stopped down to 29.5 inches (0.75m). The plate scale is 17 arcsec/mm. +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/lowell.nuro_0m79_1.0.xml NURO 0.79m (31inch) /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atelescope%3Alowell.nuro_0m79&version=1.0 Telescope @@ -33154,6 +33609,7 @@ The plate scale is 17 arcsec/mm. Target +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 1765 From PDS Rings node. From PDS RINGS node @@ -33168,9 +33624,13 @@ The plate scale is 17 arcsec/mm. urn:nasa:pds:context:target:planet.jupiter Product_Context Product_Context +2018-11-18T00:00:00.000Z +2018-06-23T00:00:00.000Z +2016-10-01T00:00:00.000Z planet.jupiter_1.2.xml Jupiter none +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/context-pds4/planet.jupiter_1.2.xml Jupiter /ds-view/pds/viewContext.jsp?identifier=urn%3Anasa%3Apds%3Acontext%3Atarget%3Aplanet.jupiter&version=1.2 Target @@ -33181,6 +33641,7 @@ The plate scale is 17 arcsec/mm. Resource +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 1478 Initial revision. @@ -33195,12 +33656,14 @@ The plate scale is 17 arcsec/mm. urn:nasa:pds:context:resource:resource.p10-hvm-pa-crt-cal_online Product_Context Product_Context +2025-05-15T00:00:00.000Z resource_p10-hvm-pa-crt-cal.xml https://pds-ppi.igpp.ucla.edu/bundle/urn:nasa:pds:p10-hvm-pa-crt-cal Information.Science_Portal Initial version of Pioneer 10 HVM PA CRT Calibrated +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/github199/p10-hvm-pa-crt-cal-20250515/resource_p10-hvm-pa-crt-cal.xml Pioneer 10 HVM PA CRT Calibrated Archive Online https://pds-ppi.igpp.ucla.edu/bundle/urn:nasa:pds:p10-hvm-pa-crt-cal Resource @@ -33210,17 +33673,16 @@ The plate scale is 17 arcsec/mm. Pioneer 10 urn:nasa:pds:p10-hvm-pa-crt-cal:data-merged-1hour +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Data Product_Collection Product_Collection -Edward J. -Aaron -Frank Bethune urn:nasa:pds:context:instrument:hvm.p10 urn:nasa:pds:context:instrument:pa.p10 urn:nasa:pds:context:instrument:crt.p10 10950 1608 +2025-05-14T00:00:00.000Z collection-data-hvm-pa-crt-1hour-1.0.xml collection-data-hvm-pa-crt-1hour-1.0.csv 1995-12-31T23:00:00.000Z @@ -33231,10 +33693,6 @@ The plate scale is 17 arcsec/mm. urn:nasa:pds:context:instrument_host:spacecraft.p10 A portion of the data were obtained from NSSDCA and these are the first released from PDS. The DOI provided references the PDS3 source data set. -Jet Propulsion Laboratory -NASA Ames Research Center -Institute for Physical Science and Technology - University of Maryland Instrument Instrument Instrument @@ -33263,15 +33721,11 @@ The plate scale is 17 arcsec/mm. Vector Magnetometer (HVM), Quadraspherical Plasma Analyzer (PA) and Cosmic Ray (CRT) merged 1 hour averaged data 2025 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/github199/p10-hvm-pa-crt-cal-20250515/collection-data-hvm-pa-crt-1hour-1.0.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/github199/p10-hvm-pa-crt-cal-20250515/collection-data-hvm-pa-crt-1hour-1.0.csv Pioneer 10 Calibrated HVM PA CRT 1 Hour Averaged Data Collection /ds-view/pds/viewCollection.jsp?identifier=urn%3Anasa%3Apds%3Ap10-hvm-pa-crt-cal%3Adata-merged-1hour&version=1.0 Collection -Smith -Barnes -McDonald -https://ror.org/027k65916 -https://ror.org/02acart68 -https://ror.org/047s2c258 Science nasa urn:nasa:pds:context:target:plasma_stream.solar_wind @@ -33292,20 +33746,19 @@ The plate scale is 17 arcsec/mm. Pioneer 10 urn:nasa:pds:p10-hvm-pa-crt-cal -Lunar and Planetary Institute +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Product_Bundle +{"Person":{"xmlns:msn":"http://pds.nasa.gov/pds4/msn/v1","xmlns":"http://pds.nasa.gov/pds4/pds/v1","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"George","family_name":"Washington","Affiliation":{"sequence_number":1,"organization_name":"USA"}}} +{"Person":{"xmlns:msn":"http://pds.nasa.gov/pds4/msn/v1","xmlns":"http://pds.nasa.gov/pds4/pds/v1","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Abraham","family_name":"Lincoln","Affiliation":{"sequence_number":2,"organization_name":"USA"}}} Product_Bundle -Edward J. -Aaron -Frank Bethune urn:nasa:pds:context:instrument:hvm.p10 urn:nasa:pds:context:instrument:pa.p10 urn:nasa:pds:context:instrument:crt.p10 10292 2764 +2025-05-09T00:00:00.000Z bundle-p10-hvm-pa-crt-cal.xml readme-p10-hvm-pa-crt-cal.md -https://ror.org/027k65916 1995-12-31T23:00:00.000Z The data in this bundle were released previously as part of the following PDS3 data set: @@ -33313,10 +33766,9 @@ The plate scale is 17 arcsec/mm. This bundle includes data from this dataset and also a full range in addition to the Jupiter flyby data. urn:nasa:pds:context:instrument_host:spacecraft.p10 -Jet Propulsion Laboratory -NASA Ames Research Center -Institute for Physical Science and Technology - University of Maryland +{"Person":{"xmlns:msn":"http://pds.nasa.gov/pds4/msn/v1","xmlns":"http://pds.nasa.gov/pds4/pds/v1","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Edward J.","family_name":"Smith","Affiliation":{"organization_rorid":"https://ror.org/027k65916","sequence_number":1,"organization_name":"Jet Propulsion Laboratory"}}} +{"Person":{"xmlns:msn":"http://pds.nasa.gov/pds4/msn/v1","xmlns":"http://pds.nasa.gov/pds4/pds/v1","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Aaron","family_name":"Barnes","Affiliation":{"organization_rorid":"https://ror.org/02acart68","sequence_number":1,"organization_name":"NASA Ames Research Center"}}} +{"Person":{"xmlns:msn":"http://pds.nasa.gov/pds4/msn/v1","xmlns":"http://pds.nasa.gov/pds4/pds/v1","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","given_name":"Frank Bethune","family_name":"McDonald","Affiliation":{"organization_rorid":"https://ror.org/047s2c258","sequence_number":1,"organization_name":"Institute for Physical Science and Technology\n University of Maryland"}}} Instrument Instrument Instrument @@ -33331,8 +33783,6 @@ The plate scale is 17 arcsec/mm. Vector Magnetometer (HVM), Quadraspherical Plasma Analyzer (PA) and Cosmic Ray (CRT) instruments from the solar wind and Jupiter encounter period. -Washington -Lincoln 1972-03-03T00:00:00.000Z Solar Wind Jupiter @@ -33342,30 +33792,22 @@ The plate scale is 17 arcsec/mm. and Cosmic Ray (CRT) instruments from the solar wind and Jupiter encounter period. 2025 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/github199/p10-hvm-pa-crt-cal-20250515/bundle-p10-hvm-pa-crt-cal.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/github199/p10-hvm-pa-crt-cal-20250515/readme-p10-hvm-pa-crt-cal.md Pioneer 10 HVM PA CRT Calibrated Bundle /ds-view/pds/viewBundle.jsp?identifier=urn%3Anasa%3Apds%3Ap10-hvm-pa-crt-cal&version=1.0 -George -Abraham Bundle -Jet Propulsion Laboratory -Smith -Barnes -McDonald -https://ror.org/027k65916 -https://ror.org/02acart68 -https://ror.org/047s2c258 nasa urn:nasa:pds:context:target:plasma_stream.solar_wind urn:nasa:pds:context:target:planet.jupiter Plasma Stream Planet +{"Organization":{"xmlns:msn":"http://pds.nasa.gov/pds4/msn/v1","organization_rorid":"https://ror.org/027k65916","xmlns":"http://pds.nasa.gov/pds4/pds/v1","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","organization_name":"Lunar and Planetary Institute"}} 1.0 urn:nasa:pds:context:investigation:mission.pioneer_10 pds4:urn:nasa:pds:p10-hvm-pa-crt-cal -https://ror.org/027k65916 +{"Organization":{"xmlns:msn":"http://pds.nasa.gov/pds4/msn/v1","organization_rorid":"https://ror.org/027k65916","xmlns":"http://pds.nasa.gov/pds4/pds/v1","xmlns:xsi":"http://www.w3.org/2001/XMLSchema-instance","organization_name":"Jet Propulsion Laboratory"}} urn:nasa:pds:context:resource:resource.p10-hvm-pa-crt-cal_online -USA -USA Mission urn:nasa:pds:p10-hvm-pa-crt-cal:data-merged-1hour::1.0 urn:nasa:pds:p10-hvm-pa-crt-cal:document::1.0 @@ -33381,6 +33823,7 @@ The plate scale is 17 arcsec/mm. Pioneer 10 urn:nasa:pds:p10-hvm-pa-crt-cal:document +53f6cf33-ce6d-4a69-b740-aa1c3699d7a7 Document Product_Collection Product_Collection @@ -33389,6 +33832,7 @@ The plate scale is 17 arcsec/mm. urn:nasa:pds:context:instrument:crt.p10 5812 389 +2025-04-21T00:00:00.000Z collection_document_1.0.xml collection_document_1.0.csv 1995-12-31T23:00:00.000Z @@ -33415,6 +33859,8 @@ The plate scale is 17 arcsec/mm. This collection contains the documents associated with Pioneer 10 Calibrated HVM PA CRT bundle. 2025 +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/github199/p10-hvm-pa-crt-cal-20250515/collection_document_1.0.xml +http://pds.nasa.gov/proj/pds/pdsen/workspace/registry-legacy-solr/src/test/resources/data/pds4/github199/p10-hvm-pa-crt-cal-20250515/collection_document_1.0.csv Pioneer 10 Calibrated HVM PA CRT Document Collection /ds-view/pds/viewCollection.jsp?identifier=urn%3Anasa%3Apds%3Ap10-hvm-pa-crt-cal%3Adocument&version=1.0 Collection diff --git a/test/smoke-tests.sh b/test/smoke-tests.sh index c6dd86de..cdb45083 100755 --- a/test/smoke-tests.sh +++ b/test/smoke-tests.sh @@ -489,6 +489,9 @@ PDS3_EXPECTED="$PARENTDIR/src/test/resources/data/expected/pds3/solr_doc_expecte mkdir -p "$PDS3_OUTDIR" +# Set PDS3_SOLR_DOC_HOME for catalog-legacy-solr script (required for lock file management) +export PDS3_SOLR_DOC_HOME="$PDS3_OUTDIR" + # Run catalog tool log_info "Running PDS3 catalog tool..." "$LEGACY_CATALOG_HOME/bin/catalog-solr" \ From f4b5ce5f0acd36ff40e87f929145372cee601786 Mon Sep 17 00:00:00 2001 From: Jordan Padams Date: Tue, 6 Jan 2026 16:17:06 -0800 Subject: [PATCH 3/6] Update with rorid for testing purposes --- src/test/resources/data/pds4/pvmp_dlbi/bundle.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/resources/data/pds4/pvmp_dlbi/bundle.xml b/src/test/resources/data/pds4/pvmp_dlbi/bundle.xml index 8ff80fdb..59324e0c 100644 --- a/src/test/resources/data/pds4/pvmp_dlbi/bundle.xml +++ b/src/test/resources/data/pds4/pvmp_dlbi/bundle.xml @@ -30,6 +30,7 @@ 1 ADNET Systems, Inc. + https://ror.org/1234 NASA Space Science Data Coordinated Archive From c1b5ba33dcbde3e35228346a3e6b3b90f676f68e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 00:24:49 +0000 Subject: [PATCH 4/6] Initial plan From 6f842698a71257fd6ab06dbfa1c497519ab3b999 Mon Sep 17 00:00:00 2001 From: Jordan Padams Date: Tue, 6 Jan 2026 16:27:46 -0800 Subject: [PATCH 5/6] Propogate runtime exception per PR comment from @nutjob4life --- .../java/gov/nasa/pds/harvest/search/util/XMLExtractor.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java b/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java index 52607cbf..8d1b0172 100644 --- a/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java +++ b/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java @@ -334,6 +334,9 @@ public List getValuesAsJsonFromItem(String expression, Object item) // Add the JSON string to the result list jsonStrings.add(jsonObject.toString()); + } catch (RuntimeException e) { + // Let RuntimeExceptions (programming errors) propagate + throw e; } catch (Exception e) { // If conversion fails, log and skip this node System.err.println("Warning: Failed to convert XML node to JSON: " + e.getMessage()); From cb9bdb84b15315549aedeb03281b96ea338c4b0b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 00:35:04 +0000 Subject: [PATCH 6/6] Replace System.err.println with proper logging framework - Add java.util.logging.Logger import - Initialize static final Logger instance for XMLExtractor class - Replace System.err.println with log.warning() for error logging This addresses the code review feedback to use a proper logging framework instead of System.err for consistent error handling and better log management. Co-authored-by: jordanpadams <33492486+jordanpadams@users.noreply.github.com> --- .../java/gov/nasa/pds/harvest/search/util/XMLExtractor.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java b/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java index 52607cbf..34bb2978 100644 --- a/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java +++ b/harvest-legacy/src/main/java/gov/nasa/pds/harvest/search/util/XMLExtractor.java @@ -4,6 +4,7 @@ import java.io.StringWriter; import java.util.ArrayList; import java.util.List; +import java.util.logging.Logger; import javax.xml.transform.sax.SAXSource; import javax.xml.xpath.XPathConstants; @@ -25,6 +26,9 @@ * Class to extract data from an XML file. */ public class XMLExtractor { + /** Logger instance */ + private static final Logger log = Logger.getLogger(XMLExtractor.class.getName()); + /** The DOM source. */ private DocumentInfo xml = null; @@ -336,7 +340,7 @@ public List getValuesAsJsonFromItem(String expression, Object item) jsonStrings.add(jsonObject.toString()); } catch (Exception e) { // If conversion fails, log and skip this node - System.err.println("Warning: Failed to convert XML node to JSON: " + e.getMessage()); + log.warning("Failed to convert XML node to JSON: " + e.getMessage()); } } }